/* ==========================================================================
           🎨 COLOR PALETTE & STYLING VARIABLES (Sophisticated Charcoal, Navy, Slate & White)
           ========================================================================== */
:root {
    --bg-slate: #0b0d13;
    /* Deep Navy Slate (Dark BG) */
    --bg-card-dark: #121622;
    /* Slate Navy Card BG */
    --primary-blue: #0099FF;
    /* Accent Radiant Blue */
    --primary-blue-hover: #0088e6;
    --primary-blue-glow: rgba(0, 153, 255, 0.45);
    --text-white: #ffffff;
    /* Pure Diamond White */
    --text-dark: #111827;
    /* Crisp Charcoal (Light Theme Text) */
    --text-dark-muted: #4b5563;
    /* Cool Gray (Light Theme Muted) */
    --text-light-muted: #94a3b8;
    /* Silver Gray (Dark Theme Muted) */
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: rgba(17, 24, 39, 0.08);
    --font-body: 'Poppins', sans-serif;
    --font-head: 'Josefin Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 25px var(--primary-blue-glow);
    --radius-btn: 9999px;
    /* Fully Rounded Pill Boundaries */
    --radius-card: 24px;
    /* Rounded Card Corner Rules */
    --radius-input: 14px;
}

/* ==========================================================================
           📐 RESET & GLOBAL STYLES
           ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.75;
    overflow-x: hidden;
    font-size: 18px;
    /* Inflated size for complete, professional presence */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
           ⚡ THEME SWITCHER SYSTEM (Dark Slate vs. Crisp White Contrasted Sections)
           ========================================================================== */
.section-dark,
.section-light {
    background-color: #ffffff;
    color: var(--text-dark);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.section-dark p,
.section-light p {
    color: var(--text-dark-muted) !important;
}

.section-faded-bg {
    position: relative;
    background-color: #ffffff;
    z-index: 1;
}

.section-faded-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.bg-img-1::before {
    background-image: url('Images/caleb-ruiter-EmEQ6kK_5P0-unsplash.jpg');
}

.bg-img-2::before {
    background-image: url('Images/artem-balashevsky-ZhNYKwjRMh4-unsplash (1).jpg');
}

.bg-img-3::before {
    background-image: url('Images/Night Disptach (1).jpg');
}

/* ==========================================================================
           ⚡ ASYMMETRIC GRID & RULE OF THIRDS (Strict Left Alignments)
           ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 130px 0;
    /* Expanded padding to feel solid and filled out */
}

.text-left {
    text-align: left;
}

/* 2-Column Asymmetric (60% Content, 40% Media/Sidebar) */
.grid-asym-2 {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Reverse Asymmetric (40% Media, 60% Content) */
.grid-asym-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.accent-bar {
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-glow);
}

.glow-text {
    color: var(--primary-blue);
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

/* ==========================================================================
           ⚡ EXPANDED TYPOGRAPHY SIZES
           ========================================================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 72px;
    /* Giant bold headlines */
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-white);
}

h2 {
    font-size: 48px;
    /* Solid section headers */
    font-weight: 700;
    margin-bottom: 28px;
}

.section-dark h2,
.section-light h2 {
    color: var(--text-dark);
}

h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-dark h3,
.section-light h3 {
    color: var(--text-dark);
}

