/* ============================================================
   SMV THIRUMANA MAHAL — "Sacred Opulence" Design System
   Aesthetic: Deep maroon + burnished gold, regal serif type,
   mandala ornaments, warm ivory & dark contrasts
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors */
    --gold:        #C19A4E;
    --gold-light:  #D4AF6A;
    --gold-dark:   #A07B3A;
    --maroon:      #5C1A1B;
    --maroon-deep: #3D0F10;
    --maroon-rich: #7A2223;
    --ivory:       #FDF8F0;
    --ivory-dark:  #F5EDE0;
    --cream:       #FAF3E8;
    --charcoal:    #1A1A1A;
    --dark-bg:     #0F0A07;
    --dark-card:   #1C1410;
    --text-dark:   #2B1F1A;
    --text-muted:  #8A7A6E;
    --text-light:  #E8DDD2;
    --white:       #FFFFFF;
    --overlay:     rgba(15, 10, 7, 0.65);

    /* Typography */
    --font-display: 'Cinzel Decorative', 'Cinzel', serif;
    --font-heading: 'Cinzel', serif;
    --font-body:    'Jost', sans-serif;

    /* Spacing */
    --section-pad: 100px;
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--ivory);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- PRELOADER ---------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--maroon-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-mandala {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--gold-light);
    border-radius: 50%;
    animation: preloader-spin 1s linear infinite;
}

.preloader-text {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: preloader-pulse 1.5s ease-in-out infinite;
}

@keyframes preloader-spin {
    to { transform: rotate(360deg); }
}

@keyframes preloader-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ---------- HEADER ---------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s;
}

#header.scrolled {
    background: rgba(61, 15, 16, 0.97);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--gold-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory);
    position: relative;
    padding: 4px 0;
    opacity: 0.85;
    transition: opacity 0.3s, color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--maroon-deep);
    background: var(--gold);
    padding: 10px 24px;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.header-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(193, 154, 78, 0.4);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(61, 15, 16, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s;
}

.mobile-nav.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active .mobile-nav-link:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-cta {
    margin-top: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out) 0.5s, transform 0.4s var(--ease-out) 0.5s;
}

.mobile-nav.active .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--maroon-deep);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(193, 154, 78, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--ivory);
    border: 1.5px solid rgba(253, 248, 240, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(193, 154, 78, 0.08);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--maroon-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(193, 154, 78, 0.3);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 0.85rem;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ivory);
    background: #25D366;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0;
    text-transform: none;
}

.btn-share:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* ---------- SECTION HELPERS ---------- */
.section {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.section-ivory  { background: var(--ivory); }
.section-dark   { background: var(--dark-bg); }
.section-maroon { background: var(--maroon-deep); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-tag-light { color: var(--gold-light); }
.section-tag-gold  { color: var(--gold); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title-light { color: var(--ivory); }

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.section-desc-light { color: rgba(232, 221, 210, 0.7); }

/* Ornament Divider */
.ornament-divider {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 40px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(15, 10, 7, 0.8) 100%
        );
}

/* Decorative mandala circles */
.hero-mandala {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(193, 154, 78, 0.12);
    z-index: 2;
    pointer-events: none;
}

.hero-mandala::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(193, 154, 78, 0.08);
}

.hero-mandala::after {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px dashed rgba(193, 154, 78, 0.06);
}

.hero-mandala-left {
    top: -150px;
    left: -200px;
    animation: mandala-rotate 60s linear infinite;
}

.hero-mandala-right {
    bottom: -180px;
    right: -220px;
    animation: mandala-rotate 80s linear infinite reverse;
}

@keyframes mandala-rotate {
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(193, 154, 78, 0.35);
    padding: 8px 24px;
    margin-bottom: 32px;
    animation: hero-fadeUp 1s var(--ease-out) 0.3s both;
}

.hero-title {
    margin-bottom: 16px;
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 12px;
    line-height: 1;
    animation: hero-fadeUp 1s var(--ease-out) 0.5s both;
    text-shadow: 0 4px 40px rgba(193, 154, 78, 0.3);
}

.hero-title-accent {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--ivory);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 8px;
    animation: hero-fadeUp 1s var(--ease-out) 0.65s both;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: rgba(253, 248, 240, 0.7);
    font-style: italic;
    margin-bottom: 8px;
    animation: hero-fadeUp 1s var(--ease-out) 0.8s both;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: rgba(253, 248, 240, 0.5);
    margin-bottom: 40px;
    animation: hero-fadeUp 1s var(--ease-out) 0.9s both;
}

.hero-location svg {
    stroke: var(--gold);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: hero-fadeUp 1s var(--ease-out) 1s both;
}

