:root {
    /* Colors */
    --primary-color: #0f172a;
    --accent-color: #dc2626;
    --accent-hover: #b91c1c;
    --secondary-color: #f8fafc;
    --text-color: #1e293b;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --header-height: 80px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
}

/* Base Reset & Typography */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-accent {
    color: var(--accent-color);
}

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(245, 124, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 124, 0, 0.4);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.header-phone {
    font-weight: 700;
    color: var(--primary-color);
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    background-color: var(--primary-color);
    color: var(--white);
    min-height: 90vh;
    /* changed from 100vh for better mobile flow but close */
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
}

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

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.85rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
    justify-content: center;
}

.hero-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Page Header (Subpages) */
.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Inquiry Box */
.hero-form-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-form-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

/* Sections General */
.section {
    padding: 4rem 0;
}

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

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

.text-white {
    color: var(--white);
}

/* Advantages Section */
.advantages {
    background-color: var(--secondary-color);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.advantage-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
    padding: 2rem 0;
    gap: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 3.5rem;
    /* Adjust based on circle size */
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--light-gray);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    flex: 1;
    background: transparent;
    padding: 1rem;
}

/* Tiny hack to cover line if needed, but transparent looks ok if line is behind */
.timeline-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-light);
}

/* Footer Redesign */
.footer {
    background-color: #050a10;
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   MOBILE NAV – Premium Drawer
   ============================================ */

/* Hamburger Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(15, 23, 42, 0.06);
}

.mobile-menu-btn .bar {
    width: 26px;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
    display: block;
}

/* Animate hamburger → X */
.mobile-menu-btn.is-active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.is-active .bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.mobile-menu-btn.is-active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    visibility: hidden;
}

.mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* Drawer Panel */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    height: 100vh;
    background: #080f19;
    border-left: 1px solid rgba(245, 124, 0, 0.25);
    z-index: 2100;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav-drawer.is-open {
    transform: translateX(0);
}

/* Drawer Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.mobile-nav-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.mobile-nav-logo span {
    color: var(--accent-color);
}

.mobile-nav-close {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.mobile-nav-close:hover {
    background: rgba(245, 124, 0, 0.2);
    border-color: var(--accent-color);
}

/* Nav Links inside Drawer */
.mobile-nav-links {
    list-style: none;
    padding: 1.5rem 0;
    flex: 1;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-nav-drawer.is-open .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.mobile-nav-drawer.is-open .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.10s;
}

.mobile-nav-drawer.is-open .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.16s;
}

.mobile-nav-drawer.is-open .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.22s;
}

.mobile-nav-drawer.is-open .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.28s;
}

.mobile-nav-drawer.is-open .mobile-nav-links li:nth-child(5) {
    transition-delay: 0.34s;
}

.mobile-nav-drawer.is-open .mobile-nav-links li:nth-child(6) {
    transition-delay: 0.40s;
}

.mobile-nav-drawer.is-open .mobile-nav-links li:nth-child(7) {
    transition-delay: 0.46s;
}

.mobile-nav-drawer.is-open .mobile-nav-links li:nth-child(8) {
    transition-delay: 0.52s;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
    letter-spacing: 0.01em;
}

.mobile-nav-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-nav-links a:hover {
    color: var(--white);
    background: rgba(245, 124, 0, 0.08);
    padding-left: 2.25rem;
}

.mobile-nav-links a:hover::before {
    opacity: 1;
}

/* Phone CTA inside drawer */
.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.25rem 1.5rem 2rem;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(245, 124, 0, 0.35);
    flex-shrink: 0;
}

.mobile-nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Keep old overlay class for backward compat (hidden) */
.mobile-menu-overlay {
    display: none !important;
}

/* Sticky Mobile CTA */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 5%;
    width: 90%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 50px;
    z-index: 2000;
    justify-content: space-between;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    color: white;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.2s ease;
}

.sticky-cta-btn:active {
    transform: scale(0.95);
}

.cta-phone {
    background: var(--accent-color);
}