/* ==========================================================================
           ✨ ROUNDED BOUNDARY BUTTONS & CTAs (Fully Pill Shaped)
           ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-btn);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-white);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5), var(--shadow-glow);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.section-light .btn-outline {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.section-light .btn-outline:hover {
    background-color: rgba(17, 24, 39, 0.05);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.header .btn-outline {
    border-color: var(--text-white);
    color: var(--text-white);
}

.header .btn-outline:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--text-white);
    box-shadow: none;
}

/* ==========================================================================
           🌐 STICKY GLASSMORPHIC HEADER & NAVIGATION
           ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    padding: 20px 0;
}

.header.stuck {
    padding: 12px 0;
    background-color: #000000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-light);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header.stuck .logo img {
    height: 70px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-white);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link i {
    font-size: 11px;
    transition: var(--transition);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 280px;
    background-color: rgba(18, 22, 34, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1010;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-link {
    display: block;
    padding: 11px 16px;
    font-size: 15px;
    color: var(--text-light-muted);
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    padding-left: 20px;
    border-left: 3px solid var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-call {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
}

.phone-call i {
    color: var(--primary-blue);
    font-size: 16px;
}

/* Mobile Nav Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1020;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition);
}

/* Mobile Side Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: rgba(18, 22, 34, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-dark);
    z-index: 1015;
    padding: 100px 24px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    overflow-y: auto;
}

.mobile-drawer.is-open {
    right: 0;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
    color: var(--text-white);
    padding-left: 10px;
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1012;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
           🚀 HERO BANNER (Asymmetric Left-Aligned Visual Focus)
           ========================================================================== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: pan-slow 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 13, 19, 0.98) 25%, rgba(11, 13, 19, 0.85) 60%, rgba(37, 99, 235, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    text-align: left;
}

.hero-content p {
    color: var(--text-white) !important;
    font-size: 19px;
    margin-bottom: 60px;
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 8px 18px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 28px;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.1);
}

.hero-badge i {
    font-size: 12px;
}

.hero-sub {
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    color: var(--text-white);
}

/* ==========================================================================
           💼 CORE SERVICES (Crisp White Section with Asymmetric Rule of Thirds Columns)
           ========================================================================== */
.services-overview-section {
    position: relative;
}

/* Asymmetric Card Layout (Sleek Slate Cards inside White Section) */
.asym-service-card {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 44px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.asym-service-card:last-child {
    margin-bottom: 0;
}

.asym-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0;
    transition: var(--transition);
}

.asym-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
}

.asym-service-card:hover::before {
    opacity: 1;
}

.asym-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.asym-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.asym-card-header h3 {
    margin-bottom: 0;
    font-size: 24px;
}

.asym-service-card p {
    color: var(--text-light-muted) !important;
    font-size: 15.5px;
    margin-bottom: 28px;
}

/* ==========================================================================
           📈 REVENUE PER MILE (RPM) SECTION (Dark Slate Section)
           ========================================================================== */
.rpm-section {
    position: relative;
}

.rpm-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(37, 99, 235, 0.05);
    filter: blur(120px);
    pointer-events: none;
}

.rpm-container-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 36px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.rpm-container-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.rpm-row {
    background-color: rgba(17, 24, 39, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    transition: var(--transition);
}

.rpm-row:last-child {
    margin-bottom: 0;
}

.rpm-row:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(37, 99, 235, 0.2);
    transform: scale(1.02);
}

.rpm-truck-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rpm-icon-box {
    width: 44px;
    height: 44px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.rpm-name {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.rpm-rate {
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 700;
    background-color: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-btn);
}

.rpm-date-footer {
    font-size: 13px;
    color: var(--text-light-muted);
    text-align: right;
    margin-top: 18px;
    font-style: italic;
}

/* ==========================================================================
           🛡️ WHY CHOOSE AXIO (Crisp White Section with Asymmetric Image Border)
           ========================================================================== */
.why-section {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-light);
}

.image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(255, 255, 255, 0.95));
}

.award-banner {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 14px;
    padding: 20px 24px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.award-banner i {
    color: var(--primary-blue);
    font-size: 38px;
}

.award-text h4 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.award-text p {
    font-size: 14px;
    color: var(--text-dark-muted);
}

/* ==========================================================================
           📡 TELEMATICS INTEGRATION "COMING SOON" CARDS (Dark Slate Background)
           ========================================================================== */
.telematics-section {
    /* Now handled by .section-faded-bg / .section-dark white override */
}

.tele-card {
    background-color: #000000;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.tele-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0;
    transition: var(--transition);
}

.tele-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.06);
}

