@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&family=Noto+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Fonts */
    --font-sans: 'Figtree', 'Noto Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Noto Sans', sans-serif;
    
    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;
    --header-height-scrolled: 70px;
    
    /* Border Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);

    /* Light Theme (Default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    --primary: #0284c7;        /* Sky-600 */
    --primary-hover: #0369a1;  /* Sky-700 */
    --primary-light: #e0f2fe;  /* Sky-100 */
    --primary-contrast: #0369a1;
    
    --secondary: #0d9488;      /* Teal-600 */
    --secondary-hover: #0f766e;/* Teal-700 */
    --secondary-light: #ccfbf1;/* Teal-100 */
    
    --success: #10b981;        /* Emerald-500 */
    --success-light: #d1fae5;
    
    --cta: #f97316;            /* Orange-500 */
    --cta-hover: #ea580c;      /* Orange-600 */
    --cta-light: #ffedd5;
    
    --border-color: #e2e8f0;   /* Slate-200 */
    --border-hover: #cbd5e1;   /* Slate-300 */
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(2, 132, 199, 0.05), 0 8px 10px -6px rgba(2, 132, 199, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.02);
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(241, 245, 249, 0.6);
    --glass-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
    
    --focus-ring: 0 0 0 3px rgba(2, 132, 199, 0.4);
}

/* Dark Theme */
body.dark-theme {
    --bg-primary: #090d16;
    --bg-secondary: #0f172a;
    --bg-tertiary: #1e293b;
    --bg-card: #0f172a;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --primary: #38bdf8;        /* Sky-400 */
    --primary-hover: #7dd3fc;  /* Sky-300 */
    --primary-light: rgba(56, 189, 248, 0.12);
    --primary-contrast: #38bdf8;
    
    --secondary: #2dd4bf;      /* Teal-400 */
    --secondary-hover: #5eead4;/* Teal-300 */
    --secondary-light: rgba(45, 212, 191, 0.12);
    
    --cta: #fb923c;            /* Orange-400 */
    --cta-hover: #fdba74;      /* Orange-300 */
    --cta-light: rgba(251, 146, 60, 0.12);
    
    --border-color: #1e293b;   /* Slate-800 */
    --border-hover: #334155;   /* Slate-700 */
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
    
    --glass-bg: rgba(9, 13, 22, 0.85);
    --glass-border: rgba(30, 41, 59, 0.5);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    
    --focus-ring: 0 0 0 3px rgba(56, 189, 248, 0.5);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -80px;
    left: 20px;
    background: var(--primary);
    color: var(--text-white);
    padding: 10px 20px;
    z-index: 2000;
    border-radius: var(--radius-xs);
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 20px;
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Keyboard Focus Outline */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring) !important;
}

/* Common Selections */
::selection {
    background-color: var(--primary);
    color: var(--text-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Typography styles */
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.section-title em {
    font-style: normal;
    color: var(--primary);
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto 60px;
}
.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

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

.section {
    padding: clamp(60px, 9vw, 110px) 0;
}

/* SVG icons styling in CSS */
.icon-svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: inline-block;
    vertical-align: middle;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.93rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    background-color: var(--bg-secondary);
}
.btn-cta {
    background: var(--cta);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
}
.btn-cta:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-normal);
}
header.scrolled {
    padding: 12px 0;
    background-color: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-sans);
    letter-spacing: -0.03em;
}
.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.logo span {
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}
.nav-link:hover {
    color: var(--primary);
}
.nav-link:hover::after {
    width: 100%;
}

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

/* Theme Toggle Button */
.theme-toggle-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}
.theme-toggle-btn:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
}
.theme-toggle-btn .sun-icon {
    display: none;
}
body.dark-theme .theme-toggle-btn .moon-icon {
    display: none;
}
body.dark-theme .theme-toggle-btn .sun-icon {
    display: block;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}
