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

:root {
    /* Light corporate palette */
    --bg-dark: #f6f8fc;                    /* Soft warm off-white canvas (the "page") */
    --bg-deeper: #eef1f7;                  /* Stronger gray for section breaks */
    --bg-soft: #f0f3f8;                    /* Soft chip / panel bg */
    --bg-card: #ffffff;                    /* Pure white cards pop against canvas */
    --bg-card-hover: #fcfdff;

    --border-color: rgba(15, 23, 42, 0.08);
    --border-color-glow: rgba(15, 23, 42, 0.18);

    /* Accents — orange is the primary brand color, others used sparingly */
    --accent-orange: hsl(15, 92%, 52%);
    --accent-orange-glow: rgba(242, 85, 39, 0.22);

    --accent-green: hsl(150, 65%, 38%);
    --accent-green-glow: rgba(34, 158, 92, 0.18);

    --accent-blue: hsl(212, 85%, 48%);
    --accent-blue-glow: rgba(20, 100, 220, 0.18);

    --accent-violet: hsl(260, 70%, 55%);
    --accent-violet-glow: rgba(120, 70, 215, 0.18);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(242, 85, 39, 0.045) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-inter);
    overflow-x: hidden;
    position: relative;
}

/* Glow blobs hidden in the light theme — they belong to the previous dark aesthetic */
.glow-blob {
    display: none;
}

.blob-orange {
    top: 5%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: var(--accent-orange);
    animation: floatBlob 15s infinite alternate;
}

.blob-violet {
    top: 45%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: var(--accent-violet);
    animation: floatBlob2 20s infinite alternate;
}

.blob-blue {
    bottom: 10%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: var(--accent-blue);
    animation: floatBlob 18s infinite alternate-reverse;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -60px) scale(1.1); }
    100% { transform: translate(-20px, 30px) scale(0.9); }
}

@keyframes floatBlob2 {
    0% { transform: translate(0, 0) scale(0.9); }
    50% { transform: translate(-50px, 40px) scale(1.05); }
    100% { transform: translate(30px, -30px) scale(1); }
}

/* Base Layout Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Styles */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 12px 32px rgba(15, 23, 42, 0.08);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-color-glow);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 18px 40px rgba(15, 23, 42, 0.11);
}

/* Header & Navigation */
header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(246, 248, 252, 0.85);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-wheel {
    width: 0.95em;
    height: 0.95em;
    margin-right: 1px;
    color: var(--text-primary);
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-orange);
    display: inline-block;
    margin-left: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 6px 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease,
                box-shadow 0.3s ease;
    opacity: 0;
    box-shadow: 0 0 0 rgba(242, 85, 39, 0);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    opacity: 1;
    box-shadow: 0 0 10px rgba(242, 85, 39, 0.45);
}

.btn-header {
    background: var(--text-primary);
    border: 1px solid var(--text-primary);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-header:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(242, 85, 39, 0.25);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-tag {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 85, 39, 0.1);
    border: 1px solid rgba(242, 85, 39, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-outfit);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--text-primary) 30%, #475569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .gradient-text {
    color: var(--accent-orange);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero-desc {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 560px;
    padding: 24px 28px;
    border-radius: 18px;
    background: var(--bg-soft);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-orange);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.hero-desc::before,
.hero-desc::after { content: none; }

.hero-desc > * {
    position: relative;
    z-index: 1;
}

/* Inline wordmark inside body copy — inherits font so it sits on the text baseline */
.inline-logo {
    font-family: inherit;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    letter-spacing: 0;
}

.logo-wheel-inline {
    width: 1em;
    height: 1em;
    margin: 0 1px 0 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -0.08em;
    filter: drop-shadow(0 0 4px rgba(242, 85, 39, 0.5));
}

/* Selector Card */
.selector-card {
    padding: 30px;
    width: 100%;
    max-width: 440px;
}