.tele-card:hover::before {
    opacity: 1;
}

.tele-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tele-brand {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
}

.tele-soon-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-blue);
    background-color: rgba(37, 99, 235, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    white-space: nowrap;
}

.tele-desc {
    font-size: 15px;
    color: var(--text-dark-muted);
    margin-bottom: 24px;
}

.tele-icon-row {
    display: flex;
    gap: 12px;
    color: var(--primary-blue);
    font-size: 18px;
    align-items: center;
}

/* ==========================================================================
           ⭐️ UNIFIED REVIEWS SECTION (Crisp White Background)
           ========================================================================== */
.reviews-section {
    background-color: #ffffff;
    color: var(--text-dark);
}

.trust-badges-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    background-color: rgba(17, 24, 39, 0.02);
    border: 1px solid var(--border-light);
    padding: 24px 36px;
    border-radius: 18px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.badge-google i {
    color: #f59e0b;
}

.badge-trustpilot i {
    color: #00b67a;
}

.badge-bbb i {
    color: #005a78;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 36px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.review-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.06);
}

.review-rating {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 15px;
    color: var(--text-dark-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--text-white);
    font-family: var(--font-head);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.review-username {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.review-company {
    font-size: 12px;
    color: var(--text-dark-muted);
}

/* ==========================================================================
           📝 ONBOARDING CHECKLIST & SECURE TRIAL FORM (Dark Slate Background)
           ========================================================================== */
.trial-section {
    /* Now handled by section-faded-bg / section-dark */
}

/* 11 Premium Features Left-aligned list */
.features-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
}

.check-icon-circle {
    width: 28px;
    height: 28px;
    background-color: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
}

.check-content strong {
    display: block;
    font-family: var(--font-head);
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.check-content span {
    color: var(--text-dark-muted);
    font-size: 14.5px;
    font-weight: 300;
}

/* Trial Form Block */
.trial-form-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 44px 36px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.trial-form-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    background-color: rgba(17, 24, 39, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-input);
    padding: 14px 20px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    background-color: rgba(17, 24, 39, 0.04);
    border-color: var(--primary-blue);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.15);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.consent-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.consent-wrapper input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.consent-text {
    font-size: 12px;
    color: var(--text-dark-muted);
    line-height: 1.5;
}

/* ==========================================================================
           ❓ FAQ ACCORDION SECTION (Crisp White Background)
           ========================================================================== */
.faq-section {
    background-color: #ffffff;
    color: var(--text-dark);
}

.faq-inner {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-card:hover {
    border-color: var(--border-hover);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-trigger h4 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-card:hover .faq-trigger h4 {
    color: var(--primary-blue);
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    background-color: rgba(17, 24, 39, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark-muted);
    transition: var(--transition);
}

.faq-card.open .faq-icon-box {
    background-color: var(--primary-blue);
    color: var(--text-white);
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(17, 24, 39, 0.01);
}

.faq-content-inner {
    padding: 0 30px 24px;
    font-size: 15px;
    color: var(--text-dark-muted);
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

/* ==========================================================================
           🏢 PREMIUM FOOTER SECTION (Adopts brand logo, contacts, no social links)
           ========================================================================== */
.footer {
    background-color: rgba(255, 255, 255, 0.99);
    border-top: 1px solid var(--border-light);
    padding: 90px 0 40px;
    position: relative;
    color: var(--text-dark);
}

.footer p {
    color: var(--text-dark-muted) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 65px;
}

.footer-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 15px;
    margin-bottom: 20px;
    max-width: 440px;
}

.footer-title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-blue);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: var(--text-dark-muted);
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-dark-muted);
}

.footer-contact-item i {
    color: var(--primary-blue);
    margin-top: 3px;
}

.bbb-badge-custom {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #005a78;
    padding: 8px 18px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.1);
    gap: 10px;
    margin-top: 10px;
}

