/* =========================================
   LUMINA DENTAL — UAE LANDING PAGE CSS
   Premium Dental Implants | Dubai
   ========================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

/* =========================================
   CSS VARIABLES / DESIGN TOKENS
   ========================================= */
:root {
    --gold: #c9a84c;
    --gold-light: #e8c96b;
    --gold-dark: #a07a30;
    --navy: #0a1628;
    --navy-mid: #0f2040;
    --navy-soft: #162848;
    --blue-accent: #0f4c81;
    --cream: #fdf8f0;
    --cream-dark: #f5ede0;
    --white: #ffffff;
    --text-dark: #0a1628;
    --text-mid: #3d5577;
    --text-light: #6b839b;
    --success: #22c55e;
    --border: rgba(201, 168, 76, 0.2);
    --shadow-sm: 0 4px 20px rgba(10,22,40,0.08);
    --shadow-md: 0 10px 40px rgba(10,22,40,0.12);
    --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-tag.light {
    color: var(--gold-light);
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 16px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.section-desc {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-desc {
    margin: 0 auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 200%;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
    white-space: nowrap;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
    background-position: right center;
}

.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 100px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary-sm:hover { background: var(--gold-light); }

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: var(--transition);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    color: var(--gold);
    font-size: 20px;
    animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    line-height: 1;
}
.logo-sub {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
    margin-top: 3px;
}

.header-nav {
    display: flex;
    gap: 24px;
    margin-left: auto;
}
.header-nav a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}
.header-nav a:hover { color: var(--gold); }

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.phone-link:hover { color: var(--gold); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 12px 24px 20px;
}
.mobile-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: block;
}
.mobile-nav.open { display: flex; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(15,76,129,0.3) 0%, transparent 60%),
        linear-gradient(135deg, #0a1628 0%, #0f2040 50%, #0a1628 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.6s ease both;
}
.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.accent-line {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    animation: fadeInUp 0.6s 0.4s ease both;
}
.hero-desc strong { color: var(--gold-light); }

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s 0.5s ease both;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201,168,76,0.2);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s 0.6s ease both;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
    white-space: nowrap;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.55);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 100px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-hero-secondary:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.1);
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeInUp 0.6s 0.7s ease both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-card-main {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.smile-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.smile-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(201,168,76,0.15) 0%, rgba(15,64,129,0.2) 60%, rgba(10,22,40,0.4) 100%);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 80px rgba(201,168,76,0.1), inset 0 0 60px rgba(201,168,76,0.05);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.smile-inner {
    width: 200px;
    height: 200px;
}

.tooth-svg { width: 100%; height: 100%; }

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius);
    padding: 12px 16px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.floating-badge strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.floating-badge small { display: block; font-size: 11px; color: rgba(255,255,255,0.6); }
.floating-badge .badge-icon { font-size: 22px; }

.badge-1 { top: 20px; right: 0; animation: floatBadge1 5s ease-in-out infinite; }
.badge-2 { bottom: 60px; left: 0; animation: floatBadge2 5.5s ease-in-out infinite; }
.badge-3 { top: 50%; right: -10px; transform: translateY(-50%); animation: floatBadge3 6s ease-in-out infinite; }

@keyframes floatBadge1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatBadge2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes floatBadge3 { 0%, 100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(-6px); } }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: fadeInUp 1s 1s ease both;
}
.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(201,168,76,0.6);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; }
    80% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(0); }
}

/* =========================================
   TRUST BAR SECTION
   ========================================= */
.trust-bar-section {
    background: var(--cream);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 32px 0;
}

.trust-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.5px;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--cream);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.3);
}
.service-card:hover::before { opacity: 1; }

.service-card.featured {
    background: linear-gradient(145deg, var(--navy), var(--navy-mid));
    border-color: rgba(201,168,76,0.3);
    color: var(--white);
}
.service-card.featured::before { opacity: 1; }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.65); }
.service-card.featured .service-price { color: var(--gold-light); }
.service-card.featured .service-features li { color: rgba(255,255,255,0.7); }

.service-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-price {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 16px;
    font-weight: 500;
}
.service-price strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-dark);
}