.cta-request {
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive Updates */
@media (max-width: 992px) {
    .header-container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav-backdrop {
        display: block;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* General layout */
    .hero-content {
        gap: 1.5rem;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-features span {
        font-size: 0.9rem;
        padding: 0.4rem 0.75rem;
    }

    .header-phone {
        display: none;
    }

    /* Grid resets */
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Timeline vertical */
    .timeline {
        flex-direction: column;
        gap: 0;
    }

    .timeline::before {
        left: 1.5rem;
        width: 2px;
        height: 100%;
        top: 0;
    }

    .timeline-item {
        text-align: left;
        padding-left: 4rem;
        padding-bottom: 2rem;
    }

    .step-number {
        position: absolute;
        left: 0;
        top: 0;
    }

    /* Services 1 col */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Sticky bar */
    .sticky-cta-bar {
        display: flex;
    }

    .footer {
        padding-bottom: 6rem;
    }

    /* ---- Form: force single column on mobile ---- */
    .form-row.grid-2-form,
    .grid-2-form {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* ---- Comparison table: compact on mobile ---- */
    .comparison-table {
        grid-template-columns: 1fr 1fr !important;
        font-size: 0.82rem;
    }

    .comp-head.feature,
    .comp-cell.feature-name {
        display: none;
    }

    /* ---- Section padding ---- */
    .section {
        padding: 2.5rem 0;
    }

    /* ---- Stats bar ---- */
    .stats-bar {
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .stats-number {
        font-size: 1.4rem;
    }

    /* ---- Premium cards ---- */
    .interactive-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .premium-card {
        padding: 1.75rem 1.25rem;
    }

    /* ---- Footer ---- */
    .footer {
        padding-top: 3rem;
    }

    /* ---- Hero heading size ---- */
    .hero-text h1 {
        font-size: 2rem;
    }

    /* ---- Page header ---- */
    .page-header h1 {
        font-size: 1.75rem;
    }

    /* ---- Hero form box ---- */
    .hero-form-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
}

/* --- Premium UI Enhancements --- */

/* Glassmorphism Utilities */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

/* Statistics Bar */
.stats-bar-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 100;
}

.stats-bar {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stats-item {
    flex: 1;
    min-width: 150px;
}

.stats-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.stats-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Comparison Table */
.comparison-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.comp-head {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 1rem;
    font-weight: 700;
    text-align: center;
}

.comp-cell {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    font-size: 0.95rem;
}

.comp-cell.feature-name {
    justify-content: flex-start;
    font-weight: 600;
    background: var(--secondary-color);
    padding-left: 1.5rem;
}

.comp-cell.pro {
    color: #2e7d32;
    font-weight: 700;
}

.comp-cell.con {
    color: #c62828;
    opacity: 0.6;
}

/* Interactive Cards */
.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.premium-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

/* Glassmorphic FAQ */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Sticky Mobile CTA */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 5%;
    width: 90%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px;
    border-radius: 50px;
    z-index: 9999 !important;
    /* Extremely high z-index to stay on top */
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-cta-btn {
    flex: 1;
    padding: 14px 10px;
    text-align: center;
    color: white;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.sticky-cta-btn span {
    font-size: 1.2rem;
}

.sticky-cta-btn:active {
    transform: scale(0.95);
}

.cta-phone {
    background: var(--accent-color);
}

.cta-whatsapp {
    background: #25D366;
    position: relative;
    overflow: hidden;
}

.cta-whatsapp:hover {
    background: #1ebe5b;
}

.cta-whatsapp svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .stats-bar-wrapper {
        margin-top: -30px;
    }

    .grid-2-form {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    background: var(--secondary-color);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-top: var(--header-height);
    /* Ensure it starts below the fixed header */
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    /* Using a more elegant chevron */
    padding: 0 12px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--text-light);
    pointer-events: none;
}

@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0.5rem 0;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }
}
/* Premium Highlight Box */
.highlight-box {
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(5, 10, 16, 0.98) 100%);
    padding: 30px; 
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--accent-color);
}

.highlight-box h3, .highlight-box h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.85);
}

.highlight-box strong {
    color: #fff;
}