.bbb-badge-custom i {
    font-size: 20px;
    color: #005a78;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-dark-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

/* ==========================================================================
           🖼️ SCROLL REVEAL & PAN EFFECTS
           ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pan-slow {
    0% {
        transform: scale(1.05) translate(0px, 0px);
    }

    50% {
        transform: scale(1.08) translate(-10px, 5px);
    }

    100% {
        transform: scale(1.05) translate(0px, 0px);
    }
}

/* ==========================================================================
           📱 RESPONSIVE BREAKPOINTS (Mobile & Tablet Compliance)
           ========================================================================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-grid> :first-child {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {

    .header-actions .phone-call,
    .header-actions .btn-outline {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-list {
        display: none;
    }

    .grid-2,
    .grid-asym-2,
    .grid-asym-2-reverse,
    .tab-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-asym-2-reverse> :first-child {
        grid-row: 2;
        /* Forces image below text on mobile */
    }

    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 38px;
    }

    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 22px;
    }

    p {
        font-size: 16px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid> :first-child {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .image-wrapper img,
    .review-card {
        height: auto;
    }
}
/* User Request: Make footer strictly black with white text */
.footer {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-top: 1px solid #1f2937;
}
.footer p, .footer-bottom, .footer-bottom-links a, .footer-contact-item span, .footer-contact-item i {
    color: #ffffff !important;
}
.footer-title {
    color: #ffffff !important;
}
.footer-links a {
    color: #cccccc !important;
}
.footer-links a:hover {
    color: var(--primary-blue) !important;
}

/* FAQ Accordion Styles */
.faq-section {
    background-color: #f9fafb;
}
.faq-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.faq-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 18px;
    color: #111827;
    font-weight: 600;
}
.faq-icon-box {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}
.faq-trigger[aria-expanded="true"] .faq-icon-box {
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-content-inner {
    padding: 0 20px 20px 20px;
    color: #4b5563;
    line-height: 1.6;
}

/* Style for native multi-select */
select[multiple].form-control {
    background-color: #1e293b;
    color: #f8fafc;
    border: 1px solid #334155;
    padding: 10px;
}
select[multiple].form-control option {
    padding: 10px;
    margin-bottom: 2px;
    border-radius: 4px;
}
select[multiple].form-control option:checked {
    background-color: var(--primary-blue);
    color: white;
}

/* Make FAQ expansion foolproof with CSS */
.faq-trigger[aria-expanded="true"] + .faq-content {
    max-height: 800px !important;
}



/* Clean, highly-visible styles for the custom multi-select */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background-color: #ffffff; /* Clean white background */
    border: 1px solid #ced4da; /* Neutral, visible border */
    border-radius: 4px;
    cursor: pointer;
    color: #333333; /* Dark text for high visibility */
    font-size: 14.5px;
    transition: border-color 0.2s ease;
}

.custom-select-trigger:hover {
    border-color: #86b7fe;
}

/* The dropdown arrow icon */
.custom-select-trigger::after {
    content: "▼";
    font-size: 12px;
    color: #6c757d;
}

.custom-select-options {
    position: absolute;
    display: none; /* Hidden by default */
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99;
    max-height: 220px;
    overflow-y: auto;
}

/* Show class added via JavaScript */
.custom-select-options.open {
    display: block;
}

.custom-option-label {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    cursor: pointer;
    color: #333333;
    transition: background-color 0.2s ease;
    margin: 0;
    font-size: 14.5px;
}

.custom-option-label:hover {
    background-color: #f8f9fa; /* Light gray hover effect */
}

.custom-option-label input[type="checkbox"] {
    margin-right: 12px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #0d6efd; /* Modern blue checkbox color */
}


/* ==========================================================================
   📱 CUSTOM GRIDS (Responsive)
   ========================================================================== */
.stats-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: flex-end;
    justify-items: center;
}
@media (max-width: 992px) {
    .stats-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .stats-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .stats-grid-5 {
        grid-template-columns: 1fr;
    }
}
