:root {
    /* Primary & Accent colors will be dynamically injected by JS */
    --primary-color: #0b3d91;
    --accent-color: #f29c38;

    /* High-End Premium palette */
    --surface-color: #ffffff;
    --surface-light: #f1f5f9;
    /* Deeper slate-light for contrast */
    --text-main: #0f172a;
    /* Deeper slate for ultimate readability */
    --text-muted: #64748b;
    --border-color: rgba(15, 23, 42, 0.06);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);

    /* Premium Soft Shadows */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 25px 30px -5px rgba(15, 23, 42, 0.08), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 40px 50px -10px rgba(15, 23, 42, 0.1), 0 20px 25px -15px rgba(15, 23, 42, 0.05);
    --shadow-glow: 0 0 35px rgba(242, 156, 56, 0.35);

    /* Typography & Spacing */
    --font-main: 'Inter', system-ui, sans-serif;
    --radius-md: 16px;
    /* softer edges */
    --radius-lg: 32px;
    /* much softer edges for premium feel */
    --radius-full: 9999px;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll Progress Indicator */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* Very thin, elegant bar */
    background: transparent;
    z-index: 10001;
    /* Above navbar */
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    /* Vibrant accent color */
    width: 0%;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(242, 156, 56, 0.5);
    /* Glowing tip */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.8;
    /* More breathing room in text */
    background-color: #f8fafc;
    /* Elegant off-white slate */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    /* Slightly wider container for premium feel */
    margin: 0 auto;
    padding: 0 40px;
}

.bg-light {
    background-color: var(--surface-light);
}

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

/* Animations Trigger Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Typography elements */
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(11, 61, 145, 0.05);
    /* Softer */
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    /* Slightly larger */
    font-weight: 700;
    letter-spacing: 1.5px;
    /* More elegant spacing */
    margin-bottom: 2rem;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(11, 61, 145, 0.08);
    /* Fainter border */
    transition: var(--transition);
    cursor: default;
}

.section-badge:hover {
    transform: translateY(-2px);
    background: rgba(11, 61, 145, 0.08);
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.1);
}

.section-title {
    font-size: 3.5rem;
    /* Larger, more authoritative headers */
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    /* Tighter letter spacing for modern look */
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.section-title span::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: textShine 4s infinite linear 1s;
}

@keyframes textShine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    /* shine quickly then wait */
    100% {
        left: 200%;
    }
}

.section-subtitle {
    font-size: 1.35rem;
    /* Slightly larger subtitles */
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 4rem auto;
    font-weight: 300;
    /* Lighter weight for elegance */
    line-height: 1.8;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    /* Extra breathing room */
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    /* Let clicks pass through */
}

.btn:hover::after {
    left: 120%;
    /* Shine effect moving across the button */
}

.btn-large {
    padding: 20px 40px;
    /* High end sizing */
    font-size: 1.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    /* More floaty feel */
    box-shadow: var(--shadow-xl), 0 0 40px rgba(242, 156, 56, 0.5);
    /* Glowing shadow */
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background-color: var(--surface-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 61, 145, 0.2);
}

/* Glassmorphism Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    /* More transparent for better glass effect */
    backdrop-filter: blur(24px);
    /* Heavier blur */
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    /* subtle white edge */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    /* Extremely soft shadow */
    z-index: 1000;
    height: 80px;
    /* Reduced by 20% from 100px */
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar.scrolled {
    height: 64px;
    /* Reduced by 20% from 80px */
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

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

.logo-img {
    height: 68px;
    /* Increased size */
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 48px;
    /* Increased size */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.lang-btn {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--text-main);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
}

/* Sections */
section {
    padding: 160px 0;
    /* Huge breathing room */
    position: relative;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 0;
    /* Cover entire screen */
    padding-top: 90px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Slight parallax */
    z-index: -2;
}

.hero-bg.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Desktop Hero Images */
.hero-bg-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('static/images/banner/BannerEstimados.png');
}

.hero-bg-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('static/images/banner/BannerRedes.png');
}

.hero-bg-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('static/images/banner/BannerWeb.png');
}

.hero-bg.slide.active {
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    display: none;
    /* Hidden by default */
}

.hero-content.active {
    display: block;
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 48px;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Wider gap */
    margin-top: 80px;
}

.about-card {
    background: var(--surface-color);
    padding: 50px 40px;
    /* More padding inside the card */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
    /* Faux glass border */
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    /* Slightly thicker */
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: inline-block;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
    font-weight: 700;
}

