:root {
    --bg-dark: #070707;
    --bg-surface: #121212;
    --bg-surface-light: #1c1c1c;
    --text-main: #e0e0e0;
    --text-muted: #999999;
    
    /* Golden Palette */
    --gold-light: #F9E596;
    --gold-main: #D4AF37;
    --gold-dark: #997A15;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography & Gold Gradient Effect */
.gold-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--gold-main);
    display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.mt-4 { margin-top: var(--spacing-md); }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold-main);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--gold-main);
    transition: width 0.3s ease;
}

.section:hover .section-tag::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: var(--gold-main);
    border: 1px solid var(--gold-main);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover {
    color: #000;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-main);
    border-color: rgba(255,255,255,0.2);
}

.btn-outline-light:hover {
    border-color: var(--gold-main);
    color: var(--gold-main);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(15px);
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(7, 7, 7, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: var(--transition);
}

.header.scrolled .header-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.logo {
    height: 70px;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo {
    height: 50px;
}

/* Hero Section (With Background Image) */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    background-image: url('Hero Section.jpeg');
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed; /* Parallax effect */
}

/* Dark Overlay for Hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7,7,7,0.7) 0%, rgba(7,7,7,0.4) 50%, rgba(7,7,7,1) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #ddd;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Split Layouts (Image + Text) */
.split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Gives slightly more space to text, keeps image huge */
    gap: var(--spacing-md);
    align-items: center;
}

.split-layout.reverse .image-wrapper {
    order: 2;
}

.split-layout.reverse .text-content {
    order: 1;
}

.image-wrapper {
    position: relative;
    padding: 20px; /* Space for the border */
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 2px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    filter: contrast(1.1) brightness(0.9);
}

/* Golden frame effect */
.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    z-index: 1;
    transform: translate(40px, 40px);
    transition: transform 0.5s ease;
}

.split-layout.reverse .image-wrapper::before {
    transform: translate(0, 40px);
    left: 40px;
}

.image-wrapper:hover::before {
    transform: translate(20px, 20px);
    border-color: var(--gold-main);
}
.split-layout.reverse .image-wrapper:hover::before {
    transform: translate(20px, 20px);
}

.text-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: var(--spacing-md);
}

/* Subtle glowing accent */
.glow-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--bg-surface);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.pillar-card {
    background-color: var(--bg-surface-light);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255,255,255,0.03);
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.3);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
}

.pillar-card:hover .pillar-number {
    -webkit-text-stroke: 1px var(--gold-main);
    color: rgba(212, 175, 55, 0.1);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gold-main);
}

/* Method Section */
.method-section {
    background: radial-gradient(circle at center, #111 0%, var(--bg-dark) 100%);
}

.method-section h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}
.method-section .lead {
    font-size: 1.4rem;
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--gold-main);
    margin-bottom: var(--spacing-md);
}

/* Footer */
.footer {
    background-color: #000;
    color: var(--text-main);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    border-top: 1px solid var(--gold-dark);
}

.footer-cta {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-cta h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
}

.footer-logo {
    height: 90px;
    opacity: 0.8;
}

.footer-info p {
    color: #888;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.footer-info strong {
    color: var(--gold-main);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-social a {
    display: inline-block;
    color: #888;
    transition: var(--transition);
    margin: 0 10px;
}

.footer-social a:hover {
    color: var(--gold-main);
    transform: translateY(-3px);
}

.footer-copyright {
    margin-top: var(--spacing-lg);
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating WhatsApp (Styled deeper) */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Treatment Catalog Styles */
.method-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.method-step {
    background: var(--bg-surface-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    padding: var(--spacing-lg);
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-main);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    opacity: 0.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    background: rgba(0,0,0,0.3);
    padding: var(--spacing-md);
    border-radius: 4px;
}

.benefits-grid ul, .treatment-info ul {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.benefits-grid ul li, .treatment-info ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #bbb;
    font-size: 0.95rem;
}

.text-content p, .m-content p, .method-step p {
    text-align: justify;
}

.benefits-grid ul li::before, .treatment-info ul li::before {
    content: '•';
    color: var(--gold-main);
    position: absolute;
    left: 0;
    top: 0;
}

.two-columns {
    column-count: 2;
    column-gap: 20px;
}

/* Tabs */
.tabs-header {
    display: flex;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    color: var(--gold-main);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-main);
    transition: var(--transition);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Treatment Cards */
.treatment-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.03);
    padding: var(--spacing-md);
    border-radius: 4px;
}

.treatment-card.reverse .treatment-images {
    order: 2;
}

.treatment-images {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.t-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dual-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.treatment-goals {
    background: rgba(212, 175, 55, 0.05);
    padding: var(--spacing-sm) var(--spacing-md);
    border-left: 3px solid var(--gold-main);
}

/* Massages Grid */
.massages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.massage-block {
    background: var(--bg-surface-light);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
}

.massage-block:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.m-img {
    width: 100%;
    height: auto;
}

.m-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Responsive Design */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .split-layout.reverse .image-wrapper {
        order: 1;
    }
    .split-layout.reverse .text-content {
        order: 2;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .image-wrapper::before {
        transform: translate(20px, 20px);
    }
    .split-layout.reverse .image-wrapper::before {
        transform: translate(20px, 20px);
        left: 0;
    }

    .treatment-card, .treatment-card.reverse .treatment-images {
        grid-template-columns: 1fr;
    }
    .treatment-card.reverse .treatment-images {
        order: 1;
    }
    .treatment-images {
        min-height: auto;
    }
    .massages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .hero {
        background-attachment: scroll; /* Disable parallax on mobile for performance */
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }

    .two-columns, .benefits-grid {
        column-count: 1;
        grid-template-columns: 1fr;
    }



    .text-content p, .m-content p, .method-step p {
        text-align: left;
    }

    .header-container .btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem;
        letter-spacing: 1px !important;
    }


}
