/*------------ Import ---------*/
@import url(./header-deut.css);



:root {
    --glide-primary-font: 'Inter', sans-serif;
    --glide-dark: #0b0f19;
    --glide-cyan-accent: #22d3ee;
    --glide-blue-gradient: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
    --navbar-glass-bg: rgba(11, 15, 25, 0.75);
    --color-slate-black: #0f1626;
    --color-slate-cool-muted: #5e6677;
    --color-glide-blue-primary: #0052ff;
    
    /* Exact Glassmorphism specs from Figma screen captures */
    --navbar-translucent-bg: rgba(226, 232, 240, 0.65);
    --navbar-translucent-border: rgba(255, 255, 255, 0.7);
    
    --capsule-pill-translucent-bg: rgba(248, 250, 252, 0.55);
    --capsule-pill-translucent-border: rgba(255, 255, 255, 0.6);
    --capsule-pill-drop-shadow: 0 28px 56px rgba(15, 22, 38, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);    
}

body {
    font-family: var(--glide-primary-font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Micro-Utility Spacing Layout Scales */
.font-xs { font-size: 0.8rem; }
.font-sm { font-size: 0.92rem; }
.font-regular { font-size: 1.05rem; }
.max-w-xl { max-w: 540px; }
.line-height-normal { line-height: 1.4; }
.line-height-relaxed { line-height: 1.65; }



.custom-navbar-capsule-frame {
    background: #82878B;
}


/* ==========================================================================
   PRIMARY HERO DISPLAY LAYER BLOCK PROPERTIES
   ========================================================================== */
.viewport-hero-block-wrapper {
    height: 95vh; /* Reduced marginally to ensure perfect overlap flow into loop block grid view */
    width: 100%;
    background-color: #e2e8f0;
}

.canvas-image-backdrop-plate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 1;
}

.canvas-image-backdrop-plate::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.11) 100%);
    z-index: 1; 
}

.z-index-content {
    z-index: 10;
}

.content-alignment-bounding-box {
    padding-left: 72px !important;
    padding-right: 72px !important;
    padding-bottom: 12vh; /* Holds content elegantly centered off the screen fold */
}

.tag-badge-layout-container {
    margin-bottom: 20px;
}

.micro-capsule-badge-pill {
    background-color: #858685;
    color: #FAFAFA;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 10px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-family: "Inter", sans-serif;
}

.hero-primary-display-title {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -0.026em;
    line-height: 1.1;
    color: #FAFAFA;
    margin-bottom: 12px;
    font-family: "Outfit", sans-serif;
}