.about-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Services V2 Card Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    /* More space before grid */
}

.service-v2-card {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
    /* Faux glass border */
    display: flex;
    flex-direction: column;
}

.service-v2-card:hover {
    transform: translateY(-12px);
    /* Higher lift */
    box-shadow: var(--shadow-xl);
}

.service-img {
    height: 280px;
    /* Taller imagery for premium feel */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    opacity: 0.85;
    /* Starting slightly more opaque */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.service-v2-card:hover .service-img {
    transform: scale(1.08);
    /* Slower, elegant zoom */
    opacity: 1;
}

.service-info {
    padding: 40px 32px;
    /* More breathing room */
    background: var(--surface-color);
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.service-info h3 {
    color: var(--text-main);
    margin-bottom: 16px;
    font-size: 1.5rem;
    /* Larger */
    font-weight: 800;
    letter-spacing: -0.01em;
}

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

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-images {
    flex: 1;
    position: relative;
    height: 600px;
}

.split-img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    object-fit: cover;
}

.img-back {
    width: 80%;
    right: 0;
    top: 0;
    height: 80%;
    filter: brightness(0.8);
}

.img-front {
    width: 65%;
    left: 0;
    bottom: 0;
    height: 65%;
    border: 8px solid var(--surface-color);
}

.split-images:hover .img-front {
    transform: translateY(-15px) scale(1.02);
}

.split-images:hover .img-back {
    transform: translateY(15px) scale(1.02);
    filter: brightness(1);
}

.feature-list li {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--surface-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-list li:hover {
    transform: translateX(10px);
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
}

.feature-list i {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.feature-list h4 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-list p {
    color: var(--text-muted);
}

/* Stats Box */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Wider gap */
}

.stat-box {
    background: var(--surface-color);
    padding: 60px 40px;
    /* More padding */
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    /* Softer initial shadow */
    border: 1px solid rgba(255, 255, 255, 0.8);
    /* Faux glass border */
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 61, 145, 0.1);
}

.stat-box i {
    font-size: 4rem;
    /* Larger icon */
    color: var(--primary-color);
    margin-bottom: 24px;
    display: inline-block;
}

.stat-box h4 {
    color: var(--text-main);
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Community Banner */
.community-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.community-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.community-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.community-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.community-text p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.community-icon {
    position: absolute;
    right: 40px;
    bottom: -20px;
    font-size: 18rem;
    opacity: 0.15;
    z-index: 1;
    color: white;
    transform: rotate(-15deg);
}

/* Contact Card */
.contact-card {
    display: flex;
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-info-col {
    flex: 1;
    background: var(--gradient-primary);
    color: white;
    padding: 60px;
    position: relative;
}

.contact-info-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.contact-info-col h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.contact-info-col p {
    margin-bottom: 48px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.contact-details li {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: center;
}

.contact-details i {
    font-size: 1.8rem;
    color: var(--accent-color);
    width: 40px;
    text-align: center;
}

.contact-details strong {
    font-size: 1.1rem;
}

.contact-details a,
.contact-details span {
    opacity: 0.9;
    transition: var(--transition);
    font-size: 1.05rem;
}

.contact-details a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.contact-form-col {
    flex: 1.2;
    padding: 60px;
    background: var(--surface-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1.05rem;
    transition: var(--transition);
    background: var(--surface-light);
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--surface-color);
    box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.1);
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 80px 0 30px;
}

.footer-brand {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.copyright {
    color: #64748b;
    font-size: 0.95rem;
    border-top: 1px solid #1e293b;
    padding-top: 30px;
}

/* Floating Actions */
.fab-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.fab-whatsapp:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* --- NEW SECTIONS: Fleet, Testimonials, FAQ & Areas --- */

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.fleet-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.fleet-img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover .fleet-img {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.quote {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.author {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

/* FAQ & Areas Section */
.faq-area-section .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.accordion {
    margin-top: 30px;
}

.accordion-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #f8fafc;
}

.accordion-content p {
    padding: 20px 25px;
    color: var(--text-muted);
    margin: 0;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.areas-box {
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    height: 100%;
    border: 1px solid var(--border-color);
}

.areas-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.areas-box h3 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.areas-list {
    list-style: none;
    margin-top: 25px;
}

.areas-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.areas-list li i {
    color: var(--secondary-color);
}