.hamburger span {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
    transform-origin: left center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    background: radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 90% 80%, rgba(13, 148, 136, 0.03) 0%, transparent 60%);
    background-color: var(--bg-primary);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    border: 1px solid rgba(2, 132, 199, 0.15);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-contrast);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual / Image Frame */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 440px;
    transform: perspective(1000px) rotateY(-4deg) rotateX(4deg);
    transition: var(--transition-slow);
}
.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.image-wrapper:hover img {
    scale: 1.05;
}

/* Floating Badges */
.floating-card {
    position: absolute;
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}
.floating-card-1 {
    bottom: 30px;
    left: -20px;
}
.floating-card-2 {
    top: 50px;
    right: -20px;
    animation-delay: -3s;
}
.floating-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary-contrast);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floating-card-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
}
.floating-card-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.stat-box {
    padding: 36px 20px;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: var(--transition-normal);
}
.stat-box:last-child {
    border-right: none;
}
.stat-box:hover {
    background-color: var(--bg-secondary);
}
.stat-num {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.stat-desc {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ==========================================================================
   PRATICIENS / TEAM
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.team-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}
.team-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    border: 6px solid var(--bg-card);
    box-shadow: var(--shadow-md);
}
.team-card-avatar svg {
    width: 60px;
    height: 60px;
}
.team-card-content {
    padding: 30px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.team-card-specialty {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    margin-bottom: 8px;
}
.team-card-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.team-card-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}
.team-card-meta {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.team-card-rpps {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: monospace;
}
.team-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   SERVICES SECTION (with filters)
   ========================================================================== */
#services {
    background-color: var(--bg-secondary);
}
.services-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
}
.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-contrast);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon-box svg {
    width: 30px;
    height: 30px;
}
.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
}
.service-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.service-card-price {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   E-E-A-T TRUST / CERTIFICATIONS
   ========================================================================== */
.trust-section {
    border-bottom: 1px solid var(--border-color);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.trust-card {
    text-align: center;
    padding: 24px;
}
.trust-icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--secondary-light);
    color: var(--secondary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.trust-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   TESTIMONIALS (CAROUSEL)
   ========================================================================== */
#testimonials {
    background-color: var(--bg-secondary);
}
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--primary-light);
    line-height: 1;
    position: absolute;
    top: 24px;
    left: 48px;
    font-family: serif;
    pointer-events: none;
}
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    color: #fbbf24; /* Star gold */
}
.testimonial-text {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 28px;
}
.testimonial-author-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.testimonial-author-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}
.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}
.testimonial-nav-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}
.faq-item:hover {
    border-color: var(--primary-light);
}
.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}
.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-right: 20px;
}
.faq-icon-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-content {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

/* Active FAQ Item state */
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.faq-item.active .faq-icon-indicator {
    transform: rotate(180deg);
    background-color: var(--primary);
    color: var(--text-white);
}
.faq-item.active .faq-panel {
    max-height: 500px; /* high enough limit */
}
.faq-item.active .faq-content {
    border-top-color: var(--border-color);
}

/* ==========================================================================
   PRACTICAL INFO
   ========================================================================== */
.practical-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.info-card-icon {
    width: 52px;
    height: 52px;
    background-color: var(--primary-light);
    color: var(--primary-contrast);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    width: 100%;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-tertiary);
    background-image: radial-gradient(var(--border-color) 2px, transparent 2px);
    background-size: 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}
.map-marker {
    width: 60px;
    height: 60px;
    background-color: var(--cta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.2);
    animation: pulse-marker 2s infinite;
}
.map-placeholder h4 {
    margin-bottom: 6px;
}
.map-placeholder p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