.hero-secondary-supporting-pitch {
    font-size: 20.5px;
    line-height: 37px;
    color: #FAFAFA;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}


/* ==========================================================================
   HERO TEXT BLOCK & LAYOUT UTILITIES
   ========================================================================== */
.display-3 {
/*     font-family: var(--glide-font-family, sans-serif); */
    font-size: clamp(2.1rem, 4.1vw, 4rem); /* Responsive typography scaling */
    line-height: 1.15;
    letter-spacing: -0.02em; /* tracking-tight replacement */
}

.max-w-xl {
    max-width: 580px; /* Prevents long paragraph lines for optimal reading width */
}

.line-height-relaxed {
    line-height: 1.6;
    font-size: 16px;
    color: #FAFAFA !important;
	padding: 23px 0;
}

/* ==========================================================================
   1. TOP CAPSULE BADGE PILL (.micro-capsule-badge-pill)
   ========================================================================== */
.tag-badge-layout-container {
    margin-bottom: 12px;
}

.micro-capsule-badge-pill {
    display: inline-block;
    font-family: var(--glide-font-family, sans-serif);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #32BDED; /* Bright core cyan from your design system */
    
    /* Transparent border trick with background clipping for the frosted outline */
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 6px 16px;
    background: 
        linear-gradient(rgba(15, 22, 38, 0.4), rgba(15, 22, 38, 0.4)) padding-box, 
        linear-gradient(90deg, rgba(50, 189, 237, 0.4) 0%, rgba(9, 115, 226, 0.2) 100%) border-box;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: "Inter", sans-serif;
}

/* ==========================================================================
   2. H1 GRADIENT ACCENT TEXT (.gradient-text-accent)
   ========================================================================== */
.gradient-text-accent {
    /* Exact multi-stop brand gradient path mapped from your previous style rules */
    background: linear-gradient(96.89deg, #0973E2 15%, #32BDED 65%, #9ADEF6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================================================
   3. PRIMARY SOLID CTA (.btn-premium-action)
   ========================================================================== */
.btn-premium-action {
    background-color: #FFFFFF !important;
    color: #0B0F19 !important;
    border: 1px solid #FFFFFF !important;
    min-width: 200px;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.25s ease, 
                background-color 0.25s ease;
}

.btn-premium-action:hover {
    transform: translateY(-2px);
    background-color: #F8FAFC !important;
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.08);
}


/* ==========================================================================
   4. OUTLINE GRADIENT GLASS CTA (.btn-outline-premium)
   ========================================================================== */
.btn-outline-premium {
    min-width: 180px;
    padding: 16px 40px !important;
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 16px;
    border-radius: 40px !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    
    /* Force a clean, dark transparent glass background */
    background: rgba(0, 0, 0, 0.25) !important; 
    border: none !important; /* Remove any theme borders */
    box-shadow: none !important; /* Remove any theme shadows */
    
    /* Glass blur */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* The Gradient Border Overlay */
.btn-outline-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px; 
    padding: 1px; /* This defines the border thickness */
    
    /* Matches Figma's gradient: From top-left Cyan down to transparent */
    background: linear-gradient(135deg, #63CEF5 0%, #A6B6C0 85%) !important;
    
    /* Mask out the inside so only the 1px edge is visible */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.btn-outline-premium:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.35) !important; /* Slightly darker on hover */
}





/* ==========================================================================
   INTERACTION BRIDGE MODULE CONFIGURATION SPECS
   ========================================================================== */
.z-index-bridge {
    z-index: 100;
}

.contents-maxwidth-limiter {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

.interlocking-features-strip-wrapper {
    margin-top: -37px; /* High-precision negative margin pulling container to overlap exactly between two worlds */
    padding: 0 16px;
}

.high-fidelity-frosted-capsule-bar {
    background: var(--capsule-pill-translucent-bg);
    backdrop-filter: blur(32px) saturate(125%);
    -webkit-backdrop-filter: blur(32px) saturate(125%);
    border: 1px solid #FFFFFF7A;
    border-radius: 60px;
    padding: 26px 56px;
    box-shadow: var(--capsule-pill-drop-shadow);
    width: 100%;
    box-shadow: 0px 4px 40px 0px #999AA752;
    font-family: "Outfit", sans-serif;
	margin-bottom:100px;
}

.capsule-value-segment-cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.segment-graphic-icon-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.segment-primary-heading {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    letter-spacing: 1.57px;
}

.segment-secondary-subtext {
    font-size: 14.5px;
    font-weight: 500;
    color: #66677B;
    margin-top: 2px;
    letter-spacing: 1.57px;
}

.capsule-vertical-hairline-divider {
    width: 1px;
    height: 28px;
    background-color: #999AA7;
    /* margin: 0 40px; */
    flex-shrink: 0;
    position: absolute;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    right: 0;
}

/* ============================================================
   4. FLEET SECTION REFACTORING
   ============================================================ */

.fleet_heading {
    text-align: center;
    margin-bottom: 42px;
    font-family: "Inter", sans-serif;
}

.fleet_heading h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #191C1E;
}

.fleet_heading p {
    font-size: 20px;
    color: #43474A;
}

.fleet-section { 
    padding: 80px 0 72px; 
/*     background-color: #f8fafc; */
}

.section-header { margin-bottom: 36px; }

.section-title {
    font-family: var(--font-display, 'Inter', sans-serif);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--near-black, #0b0f19);
    margin-bottom: 10px;
}

.section-sub {
    font-size: 15px;
    color: var(--gray-dark, #64748b);
}

/* Tabs Top Bar Navigation Elements */
.fleet-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 44px;
}

.fleet-tab {
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid rgba(25, 28, 30, 0.14);
    background: #ffffff;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 9999px;
    outline: none;
}



/* Locco - blue */
.fleet-tab[data-tab="locco"].active {
    color: rgb(255, 255, 255);
    background: linear-gradient(288.65deg, rgb(120, 202, 255) 19.27%, rgb(50, 189, 237) 83.88%);
    border-color: rgb(50, 189, 237);
}

/* The Guard - orange */
.fleet-tab[data-tab="guard"].active {
    color: rgb(255, 255, 255);
    background: linear-gradient(288.65deg, rgb(255, 162, 110) 19.27%, rgb(255, 100, 13) 83.88%);
    border-color: rgb(255, 100, 13);
}

/* Big Boy 3 - green */
.fleet-tab[data-tab="bigboy"].active {
    color: rgb(255, 255, 255);
    background: linear-gradient(288.65deg, rgb(0, 150, 122) 19.27%, rgb(0, 104, 81) 83.88%);
    border-color: rgb(0, 104, 81);
}
/* .fleet-tab:hover:not(.active) {
    background: #eff6ff;
    color: var(--blue, #3b82f6);
    border-color: var(--blue, #3b82f6);
} */

/* Carousel Viewport & Track */
.fleet-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.fleet-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Master Layout Framework Grid */
.fleet-grid {
    display: grid;
    gap: 24px;
    align-items: stretch;
    grid-template-columns: 852px;
    justify-content: center;
}

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

/* Panel = one slide in the carousel track */
.fleet-panel {
    flex: 0 0 852px;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .fleet-panel {
        flex: 0 0 90vw;
    }
}

/* Left Main Core Showcase Card */
.fleet-main-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    border-radius: 24px;
    padding: 30px;
    align-items: center;
    border: 1px solid rgba(195, 199, 203, 0.3);
    font-family: "Inter", sans-serif;
    box-shadow: 0px 4px 28px 0px #66677B33;
    border: 1px solid #C3C7CB4D;
}

@media (max-width: 575.98px) {
	.solution-glass-card{    padding: 12px 28px;}
    .fleet-main-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

.fleet-name {
    font-size: 28px;
    font-weight: 700;
    color: #191C1E;
    margin-bottom: 9px;
    font-family: "Outfit", sans-serif;
}

.fleet-tagline {
    font-size: 18px;
    font-weight: 500;
    color: var(--blue, #3b82f6);
    margin-bottom: 28px;
    line-height: 1.4;
}

/* Specs Dashboard Cells */
.fleet-specs {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px;
    border-radius: 12px;
    flex: 1;
    min-width: 100px;
    background: #FFFFFF99;
    box-shadow: 0px 4px 16px 0px #4A55651F;
}

.spec-item img { width: 20px; height: 20px; margin-bottom: 4px; }
.spec-label { font-size: 10px; color: #43474A; text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; }
.spec-value { font-size: 18px; font-weight: 700; color: #191C1E; margin-top: -3px; }

/* Dynamic List Features */
.fleet-features {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    list-style: none;
}

.fleet-features li {
    font-size: 14px;
    color: #475569;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.fleet-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3' stroke='%233b82f6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.fleet-pricing-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue, #3b82f6);
    text-decoration: none;
    transition: gap 0.2s ease;
    padding: 12px 28px;
    border-radius: 28px;
}

.fleet-pricing-link:hover { gap: 14px; }
.fleet-pricing-link img { width: 16px; }

.fleet-main-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-main-image img {
    width: 100%;
    max-width: 320px;
    object-fit: contain;
}

/* Stacked Sub-navigation Cards Sidebar */
.fleet-side-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fleet-side-card {
    position: relative;
    border-radius: 20px;
    padding: 28px 24px;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.fleet-side-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card-icon-bg {
    position: absolute;
    top: 16px;
    right: 16px;
}
.card-icon-bg img { width: 40px; height: 50px; }

/* The Guard Card Styling Preset */
.fleet-card-guard { background: #ff6638; color: #ffffff; }
.fleet-card-guard h4 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.fleet-card-guard p { font-size: 13px; margin-bottom: 18px; color: rgba(255, 255, 255, 0.8); line-height: 1.4; }
.fleet-card-guard .card-icon-bg { opacity: 0.2; }

/* Big Boy 3 Card Styling Preset */
.fleet-card-bigboy { background: #e2d9cd; color: #0b0f19; }
.fleet-card-bigboy h4 { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: #006652; }
.fleet-card-bigboy p { font-size: 13px; color: rgba(0, 102, 82, 0.8); margin-bottom: 18px; line-height: 1.4; }
.fleet-card-bigboy .card-icon-bg { opacity: 0.3; }

/* Locco Card Styling Preset */
.fleet-card-locco { background: #2563eb; color: #ffffff; }
.fleet-card-locco h4 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.fleet-card-locco p { font-size: 13px; margin-bottom: 18px; color: rgba(255, 255, 255, 0.8); line-height: 1.4; }
.fleet-card-locco .card-icon-bg { opacity: 0.15; }

/* Uniform Subcard Action Label Pill Layouts */
.btn-card-action {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #ffffff;
    color: #0b0f19;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    align-self: flex-start;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.fleet-card-guard .btn-card-action { color: #ff6638; }
.fleet-card-bigboy .btn-card-action { background: #006652; color: #e2d9cd; }
.fleet-card-locco .btn-card-action { color: #2563eb; }

.fleet-side-card:hover .btn-card-action { opacity: 0.95; }

.fleet-panel--clone {
    pointer-events: none;
    user-select: none;
}

/* Per-tab accent colors */
#tab-locco .fleet-tagline { color: #32BDED; }
#tab-locco .fleet-features li::before { background-image: url(../images/loco-check.svg); }
#tab-locco .fleet-pricing-link { background: #32BDED; color: #fff; }

#tab-guard .fleet-tagline { color: #FF640D; }
#tab-guard .fleet-features li::before { background-image: url(../images/guard-check.svg); }
#tab-guard .fleet-pricing-link { background: #FF640D; color: #fff; }

#tab-bigboy .fleet-tagline { color: #006851; }
#tab-bigboy .fleet-features li::before { background-image: url(../images/bigboy-check.svg); }
#tab-bigboy .fleet-pricing-link { background: #006851; color: #fff; }

@media (max-width: 575.98px) {
  .solution-glass-card {
    padding: 12px 28px;
  }

  .fleet-main-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  /* Moves the image container to the top on mobile */
  .fleet-main-image {
    order: -1; 
  }
}

/* ============================================================
   STRATEGIC SOLUTIONS SECTION (DARK THEME & GLASSMORPHISM)
   ============================================================ */
.strategic-solutions-section {
    padding: 90px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

/* Header Grid Row Layout */
.solutions-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 32px;
}

@media (max-width: 767.98px) {
    .solutions-header-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
}

.solutions-section-title {
    font-family: var(--font-display, 'Inter', sans-serif);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.solutions-section-subtitle {
    font-size: 18px;
    color: #EDEDED; /* Slate 400 */
    max-width: 540px;
    line-height: 1.5;
    margin: 0;
}

/* Download Catalog Pill Button */
.btn-download-catalog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #0b0f19;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-download-catalog:hover {
    /* background-color: #f1f5f9; */
    transform: translateY(-2px);
    color: #0b0f19
}

.icon-download {
    stroke-width: 2.5px;
}

/* 3-Column Display Layout Grid */
.solutions-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 991.98px) {
    .solutions-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .solutions-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Premium Frosted Glass Card Execution */
.solution-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 27px;
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease;
    border: 1.13px solid #EDEDED1A;
    font-family: "Inter", sans-serif;
}
.solution-glass-card .card-text{width:auto !important}
.solution-glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Icon Containers */
.card-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(180deg, rgba(52, 52, 52, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* Typography inside Cards */
.card-title {
    font-size: 23px;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    display: inline-block;
}

.card-text {
    font-size: 15px;
    color: #CCCCD3; /* Slate 300 */
    line-height: 25.59px;
    margin-bottom: 17px;
    flex-grow: 1; /* Ensures lists line up beautifully */
}

/* High-Fidelity Custom Blue Bullets */
.card-bullets {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.card-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background-color: #63CEF5; /* Bright cyan/blue dots from layout */
    border-radius: 50%;
    box-shadow: 0 0 8px #63CEF5;
}


/* ============================================================
   6. QUICK QUOTE FLEET UPGRADE SECTION
   ============================================================ */
.quick-quote-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

/* Composite Layout Wrapper Card */
.quote-split-card {
    display: grid;
    grid-template-columns: 46% 54%;
    /* background-color: #ffffff; */
    border-radius: 28px;
    /* box-shadow: 0 20px 50px rgba(11, 15, 25, 0.04); */
    overflow: visible; /* Allows beautiful depth shadows to render fully */
    align-items: center;
}

@media (max-width: 991.98px) {
    .quote-split-card {
        grid-template-columns: 1fr;
        overflow: hidden;
    }
}

/* Left Panel Style Rules */
.quote-info-side {background: linear-gradient(313.34deg, #9ADEF6 -0.16%, #00ACE5 34.78%, #1339DE 129.05%, #10007E 141.75%);padding: 56px 48px;border-top-left-radius: 28px;border-bottom-left-radius: 28px;color: #ffffff;display: flex;flex-direction: column;z-index: 1;/* height: 534px; */}

@media (max-width: 991.98px) {
    .quote-info-side {
        border-bottom-left-radius: 0;
        border-top-right-radius: 28px;
        padding: 40px 32px;
    }
}

.quote-main-title {
    font-family: var(--font-display, 'Inter', sans-serif);
    font-size: clamp(29px, 3.8vw, 64px);
    font-weight: 500;
    line-height: 100%;
    color: #ffffff;
    /* margin-bottom: 20px; */
    letter-spacing: -0.01em;
}

.quote-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #FFFFFFCC;
    margin-bottom: 0px;
    max-width: 90%;
    padding: 40px 0;
}

/* Layout Pill Elements */
.quote-contact-pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto; /* Aligned nicely to bottom margins */
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

a.contact-pill:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.address-pill {
    /* align-items: flex-start; */
    line-height: 1.5;
}

.address-pill svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Right Panel Style Rules (Form Panel) */
.quote-form-side {
    padding: 56px 52px;
    border-radius: 28px;
    /* High visual fidelity layout overlay depth tweak */
    margin-left: -16px;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.02), 15px 0 35px rgba(0, 0, 0, 0.04);
    z-index: 3;
    background: linear-gradient(90deg, #C7E5F4 4%, #9999994D 24%, #ffffff4d 100%);
    /* background: #F7F8F899; */
    box-shadow: 0px 4px 40px 0px #9999994D;
    /* height: 604px; */
    /* border: 1px solid #000000; */
}

@media (max-width: 991.98px) {
    .quote-form-side {
        margin-left: 0;
        padding: 40px 32px;
        box-shadow: none;
    }
}

.form-block-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

/* Interactive Input Structure Logic */
.quote-interactive-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row.pattern-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 575.98px) {
    .form-row.pattern-2col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    height: 48px;
    padding: 10px 16px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

/* Special Composite Inputs (Phone / Select Dropdowns) */
.phone-input-wrapper {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
}

.phone-country-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 14px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
}

.country-code {
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.dropdown-chevron,
.select-chevron {
    color: #64748b;
    pointer-events: none;
}

.select-input-wrapper {
    position: relative;
    width: 100%;
}

.select-input-wrapper select {
    width: 100%;
    height: 48px;
    padding: 10px 40px 10px 16px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #0f172a;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.select-input-wrapper select:focus {
    border-color: #38bdf8;
}

.select-chevron {
    position: absolute;
    right: 16px;
    top: 17px;
}

/* Call-to-Action Action Mechanics */
.form-submit-block {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-submit-enterprise {
    width: 100%;
    height: 52px;
    background-color: #32BDED; /* Custom light sky brand blue button accent color from UI */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-submit-enterprise:hover {
    background-color: #1ba2d7;
}

.btn-submit-enterprise:active {
    transform: scale(0.995);
}

.form-privacy-notice {
    font-size: 12px;
    color: #33354F;
    text-align: center;
    margin: 0;
}

.form-privacy-notice a {
    color: #00ACE5;
    text-decoration: underline;
}

.form-privacy-notice a:hover {
    color: #0369a1;
}


/* Custom Country Selector Container Configurations */
.phone-country-selector {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

/* Float custom menu dropdown track option directly over target boundary metrics */
.phone-country-dropdown-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 320px; /* Gives name strings adequate spacing */
    max-height: 260px;
    background-color: #FFFFFF; /* High contrast system background */
    border: 1px solid rgba(15, 22, 38, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 22, 38, 0.08);
    overflow-y: auto;
    z-index: 999;
    
    /* Animation setup hooks */
    display: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Visibility state trigger class rule */
.phone-country-dropdown-list.show-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Custom dropdown scrolling scrollbar track styles */
.phone-country-dropdown-list::-webkit-scrollbar {
    width: 6px;
}
.phone-country-dropdown-list::-webkit-scrollbar-thumb {
    background-color: rgba(15, 22, 38, 0.15);
    border-radius: 20px;
}

/* Element list matrix element structure rules */
.country-option-node {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #111C24;
    transition: background-color 0.2s ease;
}

.country-option-node:hover {
    background-color: #F8FAFC; /* Muted system row highlight color */
}

.node-flag {
    margin-right: 12px;
    font-size: 16px;
}

.node-name {
    flex-grow: 1;
    font-weight: 400;
}

.node-code {
    font-weight: 600;
    color: #8A92A6; /* Keeps numerical codes visually grouped cleanly on right edge */
}

/* Animated chevron transition layer */
.phone-country-selector svg.dropdown-chevron {
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
.phone-country-selector.active-trigger svg.dropdown-chevron {
    transform: rotate(180deg);
}


@media (max-width: 480px) {
.tracking-tight {
    font-size: 26px;
    line-height: 1.4;
}

.line-height-relaxed {
    font-size: 1rem;
}
	
}
 

@media (max-width: 390px) {

.tracking-tight span {
    white-space: break-spaces !important;
}
	
	.fleet-tab {
    padding: 10px 24px;
	}
	
}



/* -------------------------------Quick Form--------------------------------------- */

/* ==========================================
   CF7 ERROR & VALIDATION STYLING
   ========================================== */

.wpcf7 form .wpcf7-response-output {
    border-color: transparent !important;
}

/* 1. Highlight Input Fields with Red Border on Error */
.wpcf7-form-control-wrap .wpcf7-not-valid,
.wpcf7-form-control.wpcf7-not-valid {
  border: 1px solid #e53935 !important;
  outline: none;
}

/* 2. Style Inline Field Error Messages */
.wpcf7-not-valid-tip {
  color: #e53935 !important;
  font-size: 11px !important;
  margin-top: 4px !important;
  display: block !important;
}

/* 3. Hide Default CF7 Status Response Boxes (if needed) */
.wpcf7-response-output {
  margin: 16px 0 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* 4. Global Validation Error Box (Light Red / Pill Box) */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  background-color: #fdf2f2 !important;
  border: 1px solid #f8d7da !important;
  color: #a94442 !important;
}

/* Add Warning Icon before Error Response */
.wpcf7 form.invalid .wpcf7-response-output::before,
.wpcf7 form.failed .wpcf7-response-output::before {
  content: "!" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 16px !important;
  height: 16px !important;
  border: 1.5px solid #a94442 !important;
  border-radius: 50% !important;
  font-size: 11px !important;
  font-weight: bold !important;
  flex-shrink: 0 !important;
}

/* 5. Global Success Response Box (Light Green) */
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #e8f5e9 !important;
  border: 1px solid #c8e6c9 !important;
  color: #2e7d32 !important;
}

/* Add Checkmark Icon before Success Response */
.wpcf7 form.sent .wpcf7-response-output::before {
  content: "✓" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 16px !important;
  height: 16px !important;
  border: 1.5px solid #2e7d32 !important;
  border-radius: 50% !important;
  font-size: 10px !important;
  font-weight: bold !important;
  flex-shrink: 0 !important;
}


/* ==========================================
   QUICK QUOTE FORM & SUCCESS STATE STYLES
   ========================================== */

/* 1. Permanent Outer Container & Section Title */
.quote-form-side {
  position: relative;
  width: 100%;
}

.quote-form-side .form-block-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

/* 2. Form Wrapper Fade Transition */
.quote-form-wrapper {
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 1;
  transform: translateY(0);
}

.quote-form-wrapper.is-hidden {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

/* 3. Inner White Success Card */
.quote-success-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.quote-success-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 4. Success Icon & Typography */
.success-icon-circle {
  width: 54px;
  height: 54px;
  background-color: #38c1f3;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(56, 193, 243, 0.35);
}

.success-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.success-message {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.highlight-user-info {
  font-weight: 600;
  color: #0f172a;
}

/* 5. Hide CF7 Default Success Banner */
.wpcf7-form.sent .wpcf7-response-output {
  display: none !important;
}

/* -------------------------Quick Form For Mobile ---------------------------------------- */
@media (max-width: 991.98px) {
    /* 1. Make the section itself carry the gradient background */
    .quick-quote-section {
     background: linear-gradient(313.34deg, #9ADEF6 -0.16%, #00ACE5 34.78%, #1339DE 129.05%, #10007E 141.75%);
    padding: 40px 0;
    }

    /* 2. Container reset */
    .quote-split-card {
        display: flex;
        flex-direction: column;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }

    /* 3. Display info-side contents directly in the flow */
    .quote-info-side {
        background: transparent;
        padding: 0 0 24px 0;
        border-radius: 0;
        display: contents; /* Allows child elements to order flexibly */
    }

    /* 4. Top section: Title and Subtitle */
    .quote-main-title {
        order: 1;
        font-size: clamp(30px, 6vw, 36px);
        margin-bottom: 12px;
/*         margin-left: -135px !important; */
        color: #FFF;
        font-weight: 600;
/*         max-width: 271px; */
    }

    .quote-subtitle {
        order: 2;
        padding: 0 0 24px 0;
        max-width: 100%;
        font-size: 14px;
    }

    /* 5. Middle section: Form Side Card */
    .quote-form-side {
        order: 3;
        margin-left: 0;
        margin-bottom: 24px;
        padding: 28px 20px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.85); /* Semi-transparent light card */
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    /* 6. Bottom section: Contact Pills */
    .quote-contact-pills {
        order: 4;
        width: 100%;
        gap: 10px;
        margin-top: 0;
    }

    .contact-pill {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.25);
        padding: 12px 16px;
        border-radius: 50px; /* Rounded pill style matching mobile mockup */
    }
}


/* ----------------------------- */

@media (max-width: 480px) {
	.viewport-hero-block-wrapper {
		height: 725px !important;
	}
	
	.content-alignment-bounding-box{
	    padding-left: 25px !important;
        padding-right: 25px !important;
        position: absolute !important;
        top: -10px;	
	}
	
	.tracking-tight .gradient-text-accent { display: block;}

    .tracking-tight .text-nowrap {display: inline-block;}
	    .tracking-tight {
        font-size: 36px;
        line-height: 1.2;
        font-weight: 800 !important;
    }
	
	.line-height-relaxed {
    padding: 10px 0;
}
	
.btn-premium-action {
    width: 352px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
	padding: 15.1px 0 !important;
}

.btn-outline-premium {
    width: 352px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: transparent !important;
}	
	
}

/* ------------------------------ */

@media (max-width: 480px) {
    /* 1. Main Frosted Card Container Setup */
    .high-fidelity-frosted-capsule-bar {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        border-radius: 40px;
        padding: 24px 16px;
        gap: 20px 0 !important;
        margin-bottom: 40px;
        position: relative;
    }

    /* 2. Top Row (First 2 Items - Side by Side) */
    .capsule-value-segment-cell {
        width: 50% !important;
        flex: 0 0 50% !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 0 8px;
        position: relative;
    }

    /* 3. Bottom Row (3rd Item - Centered) */
    .capsule-value-segment-cell:nth-child(3) {
        width: 100% !important;
        flex: 0 0 100% !important;
        justify-content: center !important;
        margin-top: 4px;
    }

    .capsule-value-segment-cell:nth-child(3) .segment-text-block {
        align-items: center;
        text-align: center;
    }

    /* 4. Text Block & Icon Row Stacking */
    .segment-text-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .segment-text-block > .d-flex {
        align-items: center;
        gap: 8px !important;
        margin-bottom: 4px;
    }

    /* 5. Font Sizing & Spacing Adjustments */
    .segment-primary-heading {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: -0.01em;
        color: #1A1A1A;
        line-height: 1.3;
    }

    .segment-secondary-subtext {
        font-size: 15px;
        line-height: 1.45;
        color: #64748B;
        letter-spacing: 0;
        margin-top: 0;
        display: none;
    }

    /* 6. Hairline Dividers: Show ONLY on Item 1, Hide on Item 2 */
    .capsule-value-segment-cell:nth-child(1) .capsule-vertical-hairline-divider {
        display: block !important;
        height: 28px !important;
        right: 17px !important;
        top: 50% !important;
        transform: translateY(-50%);
        opacity: 0.5;
    }

    .capsule-value-segment-cell:nth-child(2) .capsule-vertical-hairline-divider {
        display: none !important;
    }
}

/* ------------------------ */
@media (max-width: 480px) {

    .fleet-tab {
    padding: 10px 22px;
}

.fleet_heading {
    text-align: left;
    padding: 0 10px;
}

	.fleet_heading h2 {
    font-size: 28px;
    /* font-family: 'Inter'; */
}
.fleet_heading p {
    font-size: 14px;
}
	
.spec-item {
    min-width: auto;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.fleet-specs {
    gap: 0px;
}	

#tab-guard .fleet-pricing-link {
    display: flex;
    width: 100%;
    justify-content: center;
}
	
	
}


@media (max-width: 480px) {
.solutions-section-subtitle { font-size: 14px;}
.solutions-action-block {width: 100%;text-align: center;}
.btn-download-catalog {width: 100%;display: block;font-size: 18px}
.card-title {font-size: 20px;}
	.column-brand-gap{gap:0px}	
	
}