.selector-title {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.select-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.select-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.select-field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.custom-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.custom-select-wrapper::after {
    content: '↓';
    font-size: 12px;
    color: var(--text-muted);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.custom-select:focus + ::after {
    color: var(--text-primary);
}

.btn-go {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff7854 100%);
    border: none;
    padding: 16px;
    border-radius: 14px;
    color: var(--text-primary);
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px var(--accent-orange-glow);
    position: relative;
    overflow: hidden;
}

.btn-go:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 85, 39, 0.5);
}

.btn-go::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
    opacity: 0;
}

.btn-go:hover::after {
    left: 120%;
    opacity: 1;
}

/* Interactive Display Glass Card (Right Column) */
.display-card-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.display-card {
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.display-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.display-card-title {
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.display-status {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(39, 242, 110, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(39, 242, 110, 0.15);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-green);
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px var(--accent-green); }
}

/* Spec Badges styling */
.spec-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    left: 40px;
    top: 100px;
    z-index: 10;
}

.spec-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    cursor: default;
}

.spec-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.spec-badge i {
    font-size: 20px;
    margin-bottom: 8px;
}

.spec-badge span {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Individual badge themes matching Qsaca UI */
.badge-orange {
    border-color: rgba(242, 85, 39, 0.15);
    background: radial-gradient(circle at center, rgba(242, 85, 39, 0.05) 0%, rgba(0,0,0,0) 80%);
}
.badge-orange i { color: var(--accent-orange); }
.badge-orange:hover {
    box-shadow: 0 0 20px var(--accent-orange-glow);
    border-color: rgba(242, 85, 39, 0.4);
}

.badge-green {
    border-color: rgba(39, 242, 110, 0.15);
    background: radial-gradient(circle at center, rgba(39, 242, 110, 0.05) 0%, rgba(0,0,0,0) 80%);
}
.badge-green i { color: var(--accent-green); }
.badge-green:hover {
    box-shadow: 0 0 20px var(--accent-green-glow);
    border-color: rgba(39, 242, 110, 0.4);
}

.badge-blue {
    border-color: rgba(39, 147, 242, 0.15);
    background: radial-gradient(circle at center, rgba(39, 147, 242, 0.05) 0%, rgba(0,0,0,0) 80%);
}
.badge-blue i { color: var(--accent-blue); }
.badge-blue:hover {
    box-shadow: 0 0 20px var(--accent-blue-glow);
    border-color: rgba(39, 147, 242, 0.4);
}

/* Large Interactive Car Asset Render */
.car-render-container {
    height: 380px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding-right: 10px;
}

.car-render-img {
    height: 90%;
    width: auto;
    object-fit: contain;
    transform: rotate(0deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
    z-index: 2;
}

/* Active Glow Backlight for vehicle display */
.car-glow-backlight {
    position: absolute;
    width: 200px;
    height: 300px;
    right: 40px;
    background: radial-gradient(circle, var(--accent-orange-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Orbital switchers at the bottom of display card */
.orbital-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.orbit-thumb {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.orbit-thumb img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transform: rotate(90deg);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.orbit-thumb::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px dashed var(--text-muted);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-smooth);
}

.orbit-thumb.active {
    border-color: var(--accent-orange);
    background: rgba(242, 85, 39, 0.05);
}

.orbit-thumb.active img {
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
}

.orbit-thumb.active::before {
    opacity: 0.5;
    animation: rotateOrbit 12s linear infinite;
    border-color: var(--accent-orange);
}

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

/* 3D Glass Accent Shape Floating */
.floating-accent {
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 80px;
    height: 80px;
    z-index: 5;
    animation: floatShape 8s ease-in-out infinite alternate;
}

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(15deg); }
}

/* Partners Marquee Showcase */
.partners {
    padding: 70px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.partners-strip {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.partners-title {
    text-align: center;
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.partners-track {
    display: flex;
    width: calc(260px * 12);
    animation: scrollTrack 28s linear infinite;
    gap: 28px;
    align-items: center;
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: var(--transition-smooth);
    cursor: default;
}

.partner-logo:hover {
    transform: translateY(-3px);
    border-color: var(--border-color-glow);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.partner-logo svg {
    height: 24px;
    fill: var(--text-primary);
}

.partner-logo img {
    max-height: 46px;
    max-width: 78%;
    object-fit: contain;
}

/* Per-logo size normalisation — each file has different internal padding,
   so we tune individually to make the optical weight match across the strip. */
.partner-logo img[alt="Barclays"] {
    max-height: 70px;
    max-width: 95%;
    transform: scale(1.35);
    transform-origin: center;
}

.partner-logo img[alt="EY"] {
    max-height: 60px;
    transform: scale(1.05) translateY(-6px);
    transform-origin: center;
}

.partner-logo img[alt="KPMG"] {
    max-height: 60px;
    transform: scale(1.2);
    transform-origin: center;
}

.partner-logo img[alt="PwC"] {
    max-height: 60px;
    transform: scale(1.15);
    transform-origin: center;
    object-fit: contain;
    display: block;
}

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-210px * 5)); }
}

/* Services / Corporate Solutions Section */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(162, 39, 242, 0.1);
    border: 1px solid rgba(162, 39, 242, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-violet);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-outfit);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    font-size: 15px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(242, 85, 39, 0.08);
    border: 1px solid rgba(242, 85, 39, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-orange);
    transition: var(--transition-smooth);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-violet));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-glow);
}