@keyframes pulse-marker {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* ==========================================================================
   CONTACT & BOOKING WIZARD
   ========================================================================== */
#contact {
    background-color: var(--bg-secondary);
}
.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.booking-sidebar {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--border-color) 100%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--border-color);
}
body.dark-theme .booking-sidebar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.booking-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.booking-sidebar-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}
.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.step-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.5;
    transition: var(--transition-normal);
}
.step-indicator.active {
    opacity: 1;
}
.step-indicator.completed {
    opacity: 0.8;
}
.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 2px solid var(--text-muted);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}
.step-indicator.active .step-number {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}
.step-indicator.completed .step-number {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--text-white);
}
.step-label {
    font-size: 0.88rem;
    font-weight: 600;
}
.booking-sidebar-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.emergency-call {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
}
.emergency-call-icon {
    width: 36px;
    height: 36px;
    background-color: var(--cta-light);
    color: var(--cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WIZARD FORM */
.booking-form-wrapper {
    padding: 48px;
    display: flex;
    flex-direction: column;
}
.wizard-step {
    display: none;
    animation: fade-in-step 0.3s ease-out forwards;
}
.wizard-step.active {
    display: block;
}
@keyframes fade-in-step {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-title {
    font-size: 1.35rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.form-group-full {
    grid-column: span 2;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.form-control {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: var(--radius-xs);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}
.form-control:focus {
    border-color: var(--primary);
    background-color: var(--bg-primary);
}
select.form-control {
    cursor: pointer;
}
textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Special selections inside wizard */
.card-selectors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.selector-card {
    border: 2px solid var(--border-color);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 12px;
}
.selector-card:hover {
    border-color: var(--border-hover);
}
.selector-card.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary-contrast);
}
.selector-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}
.selector-card-info h5 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.selector-card-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Date and Time slots picker */
.datetime-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-content: start;
}
.time-slot {
    padding: 10px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xs);
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}
.time-slot:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.time-slot.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

/* Review details step */
.review-summary {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}
.review-row span:first-child {
    font-weight: 600;
    color: var(--text-muted);
}
.review-row span:last-child {
    font-weight: 700;
    color: var(--text-primary);
}

/* Booking wizard navigation buttons */
.wizard-nav {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

/* Success Wizard Step */
.success-wizard {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.success-wizard-icon {
    width: 72px;
    height: 72px;
    background-color: var(--success-light);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.15);
}
.success-wizard h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.success-wizard p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 360px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid #1e293b;
    font-size: 0.9rem;
}
body.dark-theme footer {
    background-color: #040812;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}
.footer-logo-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-logo-col .logo {
    color: white;
}
.footer-logo-col p {
    line-height: 1.6;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 40px;
    height: 40px;
    background-color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: var(--transition-normal);
}
.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 24px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-links a {
    color: #94a3b8;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
}
.footer-copy {
    color: #64748b;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        max-width: 440px;
        margin: 0 auto;
    }
    .image-wrapper {
        transform: none;
    }
    .image-wrapper:hover {
        transform: none;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-box {
        border-right: none;
    }
    .stat-box:nth-child(2n+1) {
        border-right: 1px solid var(--border-color);
    }
    .stat-box:nth-child(1), .stat-box:nth-child(2) {
        border-bottom: 1px solid var(--border-color);
    }
    
    .booking-container {
        grid-template-columns: 1fr;
    }
    .booking-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 32px;
    }
    .booking-form-wrapper {
        padding: 32px;
    }
    .booking-steps {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    .step-indicator {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
    .step-label {
        font-size: 0.72rem;
    }
    
    .practical-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 16px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-primary);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1005;
        transition: var(--transition-slow);
        border-left: 1px solid var(--border-color);
    }
    .nav-menu.active {
        right: 0;
    }
    
    /* Hamburger active state transform */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 580px) {
    .booking-steps {
        display: none; /* Hide steps bar on small screens to save space */
    }
    .booking-form-wrapper {
        padding: 24px 16px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .card-selectors {
        grid-template-columns: 1fr;
    }
    .datetime-container {
        grid-template-columns: 1fr;
    }
    .wizard-nav {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .wizard-nav .btn {
        width: 100%;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    .stat-box {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }
    .stat-box:last-child {
        border-bottom: none;
    }
    
    .testimonial-card {
        padding: 32px 16px;
    }
}

/* ==========================================================================
   ACCESSIBILITY & PREFERS REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .floating-card {
        animation: none !important;
    }
}