@keyframes hero-fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: hero-fadeUp 1s var(--ease-out) 1.3s both;
}

.hero-scroll span {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(253, 248, 240, 0.4);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%      { opacity: 1;   transform: scaleY(1.3); }
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(43, 31, 26, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    border: 4px solid var(--ivory);
    box-shadow: 0 10px 30px rgba(43, 31, 26, 0.2);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--maroon-deep);
    color: var(--gold);
    text-align: center;
    padding: 20px 24px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(61, 15, 16, 0.4);
}

.about-exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-exp-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 4px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(193, 154, 78, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 10, 7, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 10, 7, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 16px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: var(--ivory);
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px;
    z-index: 10;
    transition: color 0.3s, transform 0.3s;
}

.lightbox-close {
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
}

.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold);
}

/* ---------- FACILITIES ---------- */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.facility-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(193, 154, 78, 0.12);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(43, 31, 26, 0.1);
    border-color: rgba(193, 154, 78, 0.3);
}

.facility-icon {
    margin-bottom: 20px;
}

.facility-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.facility-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- PRICING ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: rgba(253, 248, 240, 0.06);
    border: 1px solid rgba(193, 154, 78, 0.15);
    border-radius: 6px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.4s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(193, 154, 78, 0.35);
}

.pricing-card-featured {
    background: rgba(193, 154, 78, 0.08);
    border-color: var(--gold);
    position: relative;
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(193, 154, 78, 0.15);
}

.pricing-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    border: 1px solid rgba(232, 221, 210, 0.2);
    padding: 4px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.pricing-badge-gold {
    color: var(--maroon-deep);
    background: var(--gold);
    border-color: var(--gold);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: rgba(232, 221, 210, 0.6);
    margin-bottom: 28px;
    line-height: 1.5;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(193, 154, 78, 0.08);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature svg {
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(232, 221, 210, 0.5);
    font-style: italic;
    margin-top: 40px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 6px;
    padding: 36px 32px;
    border: 1px solid rgba(193, 154, 78, 0.1);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(43, 31, 26, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--maroon-deep);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.testimonial-event {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ivory);
    background: rgba(253, 248, 240, 0.06);
    border: 1px solid rgba(193, 154, 78, 0.2);
    padding: 12px 16px;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 221, 210, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(193, 154, 78, 0.1);
    background: rgba(253, 248, 240, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C19A4E' stroke-width='1.5' fill='none' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--ivory);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-note {
    font-size: 0.8rem;
    color: rgba(232, 221, 210, 0.4);
    text-align: center;
    margin-top: 4px;
}

/* Form success */
.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success-icon {
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Contact Info */
.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(193, 154, 78, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-item-link {
    transition: color 0.3s;
}

.contact-item-link:hover {
    color: var(--gold);
}

.contact-map {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(193, 154, 78, 0.15);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--charcoal);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(193, 154, 78, 0.1);
}

.footer-logo {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(232, 221, 210, 0.5);
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(232, 221, 210, 0.5);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(232, 221, 210, 0.35);
}

.footer-seo {
    margin-top: 6px;
    font-size: 0.75rem !important;
    color: rgba(232, 221, 210, 0.2) !important;
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--ease-out);
    animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50%      { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ---------- CALL FLOAT (MOBILE ONLY) ---------- */
.call-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 900;
    width: 52px;
    height: 52px;
    background: var(--gold);
    color: var(--maroon-deep);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(193, 154, 78, 0.4);
    transition: all 0.3s var(--ease-out);
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(193, 154, 78, 0.5);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 800;
    width: 44px;
    height: 44px;
    background: var(--maroon-deep);
    color: var(--gold);
    border: 1px solid rgba(193, 154, 78, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s, background 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--maroon-deep);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .nav, .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
        order: -1;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

    .hero-title-line {
        letter-spacing: 6px;
    }

    .hero-title-accent {
        letter-spacing: 4px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-img-accent {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -10px;
    }

    .about-experience {
        top: -10px;
        left: -10px;
        padding: 14px 18px;
    }

    .about-exp-number {
        font-size: 1.5rem;
    }

    .about-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .call-float {
        display: flex;
    }

    .whatsapp-float-text {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }

    .back-to-top {
        bottom: 84px;
        right: 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-pad: 48px;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 2px;
        padding: 6px 16px;
    }

    .hero-scroll {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }
}

/* ---------- Print ---------- */
@media print {
    .whatsapp-float,
    .call-float,
    .back-to-top,
    #header,
    .hero-mandala,
    .hero-scroll,
    #preloader {
        display: none !important;
    }
}
