:root {
            --primary: #e8748a;
            --primary-dark: #d4607a;
            --primary-light: #f5c6d0;
            --primary-bg: #fdf0f2;
            --cream: #fef9f7;
            --white: #ffffff;
            --dark: #2d2d2d;
            --gray: #6b6b6b;
            --gray-light: #a0a0a0;
            --border: #f0e0e4;
            --shadow: rgba(232, 116, 138, 0.1);
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: var(--font-heading);
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .section-title span {
            color: var(--primary);
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--gray);
            max-width: 600px;
            line-height: 1.7;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: var(--white);
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--shadow);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--dark);
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            border: 1.5px solid var(--dark);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: var(--dark);
            color: var(--white);
        }

        .btn-small {
            padding: 10px 22px;
            font-size: 0.85rem;
        }

        /* Scroll Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 20px var(--shadow);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
        }

        .nav-logo-text {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-size: 0.9rem;
            font-weight: 400;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
        }

        .nav-book-btn {
            background: var(--primary);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .nav-book-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .nav-hamburger span {
            width: 24px;
            height: 2px;
            background: var(--dark);
            transition: all 0.3s ease;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, var(--cream) 0%, var(--primary-bg) 50%, var(--cream) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 116, 138, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 24px;
            box-shadow: 0 2px 15px var(--shadow);
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-title em {
            font-style: italic;
            color: var(--primary);
        }

        .hero-desc {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
        }

        .hero-stat-label {
            font-size: 0.8rem;
            color: var(--gray-light);
            margin-top: 2px;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero-image-main {
            width: 100%;
            max-width: 480px;
            border-radius: 200px 200px 100px 100px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .hero-image-badge {
            position: absolute;
            bottom: 40px;
            left: 20px;
            background: var(--white);
            padding: 16px 20px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-image-badge-icon {
            width: 44px;
            height: 44px;
            background: var(--primary-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .hero-image-badge-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark);
        }

        .hero-image-badge-sub {
            font-size: 0.75rem;
            color: var(--gray-light);
        }

        .hero-floating-card {
            position: absolute;
            top: 60px;
            right: 10px;
            background: var(--white);
            padding: 14px 18px;
            border-radius: 14px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-floating-card-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
        }

        .hero-floating-card-text {
            font-size: 0.8rem;
            font-weight: 600;
        }

        .hero-floating-card-sub {
            font-size: 0.7rem;
            color: var(--gray-light);
        }

        /* ===== ABOUT ===== */
        .about {
            padding: 100px 0;
            background: var(--white);
        }

        .about-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            width: 100%;
            border-radius: 24px;
            object-fit: cover;
            max-height: 500px;
        }

        .about-image-small {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 160px;
            height: 160px;
            border-radius: 20px;
            object-fit: cover;
            border: 4px solid var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 32px;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .about-feature-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: var(--primary-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .about-feature-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .about-feature-desc {
            font-size: 0.78rem;
            color: var(--gray-light);
            line-height: 1.5;
        }

        .about-buttons {
            display: flex;
            gap: 16px;
            margin-top: 36px;
        }

        /* ===== TREATMENTS ===== */
        .treatments {
            padding: 100px 0;
            background: var(--cream);
            text-align: center;
        }

        .treatments-header {
            margin-bottom: 60px;
        }

        .treatments-header .section-subtitle {
            margin: 0 auto;
        }

        .treatments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .treatment-card {
            background: var(--white);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: left;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .treatment-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px var(--shadow);
            border-color: var(--primary-light);
        }

        .treatment-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-bg);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .treatment-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .treatment-desc {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .treatment-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: gap 0.3s ease;
        }

        .treatment-link:hover {
            gap: 10px;
        }

        .treatments-center-image {
            margin: 50px auto 0;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--white);
            box-shadow: 0 10px 30px var(--shadow);
        }

        /* ===== SANCTUARY ===== */
        .sanctuary {
            padding: 100px 0;
            background: var(--white);
        }

        .sanctuary-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .sanctuary-image {
            width: 100%;
            border-radius: 24px;
            object-fit: cover;
            max-height: 500px;
        }

        .sanctuary-features {
            margin-top: 32px;
        }

        .sanctuary-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .sanctuary-feature-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: var(--primary-bg);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .sanctuary-feature-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .sanctuary-feature-desc {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.6;
        }

        /* ===== MARQUEE ===== */
        .marquee {
            background: var(--dark);
            padding: 20px 0;
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            animation: marquee 20s linear infinite;
            width: max-content;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 0 24px;
            white-space: nowrap;
        }

        .marquee-text {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            color: var(--white);
            font-style: italic;
        }

        .marquee-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ===== ARTISTS ===== */
        .artists {
            padding: 100px 0;
            background: var(--cream);
        }

        .artists-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .artists-header .section-subtitle {
            margin: 0 auto;
        }

        .artists-inner {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }

        .artists-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .artist-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: var(--white);
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .artist-item.active {
            border-color: var(--primary);
            background: var(--primary-bg);
        }

        .artist-item:hover {
            box-shadow: 0 4px 15px var(--shadow);
        }

        .artist-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .artist-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark);
        }

        .artist-role {
            font-size: 0.78rem;
            color: var(--gray-light);
        }

        .artist-featured {
            text-align: center;
        }

        .artist-featured-image {
            width: 100%;
            max-width: 400px;
            border-radius: 24px;
            object-fit: cover;
            margin-bottom: 24px;
        }

        .artist-featured-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .artist-featured-role {
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .artist-featured-desc {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.7;
            max-width: 360px;
            margin: 0 auto 20px;
        }

        .artist-socials {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .artist-social {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--dark);
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .artist-social:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        /* ===== PACKAGES ===== */
        .packages {
            padding: 100px 0;
            background: var(--white);
            text-align: center;
        }

        .packages-header {
            margin-bottom: 60px;
        }

        .packages-header .section-subtitle {
            margin: 0 auto;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
        }

        .package-card {
            background: var(--white);
            border-radius: 24px;
            padding: 36px 28px;
            text-align: left;
            border: 1.5px solid var(--border);
            transition: all 0.3s ease;
        }

        .package-card.featured {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            transform: scale(1.03);
        }

        .package-card:hover {
            box-shadow: 0 15px 40px var(--shadow);
        }

        .package-badge {
            display: inline-block;
            background: var(--primary-bg);
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .package-card.featured .package-badge {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .package-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .package-price {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .package-price span {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.7;
        }

        .package-features {
            list-style: none;
            margin-bottom: 28px;
        }

        .package-features li {
            padding: 8px 0;
            font-size: 0.88rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .package-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 700;
        }

        .package-card.featured .package-features li::before {
            color: var(--white);
        }

        .package-btn {
            display: block;
            width: 100%;
            padding: 14px;
            border-radius: 50px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .package-btn-outline {
            border: 1.5px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .package-btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }

        .package-btn-white {
            background: var(--white);
            color: var(--primary);
        }

        .package-btn-white:hover {
            background: var(--cream);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 100px 0;
            background: var(--cream);
            text-align: center;
        }

        .testimonials-header {
            margin-bottom: 60px;
        }

        .testimonials-header .section-subtitle {
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: left;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px var(--shadow);
        }

        .testimonial-stars {
            color: #f5a623;
            font-size: 0.9rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark);
        }

        .testimonial-role {
            font-size: 0.78rem;
            color: var(--gray-light);
        }

        .testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 36px;
        }

        .testimonials-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary-light);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonials-dot.active {
            background: var(--primary);
            width: 28px;
            border-radius: 5px;
        }

        /* ===== GALLERY ===== */
        .gallery {
            padding: 100px 0;
            background: var(--white);
            text-align: center;
        }

        .gallery-header {
            margin-bottom: 60px;
        }

        .gallery-header .section-subtitle {
            margin: 0 auto;
        }

        .gallery-phone {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .gallery-phone-frame {
            position: relative;
            width: 260px;
            height: 520px;
            margin: 0 auto;
            background: var(--dark);
            border-radius: 36px;
            padding: 12px;
            z-index: 2;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .gallery-phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 26px;
            overflow: hidden;
            background: var(--primary-bg);
        }

        .gallery-phone-screen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-collage {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            width: 120%;
            z-index: 1;
        }

        .gallery-collage img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* ===== BLOG ===== */
        .blog {
            padding: 100px 0;
            background: var(--cream);
            text-align: center;
        }

        .blog-header {
            margin-bottom: 60px;
        }

        .blog-header .section-subtitle {
            margin: 0 auto;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            text-align: left;
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px var(--shadow);
        }

        .blog-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-card-content {
            padding: 24px;
        }

        .blog-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.78rem;
            color: var(--gray-light);
        }

        .blog-card-meta-dot {
            width: 4px;
            height: 4px;
            background: var(--gray-light);
            border-radius: 50%;
        }

        .blog-card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .blog-card-excerpt {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .blog-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: gap 0.3s ease;
        }

        .blog-card-link:hover {
            gap: 10px;
        }

        /* ===== CONTACT ===== */
        .contact {
            padding: 100px 0;
            background: var(--white);
        }

        .contact-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .contact-image {
            width: 100%;
            border-radius: 24px;
            object-fit: cover;
            max-height: 500px;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .contact-form .full-width {
            grid-column: 1 / -1;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 16px;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: var(--dark);
            background: var(--white);
            transition: border-color 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .contact-form .btn-primary {
            justify-content: center;
            margin-top: 8px;
        }

        /* ===== DISCOUNT ===== */
        .discount {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-bg) 0%, var(--cream) 100%);
            text-align: center;
        }

        .discount-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .discount-image {
            width: 100%;
            max-width: 380px;
            border-radius: 24px;
            object-fit: cover;
        }

        .discount-title {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .discount-title span {
            color: var(--primary);
        }

        .discount-desc {
            font-size: 0.95rem;
            color: var(--gray);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        .discount-form {
            display: flex;
            gap: 12px;
            max-width: 420px;
        }

        .discount-form input {
            flex: 1;
            padding: 14px 20px;
            border: 1.5px solid var(--border);
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            outline: none;
            background: var(--white);
        }

        .discount-form input:focus {
            border-color: var(--primary);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .footer-brand-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: var(--font-heading);
            font-weight: 700;
        }

        .footer-brand-text {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
        }

        .footer-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .footer-social {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--white);
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .footer-social:hover {
            background: var(--primary);
        }

        .footer-heading {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 14px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-contact-icon {
            color: var(--primary);
            font-size: 0.9rem;
            margin-top: 2px;
        }

        .footer-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .footer-gallery img {
            width: 100%;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
            transition: opacity 0.3s ease;
        }

        .footer-gallery img:hover {
            opacity: 0.8;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-title { font-size: 2.8rem; }
            .section-title { font-size: 2rem; }
            .treatments-grid { grid-template-columns: repeat(2, 1fr); }
            .packages-grid { grid-template-columns: repeat(2, 1fr); }
            .package-card.featured { transform: none; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-book-btn { display: none; }
            .nav-hamburger { display: flex; }

            .nav-mobile {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--white);
                z-index: 999;
                padding: 80px 24px 24px;
                flex-direction: column;
            }

            .nav-mobile.open {
                display: flex;
            }

            .nav-mobile a {
                display: block;
                padding: 16px 0;
                font-size: 1.1rem;
                color: var(--dark);
                text-decoration: none;
                border-bottom: 1px solid var(--border);
            }

            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero-desc { margin: 0 auto 32px; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-image { order: -1; }
            .hero-title { font-size: 2.2rem; }

            .about-inner { grid-template-columns: 1fr; }
            .about-features { grid-template-columns: 1fr; }

            .treatments-grid { grid-template-columns: 1fr; }

            .sanctuary-inner { grid-template-columns: 1fr; }

            .artists-inner { grid-template-columns: 1fr; }

            .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

            .testimonials-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

            .blog-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

            .contact-inner { grid-template-columns: 1fr; }
            .contact-form { grid-template-columns: 1fr; }

            .discount-inner { grid-template-columns: 1fr; text-align: center; }
            .discount-form { margin: 0 auto; }
            .discount-image { margin: 0 auto; }

            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

            .gallery-collage { display: none; }

            .section-title { font-size: 1.8rem; }
        }