/* style.css */
/* -------------------------------------------------------------------------
   LUXURY DENTAL CLINIC STYLE ARCHITECTURE
   Color Palette: Luxury Teal (#0B4F4F), Premium Gold (#C5A059), Warm Ivory (#FDFBF7)
------------------------------------------------------------------------- */

:root {
    --primary-teal: #0B4F4F;
    --primary-teal-hover: #052A2A;
    --premium-gold: #C5A059;
    --premium-gold-hover: #A98440;
    --warm-ivory: #FDFBF7;
    --pure-white: #FFFFFF;
    --charcoal-text: #1E1E1E;
    --light-grey-bg: #F4F2EE;
    --border-color: #E6E1D8;
    --success-green: #25D366;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Architecture Constraints */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--charcoal-text);
    background-color: var(--pure-white);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.strict-max-width {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
}

.bg-ivory {
    background-color: var(--warm-ivory);
}

/* Grids Engine */
.grid {
    display: grid;
    gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.items-center { align-items: center; }
.text-center { text-align: center; }
.justify-center { justify-content: center; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-teal);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

h1 { font-size: 3.8rem; margin-bottom: 24px; }
h2 { font-size: 2.8rem; margin-bottom: 16px; }
h3 { font-size: 1.9rem; margin-bottom: 12px; }
h4 { font-size: 1.35rem; }

p {
    margin-bottom: 16px;
    font-size: 0.98rem;
    color: #444444;
    font-weight: 300;
}

/* ANTI-UNDERLINE GLOBAL RESET CODES */
a, a:hover, a:visited, a:active, a:focus {
    text-decoration: none !important;
    border-bottom: none !important;
    color: inherit;
    outline: none;
}

.logo-text-anchor, .logo-text-anchor:hover, .logo-text-anchor:focus, .logo-text-anchor:active {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-fallback-main {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--primary-teal) !important;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-fallback-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--premium-gold) !important;
    margin-top: 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.p-highlight {
    font-size: 1.2rem;
    color: var(--primary-teal);
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}

.text-gold { color: var(--premium-gold); }
.section-header { margin-bottom: 60px; }
.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--premium-gold);
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.header-line {
    width: 60px;
    height: 2px;
    background-color: var(--premium-gold);
    margin: 20px auto 0 auto;
}
.header-line.left { margin: 18px 0 28px 0; }

/* Buttons & UI Controls */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 32px;
    border-radius: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary { background-color: var(--primary-teal); color: var(--pure-white) !important; }
.btn-primary:hover { background-color: var(--primary-teal-hover); box-shadow: 0 8px 24px rgba(11, 79, 79, 0.15); }
.btn-gold { background-color: var(--premium-gold); color: var(--pure-white) !important; }
.btn-gold:hover { background-color: var(--premium-gold-hover); box-shadow: 0 8px 24px rgba(197, 160, 89, 0.15); }
.btn-outline { background-color: transparent; border-color: var(--primary-teal); color: var(--primary-teal) !important; }
.btn-outline:hover { background-color: var(--primary-teal); color: var(--pure-white) !important; }
.btn-whatsapp { background-color: var(--success-green); color: var(--pure-white) !important; }
.btn-whatsapp:hover { background-color: #20ba5a; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.15); }
.btn-large { padding: 18px 36px; font-size: 0.8rem; width: 100%; }

/* CSS LUXURY IMAGE PLACEHOLDER ARCHITECTURE */
.luxury-image-placeholder {
    position: relative;
    background: linear-gradient(135deg, #091c1c 0%, #030808 100%);
    border: 1px solid var(--premium-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.luxury-image-placeholder.aspect-hero { width: 100%; height: 550px; }
.luxury-image-placeholder.aspect-video { width: 100%; height: 220px; }
.luxury-image-placeholder.aria-aspect-fix { width: 100%; height: 220px; }

.luxury-image-placeholder .placeholder-crest {
    font-size: 2.5rem;
    color: var(--premium-gold);
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 8px;
}

.luxury-image-placeholder .placeholder-crest-light {
    font-size: 1.5rem;
    color: var(--premium-gold);
    opacity: 0.5;
}

/* Centered Gold Icon Visual Accent */
.luxury-image-placeholder .placeholder-icon-visual {
    width: 44px;
    height: 44px;
    border: 1px solid var(--premium-gold);
    transform: rotate(45deg);
    position: relative;
    opacity: 0.65;
}
.luxury-image-placeholder .placeholder-icon-visual::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--premium-gold);
    font-size: 0.9rem;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
    background-color: var(--primary-teal);
    color: var(--warm-ivory);
    font-size: 0.75rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 300;
    letter-spacing: 0.5px;
}
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-info span { margin-right: 28px; }
.top-bar-socials a { color: var(--premium-gold); margin-left: 18px; transition: var(--transition-smooth); }
.top-bar-socials a:hover { color: var(--pure-white); }

/* STICKY HEADER REFINEMENT ALIGNMENT */
.main-header {
    background-color: var(--pure-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
    padding: 16px 0;
    width: 100%;
}

.header-container {
    display: grid;
    grid-template-columns: 0.4fr 1.2fr 0.4fr;
    align-items: center;
}

.header-left { display: flex; align-items: center; justify-content: flex-start; }
.luxury-logo-box-fallback {
    position: relative;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #091212 0%, #020505 100%);
    border: 1px solid var(--premium-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.logo-crest-glyph {
    color: var(--premium-gold);
    font-size: 1.2rem;
}

.header-centre { display: flex; justify-content: center; align-items: center; text-align: center; }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.header-actions { display: flex; gap: 12px; align-items: center; }

/* Menu Burger Toggle Button */
.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-grey-bg);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.menu-toggle:hover { background-color: var(--border-color); }
.menu-toggle-text { font-family: var(--font-body); font-size: 0.7rem; text-transform: uppercase; font-weight: 600; color: var(--primary-teal); letter-spacing: 1.5px; }
.burger-lines { display: flex; flex-direction: column; gap: 4px; }
.burger-lines span { display: block; width: 20px; height: 2px; background-color: var(--primary-teal); transition: var(--transition-smooth); }

/* SLIDE DRAWER NAV OVERLAY */
.nav-overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.nav-overlay-backdrop.active { opacity: 1; pointer-events: auto; }

.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 380px;
    height: 100vh;
    background-color: var(--pure-white);
    box-shadow: -15px 0 50px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.nav-overlay.active { right: 0; }
.nav-overlay-content { padding: 50px 40px; display: flex; flex-direction: column; height: 100%; position: relative; }
.nav-overlay-close { position: absolute; top: 24px; right: 24px; font-size: 2.4rem; background: none; border: none; color: var(--primary-teal); cursor: pointer; line-height: 1; transition: var(--transition-smooth); }
.nav-overlay-close:hover { color: var(--premium-gold); transform: rotate(90deg); }

.nav-brand-box { margin-top: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
.nav-brand-main { font-family: var(--font-heading); font-size: 1.8rem; color: var(--primary-teal); font-weight: 700; letter-spacing: 2px; display: block; }
.nav-brand-sub { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 3px; color: var(--premium-gold); text-transform: uppercase; display: block; }

.nav-links-container { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; overflow-y: auto; padding-right: 10px; }
.overlay-link { font-family: var(--font-heading); font-size: 1.45rem; color: var(--primary-teal); font-weight: 600; transition: var(--transition-smooth); border-bottom: 1px solid rgba(230, 225, 216, 0.5); padding-bottom: 10px; }
.overlay-link:hover { color: var(--premium-gold); padding-left: 10px; }
.overlay-footer { margin-top: auto; font-size: 0.8rem; color: #666; padding-top: 20px; }

/* HERO SETUP */
.hero-section { background-color: var(--warm-ivory); padding: 80px 0; }
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero-tagline { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 4px; color: var(--premium-gold); font-weight: 600; margin-bottom: 8px; display: block; }
.hero-award { font-family: var(--font-heading); font-size: 1.25rem; color: var(--primary-teal); font-style: italic; display: block; margin-bottom: 14px; }
.hero-subtext { font-size: 1.05rem; margin-bottom: 35px; color: #4A4A4A; }
.hero-ctas-group { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 32px; border-top: 1px solid var(--border-color); padding-top: 30px; }
.badge-item { display: flex; flex-direction: column; }
.badge-stars { color: var(--premium-gold); font-size: 1.1rem; margin-bottom: 4px; }
.badge-number { font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary-teal); font-weight: 700; line-height: 1; }
.badge-label { font-size: 0.72rem; text-transform: uppercase; color: #666666; letter-spacing: 1px; }

.hero-image-wrapper { position: relative; border: 1px solid var(--border-color); padding: 14px; background-color: var(--pure-white); width: 100%; }
.image-overlay-card { position: absolute; bottom: -15px; left: -15px; background-color: var(--primary-teal); color: var(--pure-white); padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); z-index: 10; }
.image-overlay-card h4 { color: var(--premium-gold); margin-bottom: 4px; }
.image-overlay-card p { color: var(--pure-white); margin-bottom: 0; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; }

/* LUXURY MARQUEE VELOCITY DRIVEN TIERS */
.universal-marquee-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    display: flex;
}

.universal-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.universal-marquee-viewport:hover .universal-marquee-track {
    animation-play-state: paused;
}

/* High Performance Pipeline Translation Hooks */
#ticker-transformations { animation: continuousMarqueeLinearTrackFlow 45s linear infinite; }
#ticker-experience       { animation: continuousMarqueeLinearTrackFlow 55s linear infinite; }
#ticker-video            { animation: continuousMarqueeLinearTrackFlow 60s linear infinite; }
#ticker-international    { animation: continuousMarqueeLinearTrackFlow 55s linear infinite; }
#ticker-reviews          { animation: continuousMarqueeLinearTrackFlow 70s linear infinite; }

/* Slide Cards Config */
.marquee-slide-card {
    flex-shrink: 0;
    box-sizing: border-box;
    background-color: var(--pure-white);
    border: 1px solid var(--border-color);
    margin-right: 32px;
    padding: 20px;
    transition: border-color 0.3s ease;
}
.marquee-slide-card:hover { border-color: var(--premium-gold); }
.marquee-slide-card.wide-card { width: 580px; }
.marquee-slide-card.square-card { width: 310px; text-align: center; }
.marquee-slide-card.video-card { width: 360px; }

/* REVIEW LAYOUT ARCHITECTURES */
.marquee-slide-card.review-card { 
    width: 440px; 
    background: linear-gradient(180deg, var(--warm-ivory) 0%, var(--pure-white) 100%); 
    display: flex; 
    flex-direction: column; 
    padding: 35px;
    border: 1px solid var(--premium-gold);
    box-shadow: 0 10px 35px rgba(197, 160, 89, 0.04);
}
.review-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; width: 100%; }
.google-badge { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; background-color: #EA4335; color: var(--pure-white); padding: 4px 10px; letter-spacing: 1px; }
.review-stars { color: var(--premium-gold); font-size: 1.15rem; letter-spacing: 2px; }
.review-body { font-style: italic; font-size: 0.92rem; color: #333; margin-bottom: 24px; line-height: 1.7; flex-grow: 1; font-family: var(--font-heading); font-weight: 400; }
.review-meta { margin-top: auto; border-top: 1px solid var(--border-color); padding-top: 14px; }
.r-name { font-weight: 600; font-size: 0.95rem; color: var(--primary-teal); display: block; letter-spacing: 0.5px; }
.r-loc { font-size: 0.75rem; color: #777; display: block; margin-top: 2px; text-transform: uppercase; letter-spacing: 1px; }

.transformation-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.ticker-heading-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 6px;
    font-weight: 600;
}
.ticker-paragraph-text { font-size: 0.85rem; color: #555; margin-bottom: 0; }
.ticker-label { margin-top: 14px; font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary-teal); font-weight: 600; }

/* Testimonials Overlay Controls */
.luxury-play-overlay-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--primary-teal);
    border: 1px solid var(--premium-gold);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding-left: 3px;
    z-index: 6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.marquee-slide-card.video-card:hover .luxury-play-overlay-btn {
    transform: scale(1.1);
    background-color: var(--premium-gold);
}
.video-card-title { font-family: var(--font-heading); font-size: 1.25rem; margin-top: 14px; margin-bottom: 4px; }
.video-card-subtitle { font-size: 0.75rem; text-transform: uppercase; color: var(--premium-gold); letter-spacing: 1px; font-weight: 600; margin-bottom: 0; }

/* GPU accelerated translate matrices loops */
@keyframes continuousMarqueeLinearTrackFlow {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 768px) {
    .marquee-slide-card.wide-card { width: 310px; }
    .transformation-compare-row { grid-template-columns: 1fr; }
    .marquee-slide-card.square-card { width: 250px; }
    .marquee-slide-card.video-card { width: 280px; }
    .marquee-slide-card.review-card { width: 300px; padding: 20px; }
}

/* FEATURE STRIP */
.trust-strip { background-color: var(--primary-teal); color: var(--warm-ivory); padding: 22px 0; }
.trust-strip-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.trust-strip-item span { font-size: 0.78rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; }
.trust-strip-item span::before { content: '✦'; color: var(--premium-gold); margin-right: 8px; }

/* WHY CHOOSE CARDS */
.feature-card { background-color: var(--pure-white); padding: 40px 30px; border: 1px solid var(--border-color); transition: var(--transition-smooth); }
.feature-card:hover { transform: translateY(-8px); border-color: var(--premium-gold); box-shadow: 0 12px 30px rgba(197, 160, 89, 0.08); }
.feature-icon { font-size: 2.4rem; margin-bottom: 20px; }

/* ABOUT ELEMENTS */
.about-image-side { position: relative; padding-right: 30px; }
.experience-badge { position: absolute; right: 0; bottom: 30px; background-color: var(--premium-gold); color: var(--pure-white); padding: 24px; text-align: center; box-shadow: 0 12px 30px rgba(0,0,0,0.08); z-index: 10; }
.experience-badge .years { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; display: block; }
.experience-badge .exp-text { font-size: 0.7rem; text-transform: uppercase; margin-top: 6px; letter-spacing: 2px; display: block; }
.credentials-list { margin: 30px 0; }
.credential-item { font-size: 0.95rem; margin-bottom: 12px; color: var(--charcoal-text); font-weight: 500; }
.vision-mission-box { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-top: 1px solid var(--border-color); padding-top: 30px; margin-top: 30px; }
.vision-mission-box h4 { margin-bottom: 8px; }
.vision-mission-box p { font-size: 0.85rem; margin-bottom: 0; }

/* TREATMENT ITEMS */
.treatment-card { background-color: var(--pure-white); border: 1px solid var(--border-color); transition: var(--transition-smooth); display: flex; flex-direction: column; overflow: hidden; height: 100%; width: 100%; }
.treatment-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.05); border-color: var(--premium-gold); }
.treatment-card .luxury-image-placeholder { border: none; border-bottom: 1px solid var(--border-color); }
.treatment-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.treatment-content h3 { font-size: 1.6rem; margin-bottom: 12px; }
.treatment-content p { font-size: 0.88rem; margin-bottom: 24px; flex-grow: 1; color: #555; }
.treatment-link { color: var(--premium-gold); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-top: auto; display: inline-block; transition: var(--transition-smooth); }
.treatment-link:hover { color: var(--primary-teal); }

/* LEAD ADMISSIONS FORM */
.appointment-form { background-color: var(--pure-white); padding: 50px; border: 1px solid var(--border-color); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: span 2; }
.form-group label { font-size: 0.72rem; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; color: var(--primary-teal); letter-spacing: 1.5px; }
.form-group input, .form-group select, .form-group textarea { padding: 14px 18px; border: 1px solid var(--border-color); font-family: var(--font-body); font-size: 0.85rem; background-color: var(--warm-ivory); outline: none; transition: var(--transition-smooth); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--premium-gold); background-color: var(--pure-white); }
.form-consent { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 30px; }
.form-consent input { margin-top: 4px; accent-color: var(--primary-teal); }
.form-consent label { font-size: 0.78rem; color: #555; line-height: 1.5; }

/* MAP SEGMENT */
.maps-container { display: grid; grid-template-columns: 1.25fr 0.75fr; }
.map-embed-side iframe { display: block; width: 100%; height: 100%; min-height: 480px; }
.map-info-side { background-color: var(--primary-teal); color: var(--pure-white); padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.map-info-side h3 { color: var(--premium-gold); margin-bottom: 20px; font-size: 2rem; }
.map-info-side p { color: var(--warm-ivory); font-size: 0.88rem; margin-bottom: 16px; }
.address-text { font-size: 1.05rem; line-height: 1.6; margin-bottom: 24px !important; }

/* FIXED FOOTER MANAGEMENT CONTROLS */
.main-footer { 
    background-color: #0d1212; 
    color: #999999; 
    padding: 80px 0 0 0; 
    font-size: 0.85rem; 
    width: 100%; 
    border-top: 1px solid rgba(197, 160, 89, 0.2); 
    position: relative; 
    z-index: 10; 
    margin: 0; 
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 50px; gap: 32px; }
.footer-col h4 { color: var(--pure-white); font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; font-weight: 600; }
.footer-col p { color: #999999; font-size: 0.82rem; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #999999; transition: var(--transition-smooth); }
.footer-col ul li a:hover { color: var(--premium-gold); padding-left: 6px; }

.footer-legal-bar { border-top: 1px solid #161c1c; padding: 24px 0 40px 0; }
.legal-box { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }

/* MOBILE STICKY NAVIGATION PLATFORMS */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}
.mobile-action-item { text-align: center; color: var(--pure-white) !important; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; padding: 16px 4px; display: flex; align-items: center; justify-content: center; letter-spacing: 1px; }
.call-bg { background-color: var(--primary-teal); }
.wa-bg { background-color: var(--success-green); }
.book-bg { background-color: var(--premium-gold); }

/* FLOATING BAR (BOTTOM RIGHT) */
.floating-contact-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 990;
}
.floating-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.15); transition: var(--transition-smooth); }
.whatsapp-float { background-color: var(--success-green); }

/* MODALS CONFIGS */
.custom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-modal-backdrop.active { opacity: 1; pointer-events: auto; }
.custom-modal-card { background-color: var(--pure-white); border: 1px solid var(--premium-gold); padding: 40px; max-width: 500px; width: 90%; text-align: center; box-shadow: 0 15px 50px rgba(0,0,0,0.25); transform: translateY(30px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.custom-modal-backdrop.active .custom-modal-card { transform: translateY(0); }
.modal-success-crest { font-size: 2.8rem; color: var(--premium-gold); margin-bottom: 16px; line-height: 1; }

/* RESPONSIVE PACK SYSTEM */
@media (max-width: 1440px) {
    h1 { font-size: 3.4rem; }
    .luxury-image-placeholder.aspect-hero { height: 480px; }
}

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.3rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
    .header-actions { display: none; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-ctas-group { justify-content: center; }
    .hero-badges { justify-content: center; }
    .about-image-side { padding-right: 0; margin-bottom: 30px; }
    .vision-mission-box { grid-template-columns: 1fr; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .appointment-form { padding: 30px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .maps-container { grid-template-columns: 1fr; }
    .mobile-sticky-bar { display: grid; }
    .floating-contact-actions { bottom: 80px; right: 16px; }
    .footer-legal-bar { padding-bottom: 90px; }
}

@media (max-width: 430px) {
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.9rem; }
}