.service-card:hover .service-icon {
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-title {
    font-family: var(--font-outfit);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
}

.service-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-orange);
    text-decoration: none;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 12px;
    color: #ffffff;
}

/* Fleet Carousel Showcase */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.fleet-card {
    overflow: hidden;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.fleet-img-container {
    height: 240px;
    position: relative;
    background: radial-gradient(circle at center, rgba(255,255,255,0.02) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
    display: block;
}

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

.fleet-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.fleet-name {
    font-family: var(--font-outfit);
    font-size: 22px;
    font-weight: 600;
}

.fleet-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(39, 147, 242, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(39, 147, 242, 0.2);
    padding: 4px 10px;
    border-radius: 50px;
}

.fleet-details-list {
    display: flex;
    gap: 20px;
    list-style: none;
}

.fleet-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.fleet-detail-item i {
    color: var(--text-muted);
}

/* Calculator & Sustainability Combo Panel */
.dashboard-section {
    position: relative;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

.calc-panel {
    padding: 40px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-field label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.calc-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255,255,255,0.05);
}

.calc-results {
    grid-column: span 2;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.calc-res-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-res-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.calc-res-value {
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.calc-res-value.accent-orange { color: var(--accent-orange); }
.calc-res-value.accent-green { color: var(--accent-green); }

/* Sustainability Stats Panel */
.stats-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(20, 22, 28, 0.6) 0%, rgba(10, 11, 14, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.stats-panel::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent-green);
    filter: blur(80px);
    opacity: 0.2;
}

.stats-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stats-title {
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 700;
}

.stats-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.tracker-display {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tracker-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.tracker-bar-fill {
    width: 78%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-blue) 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(39, 242, 110, 0.3);
}

.tracker-metrics {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-metric-large {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-outfit);
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-green);
}

.stat-unit {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Contact / Corporate Booking Inquiry Form */
.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h2 {
    font-family: var(--font-outfit);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(242, 85, 39, 0.08);
    border: 1px solid rgba(242, 85, 39, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-orange);
}

.contact-method-detail p {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-method-detail h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form-panel {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-field label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--text-primary);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(242, 85, 39, 0.12);
}

.form-textarea {
    resize: none;
    height: 120px;
}

/* Footer Section */
footer {
    padding: 80px 0 40px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-decoration: none;
}

.footer-logo .logo-wheel {
    width: 0.95em;
    height: 0.95em;
    margin-right: 1px;
    color: var(--text-primary);
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.footer-logo .logo-dot {
    margin-left: 8px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
    background: rgba(242, 85, 39, 0.05);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-col-title {
    font-family: var(--font-outfit);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}

.footer-col-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col-links a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* Responsiveness Settings */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        max-width: 600px;
    }
    
    .display-card-wrapper {
        order: -1;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links, .btn-header {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .spec-badges {
        left: 20px;
    }
    
    .display-card {
        padding: 30px 20px;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-results {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Honeypot field — hidden from humans, visible to spam bots */
.hp-field {
    position: absolute !important;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Hero CTA row (replaces the removed selector card) */
.hero-cta-row {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 14px;
}

.hero-cta-primary {
    width: auto;
    display: inline-block;
    padding-left: 38px;
    padding-right: 38px;
    text-decoration: none;
    text-align: center;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition-smooth);
}

.hero-cta-secondary:hover {
    border-color: var(--border-color-glow);
    background: var(--bg-soft);
    transform: translateY(-2px);
}

.hero-cta-secondary i {
    transition: transform 0.3s ease;
}

.hero-cta-secondary:hover i {
    transform: translateX(4px);
}

/* ============================================
   FLEET CATEGORIES (new layout for real cars)
   ============================================ */

.fleet-category-block {
    margin-top: 60px;
}

.fleet-category-block:first-of-type {
    margin-top: 20px;
}

.fleet-category-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 36px;
}

.fleet-category-pill {
    display: inline-block;
    font-family: var(--font-outfit);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid;
}

.fleet-category-title {
    font-family: var(--font-outfit);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.fleet-category-sub {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.55;
}

/* Grid variants */
.fleet-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.fleet-grid-1 {
    grid-template-columns: 1fr;
    max-width: 980px;
    margin: 0 auto;
}

/* Override image container for real photos */
.fleet-card .fleet-img-container {
    height: 220px;
    background: var(--bg-soft);
    overflow: hidden;
}

/* Wide horizontal card layout (for single-feature categories) */
.fleet-card-wide {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
}

.fleet-card-wide .fleet-img-container {
    height: 100%;
    min-height: 320px;
    border-bottom: none;
    border-right: 1px solid var(--border-color);
}

.fleet-card-wide .fleet-info {
    padding: 36px;
    justify-content: center;
}

/* Executive premium accents */
.fleet-card-executive {
    border-color: rgba(242, 85, 39, 0.25);
    box-shadow: 0 20px 60px rgba(242, 85, 39, 0.08);
}

.fleet-card-executive .fleet-name {
    background: linear-gradient(135deg, var(--accent-orange), #ff9a6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fleet-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.fleet-details-list {
    flex-wrap: wrap;
}

/* ----------- OFFICE RIDE Number Plate Overlay ----------- */
.plate-overlay {
    position: absolute;
    z-index: 3;
    background: linear-gradient(180deg, #ffd400 0%, #f5c400 100%);
    color: #0a0b0e;
    font-family: 'Outfit', 'Arial Narrow', Arial, sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 5px 9px;
    border-radius: 3px;
    border: 1.5px solid #1a1a1a;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
    transform-origin: center;
}

/* Per-image positioning (approximates where the yellow plate sits in each photo) */
.plate-xcent {
    bottom: 28%;
    left: 60%;
    transform: scale(0.95);
}

.plate-amaze {
    bottom: 24%;
    left: 58%;
    transform: scale(0.9);
}

.plate-city {
    bottom: 12%;
    left: 30%;
    transform: scale(1);
}

.plate-innova {
    bottom: 18%;
    right: 18%;
    transform: scale(1.05);
}

.plate-camry {
    bottom: 22%;
    left: 22%;
    transform: scale(0.9);
}

/* ============================================
   FLEET CHART (compact 3-column dashboard view)
   ============================================ */
.fleet-section-header {
    margin-bottom: 0;
}

.fleet-arrows {
    width: 100%;
    max-width: 1100px;
    height: 130px;
    margin: 12px auto -30px;
    display: block;
    opacity: 0.85;
}

/* Static arrows — no animation, lower opacity for restraint */
.fleet-arrows .arrow-path {
    stroke-dashoffset: 0;
}

.fleet-chart {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.fleet-column {
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-top: 3px solid transparent;
    transition: var(--transition-smooth);
}

.fleet-col-cat1,
.fleet-col-catA,
.fleet-col-exec { border-top-color: var(--accent-orange); }

.fleet-column:hover {
    transform: translateY(-4px);
}

.fleet-col-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.fleet-col-pill {
    align-self: flex-start;
    font-family: var(--font-outfit);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid;
}

.fleet-col-cat1 .fleet-col-pill,
.fleet-col-catA .fleet-col-pill,
.fleet-col-exec .fleet-col-pill {
    background: rgba(242, 85, 39, 0.08);
    border-color: rgba(242, 85, 39, 0.22);
    color: var(--accent-orange);
}

.fleet-col-title {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.fleet-col-exec .fleet-col-title {
    background: linear-gradient(135deg, var(--accent-orange), #ff9a6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fleet-col-sub {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Chip list */
.fleet-chip-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.fleet-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.fleet-chip:hover {
    background: var(--bg-card);
    border-color: var(--border-color-glow);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.chip-thumb {
    position: relative;
    width: 84px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-soft);
}

.chip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chip-thumb-lg {
    width: 100%;
    height: 150px;
}

.fleet-chip-feature {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
}

.fleet-chip-feature .chip-meta {
    padding: 2px 4px 4px;
}


.chip-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.chip-meta h4 {
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.chip-meta span {
    font-size: 11.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.chip-meta span i {
    color: var(--text-muted);
    font-size: 10px;
}

/* ----------- Responsive ----------- */
@media (max-width: 1024px) {
    .fleet-chart {
        grid-template-columns: 1fr 1fr;
    }
    .fleet-col-cat1 {
        grid-column: span 2;
    }
}

@media (max-width: 680px) {
    .fleet-chart {
        grid-template-columns: 1fr;
    }
    .fleet-col-cat1 {
        grid-column: span 1;
    }
}

/* ============================================
   PAN-INDIA COVERAGE MAP (Hero Right Side)
   ============================================ */
.coverage-card {
    padding: 30px 28px 26px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 560px;
}

.coverage-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(242, 85, 39, 0.04), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.coverage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.map-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.india-map {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* Animated route dashes */
.routes .route {
    stroke-dasharray: 6 8;
    animation: dashFlow 3s linear infinite;
    opacity: 0.85;
}

.routes .route:nth-child(2) { animation-delay: 0.4s; }
.routes .route:nth-child(3) { animation-delay: 0.8s; }
.routes .route:nth-child(4) { animation-delay: 1.2s; }
.routes .route:nth-child(5) { animation-delay: 1.6s; }

@keyframes dashFlow {
    0%   { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -28; }
}

/* Pulsing city hubs — single accent (orange) */
.cities .pulse {
    fill: var(--accent-orange);
    opacity: 0;
    transform-origin: center;
    animation: cityPulse 2.6s ease-out infinite;
}

.cities .city:nth-child(2) .pulse { animation-delay: 0.4s; }
.cities .city:nth-child(3) .pulse { animation-delay: 0.8s; }
.cities .city:nth-child(4) .pulse { animation-delay: 1.2s; }
.cities .city:nth-child(5) .pulse { animation-delay: 1.6s; }

@keyframes cityPulse {
    0%   { opacity: 0.55; r: 5; }
    100% { opacity: 0;    r: 22; }
}

.cities .dot {
    filter: drop-shadow(0 0 6px currentColor);
}

.city-labels text {
    fill: var(--text-primary);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
    letter-spacing: 0.4px;
}

/* Live stats strip */
.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.coverage-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}

.coverage-stat-num {
    font-family: var(--font-outfit);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.coverage-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

@media (max-width: 960px) {
    .coverage-card { min-height: auto; }
}