.service-features {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.service-features li {
    font-size: 13px;
    color: var(--text-mid);
}

.btn-service {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 100px;
    transition: var(--transition);
}
.btn-service:hover { background: var(--gold-light); transform: translateY(-1px); }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-section {
    padding: 100px 0;
    background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-intro {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-point-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.why-point h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-point p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

.stats-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.big-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.big-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.big-plus {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}
.big-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.big-stat .big-num, .big-stat .big-plus {
    display: inline;
}

.award-ribbon {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 500;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
    padding: 100px 0;
    background: var(--navy);
}

.process-section .section-tag { background: rgba(201,168,76,0.1); }
.process-section .section-title { color: var(--white); }
.process-section .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto; }

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.process-step {
    flex: 1;
    max-width: 240px;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: rgba(201,168,76,0.12);
    line-height: 1;
    margin-bottom: 8px;
}

.step-content {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}
.step-content:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}

.step-icon { font-size: 32px; margin-bottom: 12px; display: block; }

.step-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

.process-connector {
    flex-shrink: 0;
    padding: 60px 8px 0;
    display: flex;
    align-items: center;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    padding: 100px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201,168,76,0.3);
}

.testimonial-card.featured-testimonial {
    background: linear-gradient(145deg, var(--navy), var(--navy-soft));
    border-color: rgba(201,168,76,0.3);
    grid-row: span 1;
}
.featured-testimonial .stars { color: var(--gold); }
.featured-testimonial p { color: rgba(255,255,255,0.8); }
.featured-testimonial strong { color: var(--white); }
.featured-testimonial span { color: rgba(255,255,255,0.5); }

.stars {
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}
.testimonial-author span {
    font-size: 12px;
    color: var(--text-light);
}

.review-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius-lg);
}

.review-score {
    display: flex;
    align-items: center;
    gap: 16px;
}
.score-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.score-stars { font-size: 20px; color: var(--gold); }
.score-count { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.faq-header .section-title { color: var(--navy); }
.faq-header p { color: var(--text-mid); font-size: 16px; line-height: 1.6; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(201,168,76,0.12);
}
.faq-item:first-child { border-top: 1px solid rgba(201,168,76,0.12); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question.open { color: var(--gold-dark); }
.faq-question.open .faq-icon { transform: rotate(180deg); color: var(--gold); }

.faq-icon { transition: var(--transition); color: var(--text-light); flex-shrink: 0; }

.faq-answer {
    display: none;
    padding-bottom: 20px;
}
.faq-answer.open { display: block; }
.faq-answer p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* =========================================
   BOOKING SECTION
   ========================================= */
.booking-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
}

.booking-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--blue-accent) 100%);
}

.booking-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.booking-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.booking-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.booking-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 28px;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.benefit {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
}

.booking-contact-alt {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.booking-contact-alt p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-big {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 20px;
    transition: var(--transition);
}
.phone-big:hover { color: var(--white); }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 100px;
    transition: var(--transition);
}
.whatsapp-btn:hover { background: #20bb5a; transform: translateY(-2px); }

/* Booking Form */
.booking-form-card {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.booking-form-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}
.booking-form-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--navy);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-light); }
.form-input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b839b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.btn-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
    margin-top: 4px;
}
.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.form-success {
    text-align: center;
    padding: 20px;
}
.success-icon {
    width: 56px;
    height: 56px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 16px;
}
.form-success h4 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-mid); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 16px 0 24px;
}
.footer-brand .logo { margin-bottom: 0; }

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-social a:hover {
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    border-color: rgba(201,168,76,0.3);
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    line-height: 1.5;
}
.contact-item svg { min-width: 16px; margin-top: 2px; color: var(--gold); }
.contact-item a { color: rgba(255,255,255,0.5); }
.contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}
.wa-tooltip {
    position: absolute;
    right: 72px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-inner { gap: 40px; }
    .why-inner { gap: 48px; }
    .booking-inner { gap: 48px; }
    .process-connector { display: none; }
    .process-steps { flex-wrap: wrap; gap: 24px; justify-content: center; }
    .process-step { max-width: 220px; }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-cta { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero-inner { grid-template-columns: 1fr; padding: 60px 24px 80px; gap: 40px; }
    .hero-visual { order: -1; }
    .smile-circle { width: 220px; height: 220px; }
    .badge-3 { display: none; }
    .badge-1 { top: 0; right: -10px; }
    .badge-2 { bottom: 10px; left: -10px; }
    .hero-stats-row { flex-wrap: wrap; gap: 16px; }

    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .why-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-inner { grid-template-columns: 1fr; gap: 32px; }
    .booking-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .process-steps { flex-direction: column; align-items: center; }

    .stats-grid { gap: 20px; }
    .big-num { font-size: 36px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
    .booking-form-card { padding: 28px 20px; }
    .review-summary { flex-direction: column; text-align: center; }
    .trust-logos { gap: 20px 32px; }
}
