/* ========================================
   MOKAWA GROUP - LUXURY DESIGN SYSTEM
   ======================================== */

/* ========== CSS RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Luxury & Sophisticated */
    --primary-gold: #C9A961;
    --gold-dark: #B8974E;
    --gold-light: #D4B76A;
    --beige-light: #F5F1EA;
    --beige-cream: #EDE8DF;
    --cream: #FAF8F3;
    --sand: #E8DFD0;
    --charcoal: #2C2C2C;
    --dark-brown: #3E3428;
    --white: #FFFFFF;
    --off-white: #FEFDFB;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    
    /* Transparency Colors */
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-light: rgba(255, 255, 255, 0.9);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 5%;
    --max-width: 1400px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.7;
    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: var(--transition-fast);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: var(--transition-smooth);
    padding: 0.8rem 0;
}

.navbar.scrolled {
    background: linear-gradient(135deg, #2C2416, #8B6F47);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.6));
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo img {
    height: 60px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
}

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

.btn-book {
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.btn-book:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-fast);
}

/* ========== HERO SECTION ========== */
/* =====================================================
   SPLIT-SCREEN HERO — text left, image right, clean
   ===================================================== */

/* ==============================================
   HERO V2 — CINEMATIC FULL-SCREEN SLIDER
   ============================================== */

/* ══════════════════════════════════════════════════════
   MOKAWA GROUP — INDEX HERO  (mk-hero)
   Split-screen: full-bleed photo left, editorial right
   ══════════════════════════════════════════════════════ */

/* ── Root tokens ── */
/* ═══════════════════════════════════════════════════════
   INDEX HERO  —  Paradise structure · Mokawa dark palette
   ═══════════════════════════════════════════════════════ */

/* Shell — identical to pf-hero */
.mk-hero{position:relative;height:100vh;min-height:700px;display:flex;align-items:stretch;overflow:hidden;background:#f5ede0;}

/* ── LEFT: Photo panel (52%) — identical to pf-hero-left ── */
.mk-hero-left{position:relative;flex:0 0 52%;overflow:hidden;}
.mk-slider{position:absolute;inset:0;}
.mk-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.8s ease;transform:scale(1.05);}
.mk-slide.active{opacity:1;animation:mk-drift 14s ease-in-out infinite alternate;}
@keyframes mk-drift{0%{transform:scale(1.05) translateX(0);}100%{transform:scale(1.12) translateX(-2%);}}
/* Dark cinematic overlay on photo */
.mk-slide::after{content:'';position:absolute;inset:0;background:linear-gradient(160deg,rgba(10,7,4,.12) 0%,rgba(10,7,4,.35) 60%,rgba(10,7,4,.65) 100%);}

/* Arch — same clip-path as pf-arch, background matches dark panel */
.mk-arch{position:absolute;top:0;right:-1px;bottom:0;width:90px;z-index:10;background:#f5ede0;clip-path:ellipse(90px 55% at 100% 50%);}
.mk-arch::before{content:'';position:absolute;inset:8% auto 8% -3px;width:4px;background:linear-gradient(180deg,transparent,#C9A961 20%,#C9A961 80%,transparent);border-radius:3px;}

/* Wave — same SVG as pf-mountain-deco, fill colour = dark bg */
.mk-wave{position:absolute;bottom:0;left:0;right:0;height:100px;z-index:8;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,95 L150,55 L300,85 L450,40 L600,70 L750,35 L900,65 L1050,30 L1200,75 L1200,120 L0,120Z' fill='%23f5ede0'/%3E%3C/svg%3E") bottom/cover no-repeat;}

/* ── HOTEL NAME LABEL — centred on photo, no background, slides from right ── */
.mk-hotel-label{
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%) translateX(80px);
    z-index:20;
    text-align:center;
    pointer-events:none;
    opacity:0;
    transition:opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
    /* NO background — clean text on image */
}
.mk-hotel-label.mk-label-show{
    opacity:1;
    transform:translate(-50%,-50%) translateX(0);
    animation:mk-label-bob 5s ease-in-out 1s infinite;
}
.mk-hotel-label.mk-label-exit{
    opacity:0;
    transform:translate(-50%,-50%) translateX(-60px);
    transition:opacity .4s ease, transform .4s ease;
}
@keyframes mk-label-bob{
    0%,100%{transform:translate(-50%,-50%) translateY(0);}
    50%{transform:translate(-50%,-50%) translateY(-8px);}
}
.mk-hotel-name{
    font-family:'Playfair Display',serif;
    font-size:clamp(2.5rem,5vw,4.5rem);
    font-weight:700;
    color:#fff;
    line-height:1;
    display:block;
    text-shadow:0 2px 40px rgba(0,0,0,.7), 0 0 80px rgba(0,0,0,.4);
    letter-spacing:.02em;
}
.mk-hotel-line{
    width:50px;height:3px;
    background:#C9A961;
    margin:.9rem auto;
    box-shadow:0 0 12px rgba(201,169,97,.6);
}
.mk-hotel-loc{
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.28em;
    text-transform:uppercase;
    color:#C9A961;
    display:block;
    text-shadow:0 2px 20px rgba(0,0,0,.7);
}

/* Slide indicators — identical to pf-indicators */
.mk-indicators{position:absolute;bottom:2.5rem;left:2rem;display:flex;gap:.5rem;z-index:20;}
.mk-dot{width:24px;height:4px;border-radius:2px;background:rgba(201,169,97,.35);cursor:pointer;transition:all .4s;}
.mk-dot.active{background:#C9A961;width:40px;}

/* ── RIGHT: Dark content panel — identical structure to pf-hero-right ── */
.mk-hero-right{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:6rem 4rem 5rem 5rem;
    background:#f5ede0;
    position:relative;
    z-index:5;
}
/* Warm gold radial glow — same as pf-hero-right::before */
.mk-hero-right::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 80% 15%,rgba(201,169,97,.08) 0%,transparent 70%);pointer-events:none;}

/* Dot grid — same as pf-dots */
.mk-dot-grid{position:absolute;top:5rem;right:2.5rem;display:grid;grid-template-columns:repeat(4,7px);gap:5px;opacity:.2;}
.mk-dot-grid span{width:7px;height:7px;border-radius:50%;background:#8B5E3C;display:block;}
.mk-dot-grid span:nth-child(even){background:#C9A961;}

/* Overline — same as pf-overline, gold colour */
.mk-overline{font-size:.7rem;letter-spacing:.3em;text-transform:uppercase;color:#8B5E3C;margin-bottom:.9rem;font-weight:700;display:flex;align-items:center;gap:.8rem;animation:mk-fade .9s ease .2s both;}
.mk-overline::before{content:'';display:inline-block;width:28px;height:2px;background:#C9A961;border-radius:1px;}

/* Title — same as pf-hero-title, white + gold italic */
.mk-title{font-family:'Playfair Display',serif;font-size:clamp(2.4rem,4vw,3.9rem);font-weight:900;color:#3B1F0A;line-height:1.08;margin-bottom:.5rem;animation:mk-rise 1s cubic-bezier(.22,1,.36,1) .1s both;}
.mk-title em{font-style:italic;font-weight:400;color:#8B5E3C;display:block;font-size:.85em;}

/* Location pill — same as pf-location */
.mk-location{display:inline-flex;align-items:center;gap:.5rem;font-size:.82rem;color:#6B4C2A;background:rgba(201,169,97,.15);border:1px solid rgba(201,169,97,.4);padding:.4rem 1rem;border-radius:50px;margin:1.1rem 0 1.4rem;font-weight:600;letter-spacing:.05em;animation:mk-fade .9s ease .3s both;}
.mk-location i{color:#C9A961;font-size:.78rem;}

/* Rule — same as pf-rule */
.mk-rule{width:50px;height:3px;background:linear-gradient(90deg,#C9A961,rgba(201,169,97,.3));border-radius:2px;margin-bottom:1.4rem;animation:mk-expand .9s ease .4s both;}
@keyframes mk-expand{from{width:0;opacity:0;}to{width:50px;opacity:1;}}

/* Tagline — same as pf-tagline */
.mk-tagline{font-family:'Cormorant Garamond',serif;font-size:clamp(.95rem,1.6vw,1.2rem);color:#6B4C2A;line-height:1.8;margin-bottom:1.8rem;font-style:italic;animation:mk-fade .9s ease .45s both;}

/* Chips — same as pf-chips, dark bg palette */
.mk-chips{display:flex;flex-wrap:wrap;gap:.55rem;margin-bottom:2.2rem;animation:mk-fade .9s ease .55s both;}
.mk-chip{display:flex;align-items:center;gap:.4rem;background:rgba(139,94,60,.1);border:1px solid rgba(139,94,60,.2);color:#5C3A1A;padding:.35rem .85rem;border-radius:50px;font-size:.76rem;font-weight:600;letter-spacing:.04em;transition:all .25s;}
.mk-chip:hover{background:rgba(201,169,97,.2);border-color:#C9A961;}
.mk-chip i{color:#8B5E3C;font-size:.72rem;}

/* CTAs — same as pf-cta */
.mk-cta{display:flex;gap:1rem;flex-wrap:wrap;animation:mk-rise 1s cubic-bezier(.22,1,.36,1) .65s both;}
.mk-btn{padding:.85rem 2rem;border-radius:50px;font-size:.88rem;font-weight:700;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem;transition:all .3s ease;letter-spacing:.03em;}
.mk-btn-primary{background:linear-gradient(135deg,#C9A961,#8B6430);color:#3B1F0A;box-shadow:0 6px 20px rgba(201,169,97,.3);}
.mk-btn-primary:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(201,169,97,.45);}
.mk-btn-secondary{background:transparent;border:2px solid #8B5E3C;color:#3B1F0A;}
.mk-btn-secondary:hover{background:#8B5E3C;color:white;transform:translateY(-3px);}
.mk-btn i{transition:transform .3s;}
.mk-btn:hover i{transform:translateX(4px);}

/* Keyframes */
@keyframes mk-drop{from{opacity:0;transform:translateY(-20px);}to{opacity:1;transform:translateY(0);}}
@keyframes mk-rise{from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);}}
@keyframes mk-fade{from{opacity:0;}to{opacity:1;}}

/* Mobile */
@media(max-width:900px){
    .mk-hero{flex-direction:column;}
    .mk-hero-left{flex:0 0 48vh;}
    .mk-arch{display:none;}
    .mk-wave{display:none;}
    .mk-hero-right{padding:2rem 1.6rem 2.5rem;}
    .mk-title{font-size:2.2rem;}
    .mk-dot-grid{display:none;}
    .mk-hotel-name{font-size:2rem;}
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: var(--section-padding);
    background: var(--beige-light);
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: var(--primary-gold);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.mv-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.mv-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-images {
    position: relative;
    height: 600px;
    overflow: visible;
}

.about-img-main {
    width: 80%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}

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

.about-img-overlay {
    width: 60%;
    height: 350px;
    border-radius: 0;
    overflow: visible;
    position: absolute;
    bottom: 0;
    left: 0;
    border: none;
    box-shadow: none;
    max-width: 450px;
    min-width: 280px;
    background: transparent;
}

.about-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.diagonal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.98) 45%,
        rgba(255, 255, 255, 0.85) 55%,
        rgba(249, 246, 240, 0.95) 65%,
        rgba(249, 246, 240, 1) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.services-wrapper {
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-header .section-title {
    margin-bottom: 1rem;
}

.services-header .section-divider {
    margin: 0 auto 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.services-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    border-right: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    margin: 5px;
}

.service-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-gold);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--white);
    border-color: transparent;
    transform: rotateY(360deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.values-section {
    max-width: var(--max-width);
    margin: 6rem auto 0;
    padding: 4rem 5%;
    background: var(--beige-light);
    border-radius: 15px;
}

.values-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.value-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ========== NEW SERVICES ZIGZAG DESIGN ========== */
.services-zigzag {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.services-zigzag::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--primary-gold) 20%, 
        var(--primary-gold) 80%, 
        transparent 100%);
    transform: translateX(-50%);
}

.zigzag-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.zigzag-left {
    flex-direction: row;
    padding-right: 50%;
}

.zigzag-right {
    flex-direction: row-reverse;
    padding-left: 50%;
}

.zigzag-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 300;
    color: var(--beige-cream);
    line-height: 1;
    flex-shrink: 0;
}

.zigzag-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.zigzag-item:hover .zigzag-icon {
    transform: scale(1.1) rotate(360deg);
}

.zigzag-content {
    flex: 1;
}

.zigzag-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.zigzag-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Values Organic Bubbles */
.values-organic {
    max-width: 1200px;
    margin: 6rem auto 0;
    padding: 0 5%;
}

.values-organic .values-title {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-bubble {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--beige-light) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.value-bubble:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.15);
}

.value-bubble:hover::before {
    opacity: 1;
}

.bubble-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.value-bubble:hover .bubble-icon {
    transform: scale(1.1) rotateY(180deg);
}

.value-bubble h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.value-bubble p {
    color: var(--text-medium);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .services-zigzag::before {
        display: none;
    }
    
    .zigzag-left,
    .zigzag-right {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }
    
    .zigzag-number {
        font-size: 4rem;
    }
    
    .zigzag-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== TEAM SECTION ========== */
.team-section {
    padding: var(--section-padding);
    background: var(--beige-light);
}

.team-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 5rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: var(--transition-smooth);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--beige-cream) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.team-card:hover::before {
    width: 120%;
    height: 120%;
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--beige-cream), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.team-placeholder {
    width: 180px;
    height: 180px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.team-card:hover .team-placeholder {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
}

.team-info {
    padding: 2.5rem 1rem 2rem;
    text-align: center;
    background: transparent;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.team-role {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-contact a {
    width: 40px;
    height: 40px;
    background: var(--beige-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.team-contact a:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.3rem;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 400;
}

.contact-item a,
.contact-item p {
    color: var(--text-medium);
    transition: var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--beige-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--beige-cream);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--white);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--primary-gold);
    background: var(--white);
    padding: 0 0.5rem;
}

.btn-submit {
    background: var(--primary-gold);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-brown);
    color: var(--beige-cream);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: var(--sand);
    font-style: italic;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--sand);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--sand);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--sand);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 1024px) {
    .property-layout,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .circular-overlay {
        right: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .btn-book {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .property-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        font-size: 1.2rem;
    }
    
    .main-image {
        height: 400px;
    }
    
    .circular-overlay {
        width: 200px;
        height: 200px;
        right: 10px;
        bottom: -30px;
    }
    
    .property-title {
        font-size: 2.5rem;
    }
    
    .property-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .property-buttons {
        flex-direction: column;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-images {
        height: auto;
        min-height: 400px;
        overflow: visible;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-img-main {
        width: 100%;
        height: 350px;
        position: relative;
        top: auto;
        right: auto;
    }
    
    .about-img-overlay {
        width: 80%;
        height: 250px;
        max-width: 350px;
        min-width: 250px;
        position: relative;
        left: auto;
        bottom: auto;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .nav-container {
        padding: 1rem 4%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* New Elegant Services Design */
.services-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.services-elegant {
    margin: 4rem 0;
}

.service-elegant-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--beige-cream);
}

.service-elegant-item:last-child {
    border-bottom: none;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
}

.service-elegant-content {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.service-elegant-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.service-elegant-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-elegant-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-elegant {
    margin-top: 6rem;
    background: var(--beige-light);
    border-radius: 20px;
    padding: 4rem 3rem;
}

.values-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-flow-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.value-flow-item i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
}

.value-flow-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.value-flow-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.value-connector {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 300;
}

/* Mission Vision Elegant Design */
.mv-item {
    display: flex;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mv-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.mv-content p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Team section without cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: none;
}

.team-card:hover {
    transform: none;
    box-shadow: none;
}


/* Team Elegant Design */
.team-elegant {
    max-width: 1000px;
    margin: 0 auto;
}

.team-elegant-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--beige-cream);
}

.team-elegant-item:last-child {
    border-bottom: none;
}

.team-elegant-image {
    position: relative;
}

.team-elegant-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
}

.team-elegant-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.team-elegant-role {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-elegant-bio {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.team-elegant-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.team-elegant-contact a {
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-fast);
}

.team-elegant-contact a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.team-elegant-contact i {
    color: var(--primary-gold);
}


/* Responsive Updates */
@media (max-width: 768px) {
    .service-elegant-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .service-elegant-content {
        flex-direction: column;
    }
    
    .values-flow {
        flex-direction: column;
    }
    
    .value-connector {
        transform: rotate(90deg);
    }
    
    .team-elegant-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .team-elegant-placeholder {
        margin: 0 auto;
    }
    
    .team-elegant-contact {
        align-items: center;
    }
    
    .mv-item {
        flex-direction: column;
        text-align: center;
    }
}


/* ========== NEW TEAM SPLIT DESIGN ========== */
.team-split {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.team-split-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.team-split-reverse {
    grid-template-columns: 1fr 1fr;
}

.team-split-reverse .team-split-bg {
    order: 2;
}

.team-split-reverse .team-split-content {
    order: 1;
}

.team-split-bg {
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-split-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
}

.team-avatar {
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.team-split-item:hover .team-avatar {
    transform: scale(1.1) rotate(5deg);
}

.team-split-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    position: relative;
}

.team-split-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background: transparent;
    opacity: 0;
    transition: var(--transition-smooth);
}

.team-split-reverse .team-split-content::before {
    left: auto;
    right: 0;
}

.team-split-item:hover .team-split-content::before {
    opacity: 1;
}

.team-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.team-split-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.team-split-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.team-connect {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.team-btn {
    padding: 0.875rem 2rem;
    background: var(--beige-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

@media (max-width: 968px) {
    .team-split-item,
    .team-split-reverse {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .team-split-reverse .team-split-bg {
        order: 1;
    }
    
    .team-split-reverse .team-split-content {
        order: 2;
    }
    
    .team-split-bg {
        min-height: 300px;
    }
    
    .team-split-content {
        padding: 3rem 2rem;
    }
    
    .team-split-content h3 {
        font-size: 2rem;
    }
    
    .team-avatar {
        width: 150px;
        height: 150px;
        font-size: 4.5rem;
    }
}

/* Tertiary Button Style */
.btn-tertiary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-fast);
    border: 2px solid var(--primary-gold);
}

.btn-tertiary:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

/* Portfolio Header */
.portfolio-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 5%;
}

.portfolio-header .section-title {
    margin-bottom: 1rem;
}

.portfolio-header .section-divider {
    margin: 0 auto 2rem;
}

/* ========== ENHANCED MOBILE RESPONSIVENESS ========== */

/* Tablets and Small Laptops */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .property-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .property-images,
    .property-info {
        padding: 0;
    }
    
    .services-zigzag::before {
        display: none;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
    }
    
    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        transition: var(--transition-fast);
    }
    
    .btn-book {
        display: none;
    }
    
    /* Hero */
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-company {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* About Section */
    .about-container {
        flex-direction: column;
        padding: 0 5%;
    }
    
    .about-content {
        padding: 0;
        margin-bottom: 3rem;
    }
    
    .about-images {
        padding: 0;
        height: auto;
        min-height: 400px;
        overflow: visible;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-img-main {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: 0;
        top: auto;
        right: auto;
    }
    
    .about-img-overlay {
        position: relative;
        width: 90%;
        height: 250px;
        left: auto;
        bottom: auto;
        margin: 0 auto;
        max-width: 100%;
        border: 5px solid var(--beige-light);
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    /* Properties */
    .property-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 1rem;
    }
    
    .property-layout {
        padding: 2rem 5%;
    }
    
    .circular-overlay {
        width: 150px;
        height: 150px;
        right: 10px;
        bottom: 10px;
    }
    
    .property-features {
        grid-template-columns: 1fr;
    }
    
    .property-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .property-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Services */
    .zigzag-left,
    .zigzag-right {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }
    
    .zigzag-number {
        font-size: 3rem;
    }
    
    .zigzag-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team */
    .team-split-item,
    .team-split-reverse {
        grid-template-columns: 1fr;
    }
    
    .team-split-bg {
        min-height: 250px;
    }
    
    .team-split-content {
        padding: 2rem;
    }
    
    .team-avatar {
        width: 120px;
        height: 120px;
        font-size: 4rem;
    }
    
    /* Contact */
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 0;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column ul {
        align-items: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .property-title {
        font-size: 2rem;
    }
    
    .zigzag-number {
        font-size: 2.5rem;
    }
    
    .zigzag-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .hero-buttons {
        padding: 0 1rem;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: 1.2rem 2.5rem;
        min-height: 48px;
    }
    
    .tab-btn {
        min-height: 48px;
    }
    
    .nav-link {
        padding: 1rem;
    }
}
/* ========== MOBILE FONT SIZE FIXES ========== */
@media (max-width: 768px) {
    /* Reduce all font sizes for mobile */
    .hero-company {
        font-size: 0.9rem !important;
        letter-spacing: 2px !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
    }
    
    .property-title {
        font-size: 1.5rem !important;
    }
    
    .property-tagline {
        font-size: 0.9rem !important;
    }
    
    .property-description {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    /* Reduce card padding and sizes */
    .amenity-card,
    .room-type-card,
    .value-bubble {
        padding: 1.2rem 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .amenity-card h3,
    .room-type-card h3 {
        font-size: 1.1rem !important;
    }
    
    .amenity-card p,
    .room-type-card p {
        font-size: 0.85rem !important;
    }
    
    /* Fix zigzag service items */
    .zigzag-content h3 {
        font-size: 1.3rem !important;
    }
    
    .zigzag-content p {
        font-size: 0.85rem !important;
    }
    
    /* Team section */
    .team-split-content h3 {
        font-size: 1.5rem !important;
    }
    
    .team-split-content p {
        font-size: 0.85rem !important;
    }
}

/* ========== MAKE BACKGROUNDS FULLY VISIBLE ========== */
/* Amenities backgrounds - INCREASE FROM 0.18 to 0.45 */
.amenities-section::before {
    opacity: 0.45 !important;
    filter: brightness(1.1);
}

/* Room types backgrounds - INCREASE FROM 0.15 to 0.40 */
.room-types-section::before {
    opacity: 0.40 !important;
    filter: brightness(1.1);
}

/* Services section background */
.services-section .services-background img {
    opacity: 0.35 !important;
    filter: brightness(1.2);
}
/* ========================================
   FINAL MOBILE & BACKGROUND FIXES
   ======================================== */

/* ========== MOBILE FONT SIZE REDUCTIONS ========== */
@media (max-width: 768px) {
    body { font-size: 14px !important; }
    
    /* Hero Section - SMALLER */
    .hero-company { font-size: 0.8rem !important; letter-spacing: 2px !important; }
    .hero-title { font-size: 1.6rem !important; line-height: 1.2 !important; margin-bottom: 0.8rem !important; }
    .hero-subtitle { font-size: 0.8rem !important; margin-bottom: 0.8rem !important; }
    .hero-description { font-size: 0.75rem !important; line-height: 1.4 !important; margin-bottom: 1.5rem !important; }
    .hero { min-height: 600px !important; padding: 1rem 0 !important; }
    
    /* Section Titles - SMALLER */
    .section-title { font-size: 1.4rem !important; margin-bottom: 0.8rem !important; }
    .section-subtitle { font-size: 0.8rem !important; line-height: 1.5 !important; }
    
    /* Property Cards - COMPACT */
    .property-title { font-size: 1.3rem !important; }
    .property-tagline { font-size: 0.8rem !important; }
    .property-description { font-size: 0.75rem !important; line-height: 1.4 !important; }
    
    /* Cards - SMALLER PADDING */
    .amenity-card, .room-type-card, .value-bubble {
        padding: 1rem 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }
    .amenity-card h3, .room-type-card h3 { font-size: 1rem !important; margin: 0.5rem 0 !important; }
    .amenity-card p, .room-type-card p { font-size: 0.75rem !important; line-height: 1.4 !important; }
    .amenity-card i, .room-type-card i { font-size: 1.8rem !important; }
    
    /* Services Zigzag - COMPACT */
    .zigzag-content h3 { font-size: 1.1rem !important; }
    .zigzag-content p { font-size: 0.75rem !important; line-height: 1.4 !important; }
    .zigzag-number { font-size: 2.5rem !important; }
    .zigzag-icon { width: 60px !important; height: 60px !important; font-size: 1.5rem !important; }
    
    /* Team Section - COMPACT */
    .team-split-content h3 { font-size: 1.2rem !important; }
    .team-split-content p, .team-split-content span { font-size: 0.75rem !important; }
    .team-avatar { width: 100px !important; height: 100px !important; font-size: 3rem !important; }
    
    /* Buttons - NORMAL SIZE */
    .btn-primary, .btn-secondary, .btn-tertiary {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Stats - SMALLER */
    .stat-card h3 { font-size: 2rem !important; }
    .stat-card p { font-size: 0.8rem !important; }
}

/* ========== MAKE BACKGROUNDS FULLY VISIBLE ========== */
/* NO MORE FADING - Images must be SEEN! */

.amenities-section::before {
    opacity: 0.55 !important;  /* Was 0.18, now MUCH more visible */
    filter: brightness(1.15) contrast(1.05) !important;
}

.room-types-section::before {
    opacity: 0.50 !important;  /* Was 0.15, now MUCH more visible */
    filter: brightness(1.15) contrast(1.05) !important;
}

.services-background img {
    opacity: 0.45 !important;  /* More visible */
    filter: brightness(1.2) contrast(1.05) !important;
}

/* Add backgrounds to sections that don't have them */
.values-organic {
    background-image: url('../images/background-img02.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
}

.values-organic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.values-organic > * {
    position: relative;
    z-index: 1;
}

/* Stats Section Background */
.stats-section {
    background-image: url('../images/BACKGROUND-img01.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

/* Hotel Rating Stars */
.hotel-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #FFD700;
}

.hotel-rating .rating-text {
    color: var(--white);
    font-weight: 600;
    margin-left: 0.5rem;
    font-size: 1.1rem;
}

/* Hero Buttons Container */
.hero-content .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-content .btn-tertiary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.hero-content .btn-tertiary:hover {
    background: var(--white);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .hero-content .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }
    
    .hero-content .hero-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hotel-rating {
        font-size: 1rem;
    }
    
    .hotel-rating .rating-text {
        font-size: 0.9rem;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 6rem 5%;
    background: var(--beige-light);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.2);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.testimonial-author p {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* Contact Section with Background */
.contact-section {
    background-image: url('../images/contact_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    z-index: 0;
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

/* Footer with Background */
.footer {
    background-image: url('../images/footer_bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 37, 37, 0.92);
    z-index: 0;
}

.footer > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
}

/* ========== CRYSTAL CLEAR BACKGROUNDS (FINAL FIX) ========== */
.amenities-section::before {
    opacity: 0.65 !important;  /* MUCH MORE VISIBLE */
}

.room-types-section::before {
    opacity: 0.60 !important;  /* MUCH MORE VISIBLE */
}

.services-section .diagonal-overlay {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.75) 0%, 
        rgba(250, 245, 235, 0.80) 100%) !important;
}

/* Remove container width restrictions - FULL WIDTH */
.container,
.about-container,
.services-container,
.portfolio-container,
.team-container,
.testimonials-container,
.contact-container {
    max-width: 100% !important;
    padding: 0 5% !important;
}

/* Make logo even larger and more visible */
/* DISABLED - Using main navbar styles instead
.navbar-logo img {
    height: 80px !important;
}

@media (max-width: 768px) {
    .navbar-logo img {
        height: 60px !important;
    }
}
*/
/* ========================================
   FINAL COMPREHENSIVE FIXES
   ======================================== */

/* FIX 1: Navigation Bar - DISABLED - Using main navbar styles */
/*
.navbar {
    padding: 0.5rem 0 !important;
    min-height: auto !important;
}

.navbar-logo img {
    height: 60px !important;
}

.navbar-container {
    align-items: center;
    min-height: auto !important;
}
*/

/* FIX 2: Hero Images - Position from Top (cut bottom, keep heads) */
.hero-slide,
.hero-slide-item,
.chapter-image img,
.team-split-bg,
.property-image img {
    object-position: top center !important;
    background-position: top center !important;
}

.story-hero {
    background-position: top center !important;
}

/* FIX 3: Index Hero - Darker Overlay for Text Visibility */
body:not(.story-page) .hero::before {
    background: rgba(0, 0, 0, 0.45) !important;
}

/* FIX 4: Footer Logo - White and Visible */
.footer-column img {
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}

/* FIX 5: Remove Core Values Background */
.values-organic {
    background-image: none !important;
}

.values-organic::before {
    display: none !important;
}

/* FIX 6: Add Background to Footer */
.footer {
    background-image: url('../images/background-img02.png') !important;
    background-size: cover;
    background-position: center;
}

.footer::before {
    background: rgba(37, 37, 37, 0.90) !important;
}

/* FIX 7: Redesign "What Sets Us Apart" - Compact with Image */
.services-zigzag {
    padding: 4rem 5% !important;
}

.zigzag-left,
.zigzag-right {
    margin-bottom: 2rem !important;
}

.zigzag-content {
    padding: 1.5rem !important;
}

.services-background {
    opacity: 0.5 !important;
}

/* FIX 8: Portfolio Hover Effects */
.property-layout:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.property-layout {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* FIX 9: Gallery - Horizontal Scroll Style */
.gallery-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 1.5rem !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.gallery-item {
    flex: 0 0 400px !important;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* FIX 10: Mobile Gallery */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 280px !important;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .navbar-logo img {
        height: 50px !important;
    }
}

/* FIX 11: Lightbox for Full Image View */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

/* ========== REDESIGNED "WHAT SETS US APART" ========== */
.services-section {
    padding: 4rem 5% !important;
}

.services-zigzag {
    padding: 3rem 0 !important;
}

.zigzag-left,
.zigzag-right {
    display: grid !important;
    grid-template-columns: 80px 1fr !important;
    gap: 2rem !important;
    align-items: center !important;
    padding: 2rem !important;
    margin-bottom: 2rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 15px !important;
}

.zigzag-number {
    font-size: 3rem !important;
    margin: 0 !important;
}

.zigzag-icon {
    width: 70px !important;
    height: 70px !important;
    font-size: 2rem !important;
    margin: 0 !important;
}

.zigzag-content {
    padding: 0 !important;
}

.zigzag-content h3 {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
}

.zigzag-content p {
    margin: 0 !important;
    font-size: 1rem !important;
}

.services-background img {
    opacity: 0.6 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .zigzag-left,
    .zigzag-right {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}
/* ========== NAVIGATION - SEE TOP OF FILE FOR MAIN STYLES ========== */


.navbar-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu a {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar.scrolled .navbar-menu a {
  color: white;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  background: rgba(255, 255, 255, 0.15);
  color: #D4AF37;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #2C2416;
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  color: white;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: normal;
  text-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  border-radius: 0;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #8B6F47;
  padding-left: 2rem;
  color: white;
}

.dropdown-menu a i {
  color: #D4AF37;
  font-size: 1.1rem;
}

.dropdown > a::after {
  content: ' ▾';
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-logo img {
    height: 60px !important;
  }
  
  .navbar.scrolled .navbar-logo img {
    height: 50px !important;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2C2416;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }
  
  .navbar-menu.active {
    display: flex;
  }
  
  .navbar-menu a {
    padding: 1rem;
    width: 100%;
    text-align: center;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0;
    box-shadow: none;
  }
}

/* Hero Fix - No Margin Top */
.hero {
  margin-top: 0 !important;
}

/* ========== FIX HERO IMAGES - CENTER POSITION (Hotels & Story) ========== */
/* Hotel hero images - centered and fully visible */
.hotel-hero,
.story-hero {
    background-position: center center !important;
}

.hotel-hero .hero-slide,
.hotel-hero .hero-slide-item {
    background-position: center center !important;
}

/* Story page chapter images - keep centered */
.story-hero {
    background-position: center center !important;
    background-size: cover !important;
}

/* Keep team photos and about images with top positioning */
.team-split-bg,
.about-images img {
    object-position: top center !important;
}

/* Ensure hero images are fully visible and centered */
body.hotel-page .hero,
body.story-page .hero {
    background-position: center center !important;
}

/* ========== NAVIGATION VISIBILITY FIX ========== */
/* Background appears IMMEDIATELY after scrolling past hero */
.navbar {
  background: transparent !important;
  transition: all 0.3s ease !important;
}

/* Add background as soon as user scrolls ANY amount */
.navbar.scrolled {
  background: linear-gradient(135deg, #2C2416, #8B6F47) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}

/* Ensure text is ALWAYS visible */
.navbar-menu a {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}

.navbar.scrolled .navbar-menu a {
  color: white !important;
  text-shadow: none !important;
}

/* ========== CONTACT BACKGROUND FULLY VISIBLE ========== */
.contact-section {
    background-image: url('../images/contact_bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.contact-section::before {
    background: rgba(255, 255, 255, 0.75) !important;
    /* Light overlay so form is readable but image is VISIBLE */
}

/* Make image even MORE visible if needed */
@media (max-width: 768px) {
    .contact-section {
        background-attachment: scroll !important;
    }
}

/* ========== BEAUTIFUL SERVICES SECTION (NO CARDS) ========== */
/* ========== WHY PARTNER WITH MOKAWA ========== */

/* ========== PROPERTIES SHOWCASE ========== */

.properties-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.property-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
}

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

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

.property-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.property-content.active {
    display: block;
}

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

.property-layout {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.property-images {
    position: relative;
}

.main-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.circular-overlay {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--off-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.circular-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info {
    padding: 2rem 0;
}

.property-logo {
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
}

.property-logo img {
    max-height: 80px;
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.property-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.property-tagline {
    font-size: 1.2rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 300;
}

.property-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.property-features {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.property-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.property-buttons .btn-primary,
.property-buttons .btn-secondary,
.property-buttons .btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: var(--section-padding);
    background: var(--beige-light);
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: var(--primary-gold);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.mv-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.mv-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-images {
    position: relative;
    height: 600px;
    overflow: visible;
}

.about-img-main {
    width: 80%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}

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

.about-img-overlay {
    width: 60%;
    height: 350px;
    border-radius: 0;
    overflow: visible;
    position: absolute;
    bottom: 0;
    left: 0;
    border: none;
    box-shadow: none;
    max-width: 450px;
    min-width: 280px;
    background: transparent;
}

.about-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.diagonal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.98) 45%,
        rgba(255, 255, 255, 0.85) 55%,
        rgba(249, 246, 240, 0.95) 65%,
        rgba(249, 246, 240, 1) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.services-wrapper {
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-header .section-title {
    margin-bottom: 1rem;
}

.services-header .section-divider {
    margin: 0 auto 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.services-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    border-right: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    margin: 5px;
}

.service-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-gold);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--white);
    border-color: transparent;
    transform: rotateY(360deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.values-section {
    max-width: var(--max-width);
    margin: 6rem auto 0;
    padding: 4rem 5%;
    background: var(--beige-light);
    border-radius: 15px;
}

.values-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.value-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ========== NEW SERVICES ZIGZAG DESIGN ========== */
.services-zigzag {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.services-zigzag::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--primary-gold) 20%, 
        var(--primary-gold) 80%, 
        transparent 100%);
    transform: translateX(-50%);
}

.zigzag-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.zigzag-left {
    flex-direction: row;
    padding-right: 50%;
}

.zigzag-right {
    flex-direction: row-reverse;
    padding-left: 50%;
}

.zigzag-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 300;
    color: var(--beige-cream);
    line-height: 1;
    flex-shrink: 0;
}

.zigzag-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.zigzag-item:hover .zigzag-icon {
    transform: scale(1.1) rotate(360deg);
}

.zigzag-content {
    flex: 1;
}

.zigzag-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.zigzag-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Values Organic Bubbles */
.values-organic {
    max-width: 1200px;
    margin: 6rem auto 0;
    padding: 0 5%;
}

.values-organic .values-title {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-bubble {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--beige-light) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.value-bubble:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.15);
}

.value-bubble:hover::before {
    opacity: 1;
}

.bubble-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.value-bubble:hover .bubble-icon {
    transform: scale(1.1) rotateY(180deg);
}

.value-bubble h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.value-bubble p {
    color: var(--text-medium);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .services-zigzag::before {
        display: none;
    }
    
    .zigzag-left,
    .zigzag-right {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }
    
    .zigzag-number {
        font-size: 4rem;
    }
    
    .zigzag-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}



.why-partner-section {
    padding: 7rem 5%;
    background: #0d0a08;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background grain */
.why-partner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212,175,55,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,175,55,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.wp-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.wp-header {
    text-align: center;
    margin-bottom: 5rem;
}

.wp-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 1.2rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50px;
}

.wp-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.wp-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #C9A961);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.wp-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* 2-column grid */
.wp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Card base */
.wp-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    /* Entry animation handled by AOS + CSS */
    will-change: transform;
}

/* Image wrapper */
.wp-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.wp-card:hover .wp-img-wrap img {
    transform: scale(1.1);
}

/* Shimmer sweep on hover */
.wp-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255,255,255,0.08) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0s;
}

.wp-card:hover .wp-shimmer {
    transform: translateX(200%);
    transition: transform 0.8s ease;
}

/* Gradient overlay — always present, intensifies on hover */
.wp-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    background: linear-gradient(
        to top,
        rgba(5,3,2,0.97) 0%,
        rgba(5,3,2,0.75) 45%,
        rgba(5,3,2,0.25) 70%,
        transparent 100%
    );
    transition: background 0.5s ease;
}

.wp-card:hover .wp-overlay {
    background: linear-gradient(
        to top,
        rgba(5,3,2,0.98) 0%,
        rgba(5,3,2,0.85) 50%,
        rgba(5,3,2,0.4) 75%,
        rgba(5,3,2,0.1) 100%
    );
}

/* Number watermark */
.wp-num {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(212,175,55,0.18);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    transition: color 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    user-select: none;
}

.wp-card:hover .wp-num {
    color: rgba(212,175,55,0.35);
    transform: scale(1.05) translateY(-4px);
}

/* Content area */
.wp-content {
    position: relative;
    z-index: 2;
}

.wp-card-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.wp-card:hover .wp-card-title {
    color: #D4AF37;
}

/* Description — hidden by default, slides up on hover */
.wp-card-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: max-height 0.5s ease, opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.wp-card:hover .wp-card-desc {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
}

/* List — hidden by default, slides up on hover */
.wp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.55s ease 0.05s, opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.wp-card:hover .wp-list {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.wp-list li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.wp-list i {
    color: #D4AF37;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* CTA button */
.wp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37, #C9A961);
    color: #0d0a08;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s, box-shadow 0.3s ease, background 0.3s ease;
}

.wp-card:hover .wp-btn {
    opacity: 1;
    transform: translateY(0);
}

.wp-btn:hover {
    box-shadow: 0 8px 25px rgba(212,175,55,0.45);
    background: linear-gradient(135deg, #e5c84a, #D4AF37);
}

.wp-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.wp-btn:hover i {
    transform: translateX(4px);
}

/* Gold accent line on hover */
.wp-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #C9A961, #D4AF37);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wp-card:hover::after {
    transform: scaleX(1);
}

/* Mobile */
@media (max-width: 768px) {
    .wp-grid {
        grid-template-columns: 1fr;
    }
    .wp-card {
        aspect-ratio: 3 / 2;
    }
    .wp-card-desc,
    .wp-list,
    .wp-btn {
        max-height: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .wp-overlay {
        background: linear-gradient(to top, rgba(5,3,2,0.95) 0%, rgba(5,3,2,0.75) 50%, rgba(5,3,2,0.2) 100%);
    }
}

/* ========== TEAM WHATSAPP BUTTONS (HIDE NUMBERS) ========== */
.team-connect a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.team-connect a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.team-connect a i {
    font-size: 1.2rem;
}/* ══════════════════════════════════════════════════════
   INDEX HERO — Full-bleed cinematic with bottom dock
   ══════════════════════════════════════════════════════ */

.idx-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: #060402;
}

/* ── Background slides ── */
.idx-bg { position: absolute; inset: 0; z-index: 0; }
.idx-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s cubic-bezier(.4,0,.2,1);
    transform: scale(1.06);
}
.idx-slide.active {
    opacity: 1;
    animation: idx-ken 16s ease-in-out infinite alternate;
}
@keyframes idx-ken {
    0%   { transform: scale(1.06) translate(0,0); }
    100% { transform: scale(1.13) translate(-1.5%,-1%); }
}

/* Multi-layered overlay: darker at top+bottom, transparent in middle */
.idx-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(6,4,2,0.85) 0%,
            rgba(6,4,2,0.20) 35%,
            rgba(6,4,2,0.20) 60%,
            rgba(6,4,2,0.95) 100%
        );
}

/* Film grain */
.idx-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ── Top ticker ── */
.idx-ticker {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 5%;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    opacity: 0;
    animation: idx-fade 0.8s ease 0.2s forwards;
}
.idx-ticker-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #C9A961;
    box-shadow: 0 0 12px rgba(201,169,97,0.9);
    animation: idx-pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes idx-pulse {
    0%,100% { box-shadow: 0 0 6px rgba(201,169,97,0.7); }
    50%      { box-shadow: 0 0 20px rgba(201,169,97,1); }
}
.idx-sep { color: rgba(201,169,97,0.4); }

/* ── Centre content ── */
.idx-centre {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

/* Eyebrow */
.idx-eyebrow {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: idx-fade 0.9s ease 0.3s forwards;
}
.idx-ey-line {
    height: 1px;
    width: 50px;
    background: linear-gradient(90deg, transparent, rgba(201,169,97,0.6));
    flex-shrink: 0;
}
.idx-ey-line:last-child {
    background: linear-gradient(90deg, rgba(201,169,97,0.6), transparent);
}
.idx-eyebrow span {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(201,169,97,0.85);
    white-space: nowrap;
}

/* Headline — word by word clip reveal */
.idx-headline {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: clamp(3.8rem, 9vw, 9rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    display: block;
}

.idx-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    color: #fff;
    font-weight: 900;
    opacity: 0;
    transform: translateY(110%);
    animation: idx-word-up 1s cubic-bezier(0.22,1,0.36,1) calc(0.4s + var(--wi)*0.1s) forwards;
}
@keyframes idx-word-up {
    to { opacity: 1; transform: translateY(0); }
}

/* Outline text effect */
.idx-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.6);
    font-style: italic;
    font-weight: 400;
}

/* Gold filled + glow */
.idx-gold {
    color: #C9A961;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 0 60px rgba(201,169,97,0.5), 0 0 120px rgba(201,169,97,0.2);
}

/* Subline */
.idx-sub {
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: idx-fade 1s ease 1.1s forwards;
}

/* CTAs */
.idx-ctas {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: idx-fade 1s ease 1.3s forwards;
}
.idx-btn {
    padding: 0.9rem 2.4rem;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.idx-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.idx-btn:hover::after { left: 150%; }
.idx-btn-gold {
    background: linear-gradient(135deg, #C9A961, #8B6430);
    color: #0d0a06;
}
.idx-btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(201,169,97,0.45); }
.idx-btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #fff;
}
.idx-btn-ghost:hover { border-color: #C9A961; color: #C9A961; transform: translateY(-3px); }
.idx-btn i { transition: transform 0.3s; font-size: 0.78rem; }
.idx-btn:hover i { transform: translateX(4px); }

/* ── Bottom dock ── */
.idx-bottom {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 5% 2.5rem;
    gap: 2rem;
}

/* Property strip — horizontal cards */
.idx-prop-strip {
    display: flex;
    gap: 0;
    opacity: 0;
    animation: idx-up 1s ease 1.5s forwards;
}
.idx-prop {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(10,7,4,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201,169,97,0.12);
    border-right: none;
    text-decoration: none;
    transition: all 0.35s ease;
    cursor: pointer;
    opacity: 0;
    animation: idx-up 0.8s cubic-bezier(0.22,1,0.36,1) calc(1.6s + var(--pi)*0.12s) forwards;
}
.idx-prop:first-child { border-radius: 8px 0 0 8px; }
.idx-prop:last-child  { border-right: 1px solid rgba(201,169,97,0.12); border-radius: 0 8px 8px 0; }
.idx-prop::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: #C9A961;
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.idx-prop { position: relative; }
.idx-prop:hover { background: rgba(201,169,97,0.12); }
.idx-prop:hover::before { transform: scaleX(1); }

.idx-prop-img {
    width: 48px; height: 40px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}
.idx-prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.idx-prop:hover .idx-prop-img img { transform: scale(1.15); }

.idx-prop-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.idx-prop-loc {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C9A961;
}
.idx-prop-loc i { font-size: 0.55rem; margin-right: 0.2rem; }
.idx-prop-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}
.idx-prop-arrow {
    color: rgba(201,169,97,0.4);
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: all 0.3s;
}
.idx-prop:hover .idx-prop-arrow { color: #C9A961; transform: translateX(3px); }

/* Slide controls + scroll cue */
.idx-slide-ctrl {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.2rem;
    opacity: 0;
    animation: idx-fade 1s ease 1.8s forwards;
}
.idx-dots { display: flex; gap: 0.5rem; }
.idx-dot {
    width: 22px; height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.4s;
}
.idx-dot.active { background: #C9A961; width: 38px; }

.idx-scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.idx-mouse {
    width: 22px; height: 36px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.idx-wheel {
    width: 3px; height: 8px;
    background: #C9A961;
    border-radius: 2px;
    animation: idx-wheel 1.8s ease-in-out infinite;
}
@keyframes idx-wheel {
    0%   { transform: translateY(0); opacity: 1; }
    80%  { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}
.idx-scroll-cue span {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ── Keyframes ── */
@keyframes idx-fade { from{opacity:0;} to{opacity:1;} }
@keyframes idx-up { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }

/* ── Mobile ── */
@media (max-width: 768px) {
    .idx-headline { font-size: clamp(3rem, 12vw, 5rem); line-height: 1; }
    .idx-prop-strip { overflow-x: auto; gap: 0; }
    .idx-prop { min-width: 160px; }
    .idx-bottom { flex-direction: column; align-items: flex-start; padding-bottom: 2rem; }
    .idx-slide-ctrl { flex-direction: row; align-items: center; }
    .idx-eyebrow span { font-size: 0.55rem; letter-spacing: 0.15em; }
}


