/* ============================================
   Ride24 Landing Page Styles
   ============================================ */

/* ---------- Variables ---------- */
:root {
    --maroon: #5b0e15;
    --maroon-dark: #3d0810;
    --maroon-deep: #2a0509;
    --gold: #e2a528;
    --gold-light: #f0c14b;
    --cream: #faf3e2;
    --cream-soft: #f8edd3;
    --cream-bg: #fdf7e6;
    --text-dark: #2a0509;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--cream-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

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

.accent-dark {
    color: var(--maroon);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

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

.btn-gold {
    background: var(--gold);
    color: var(--maroon-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-dark {
    background: var(--maroon);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--maroon-dark);
}

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid rgba(91, 14, 21, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    isolation: isolate;
}

/* Dark variant used on the home page */
.navbar.navbar-dark {
    background: linear-gradient(180deg, var(--maroon-deep) 0%, var(--maroon-dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.navbar-dark .brand {
    color: var(--white);
}

.navbar-dark .nav-links a {
    color: rgba(255, 255, 255, 0.82);
}

.navbar-dark .nav-links a:hover,
.navbar-dark .nav-links a.active {
    color: var(--gold);
}

.navbar-dark .nav-links a.active::after {
    background: var(--gold);
}

.navbar-dark .nav-cta {
    background: var(--gold);
    color: var(--maroon-dark);
}

.navbar-dark .nav-cta:hover {
    background: var(--gold-light);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    color: var(--maroon);
    letter-spacing: 0.5px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--maroon);
    border-radius: 2px;
}

.nav-cta {
    padding: 10px 18px;
    font-size: 14px;
    background: var(--maroon);
    color: var(--white);
}

.nav-cta:hover {
    background: var(--maroon-dark);
}

/* The mobile primary-nav strip is hidden on desktop; the
   @media (max-width: 768px) block lower down switches it on. */
.nav-strip {
    display: none;
}

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 90% 20%, rgba(226, 165, 40, 0.08) 0, transparent 40%),
        radial-gradient(circle at 5% 90%, rgba(91, 14, 21, 0.05) 0, transparent 40%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--maroon-dark);
    margin-bottom: 24px;
}

.hero-accent {
    color: var(--gold);
}

.hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 170px;
}

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

.store-btn i {
    font-size: 28px;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.store-btn small {
    font-size: 10px;
    opacity: 0.85;
    text-transform: none;
}

.store-btn strong {
    font-size: 16px;
    font-weight: 600;
}

.store-dark {
    background: var(--maroon-dark);
    color: var(--white);
}

.store-gold {
    background: var(--gold);
    color: var(--maroon-dark);
}

.store-light {
    background: var(--white);
    color: var(--maroon-dark);
}

/* Hero visual */
.hero-visual {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-target {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 22px solid var(--maroon);
    background: var(--gold);
    z-index: 1;
}

.hero-target::after {
    content: '';
    position: absolute;
    inset: 38%;
    background: var(--maroon);
    border-radius: 50%;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    height: auto;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.22));
}

/* ---------- Features ---------- */
.features {
    padding: 40px 0 60px;
    background: var(--cream-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: transparent;
    padding: 18px 8px;
    border-radius: var(--radius-md);
    box-shadow: none;
    transition: transform 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--gold);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---------- Promo Cards ---------- */
.promos {
    padding: 30px 0 60px;
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.promo-card {
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
    align-items: center;
    overflow: hidden;
    position: relative;
    min-height: 320px;
}

.promo-dark {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    color: var(--white);
}

.promo-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #d99a1f 100%);
    color: var(--maroon-dark);
}

.promo-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-content > p {
    font-size: 14px;
    margin-bottom: 18px;
    opacity: 0.95;
}

.promo-list {
    margin-bottom: 22px;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 8px;
}

.promo-list i {
    color: var(--gold);
    font-size: 16px;
}

.promo-list.dark i {
    color: var(--maroon);
}

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

.promo-image img {
    max-height: 300px;
    width: auto;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.25));
}

/* ---------- How It Works ---------- */
.how-works {
    padding: 70px 0 80px;
    background: var(--cream-bg);
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: transparent;
    box-shadow: none;
    padding: 6px 4px;
    position: relative;
    transition: transform 0.25s ease;
}

.step:hover {
    transform: translateY(-3px);
}

/* Arrow connector between consecutive steps */
.step:not(:last-child)::after {
    content: '\203A';
    position: absolute;
    right: -18px;
    top: 16px;
    color: var(--maroon);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.45;
    pointer-events: none;
}

.step-icon {
    position: relative;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--maroon);
    box-shadow: 0 4px 12px rgba(91, 14, 21, 0.08);
}

.step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    background: var(--gold);
    color: var(--maroon-dark);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream-bg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.step-text {
    text-align: left;
    padding-top: 2px;
}

.step h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 4px;
}

.step p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---------- Ready CTA ---------- */
.cta-band {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
    padding: 50px 0;
    color: var(--white);
    position: relative;
    z-index: 2;
}

/* When the CTA follows the Download section, pull it up so the car
   and phone tuck behind its top edge (services-page layered look) */
.download-section + .cta-band {
    margin-top: -70px;
    padding-top: 90px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-text p {
    font-size: 14px;
    opacity: 0.9;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 60px 0 0;
    border-top: 1px solid rgba(91, 14, 21, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 40px;
}

.footer-col .brand {
    margin-bottom: 16px;
    color: var(--maroon);
}

.footer-about {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    border: none;
}

.socials a:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: translateY(-2px);
}

.footer-col h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a,
.footer-contact li {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--maroon);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--maroon);
    margin-top: 4px;
}

.footer-bottom {
    background: var(--maroon-dark);
    border-top: none;
    padding: 16px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        min-height: 420px;
    }

    .hero-target {
        right: 50%;
        transform: translate(50%, -50%);
        width: 300px;
        height: 300px;
    }

    .hero-image {
        max-width: 520px;
    }

    .store-buttons {
        justify-content: center;
    }

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

    .promos-grid {
        grid-template-columns: 1fr;
    }

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

    .step:not(:last-child)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* ----- Mobile nav -------------------------------------------------
       Desktop links + Download App are hidden. A dedicated
       full-width cream strip below the maroon header carries the
       primary nav. The strip's background lives on the .nav-strip
       block (a direct child of .navbar) so it spans the entire
       viewport with zero margin tricks. */

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-strip {
        display: block;
        background: var(--cream-bg);
        border-top: 1px solid rgba(91, 14, 21, 0.10);
        border-bottom: 1px solid rgba(91, 14, 21, 0.06);
    }

    .nav-strip-inner {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap: 0;
        padding: 0 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .nav-strip-inner::-webkit-scrollbar {
        display: none;
    }

    .nav-strip a {
        flex: 0 0 auto;
        padding: 12px 10px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.2px;
        white-space: nowrap;
        color: var(--maroon-dark);
        position: relative;
        text-decoration: none;
    }

    .nav-strip a:hover,
    .nav-strip a.active {
        color: var(--maroon);
    }

    .nav-strip a.active::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 10px;
        right: 10px;
        height: 2px;
        background: var(--maroon);
        border-radius: 2px;
    }

    /* ----- Existing mobile tweaks ----- */
    .hero {
        padding: 50px 0 70px;
    }

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

    .hero-visual {
        min-height: 360px;
    }

    .hero-image {
        max-width: 100%;
    }

    .promo-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 22px;
    }

    .promo-list li {
        justify-content: center;
    }

    .promo-image img {
        max-height: 240px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

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

    .steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .store-btn {
        min-width: 0;
        flex: 1 1 auto;
    }
}

/* ============================================
   Services Page
   ============================================ */

/* Extra button variants used on services page */
.btn-outline-dark {
    background: transparent;
    color: var(--maroon-dark);
    border: 2px solid var(--maroon-dark);
}

.btn-outline-dark:hover {
    background: var(--maroon-dark);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--maroon-dark);
    border-color: var(--white);
}

.btn-lg {
    padding: 14px 30px;
    font-size: 15px;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--maroon);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.eyebrow.center {
    display: block;
    text-align: center;
}

/* ---------- Services Hero ---------- */
.services-hero {
    background: linear-gradient(135deg, var(--gold) 0%, #d99a1f 100%);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 75% 30%, rgba(91, 14, 21, 0.06) 0, transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(91, 14, 21, 0.05) 0, transparent 50%);
    pointer-events: none;
}

.services-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.services-hero-text h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-h-accent {
    color: var(--maroon-dark);
}

.services-hero-sub {
    font-size: 16px;
    color: var(--maroon-deep);
    opacity: 0.85;
    margin-bottom: 28px;
}

.services-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.services-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.services-hero-emblem {
    max-width: 460px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(91, 14, 21, 0.18));
}

/* ---------- Our Services Grid ---------- */
.our-services {
    padding: 80px 0 60px;
    background: var(--white);
}

.section-head {
    text-align: center;
    margin-bottom: 44px;
}

.section-head .section-title {
    margin-bottom: 10px;
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Center a lone seventh card when using 3 columns */
@media (min-width: 993px) {
    .services-grid .service-card:nth-last-child(1):nth-child(3n + 1) {
        grid-column: 2;
    }
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(91, 14, 21, 0.08);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    box-shadow: 0 6px 18px rgba(91, 14, 21, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 140px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(91, 14, 21, 0.1);
}

.service-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cream-soft);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.service-icon .icon-loader-rickshaw {
    width: 38px;
    height: 28px;
    display: block;
}

.service-body h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 6px;
}

.service-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 200px;
}

.service-arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.service-arrow:hover {
    background: var(--maroon-dark);
    transform: translateX(2px);
}

/* ---------- Why Choose Ride24 ---------- */
.why-choose {
    padding: 36px 0 80px;
    background: var(--white);
}

.why-choose .container {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-soft) 100%);
    border-radius: var(--radius-lg);
    padding: 36px 36px 40px;
}

.why-choose .eyebrow.center {
    margin-bottom: 26px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.why-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(226, 165, 40, 0.18);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-bottom: 4px;
}

.why-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---------- Download Section ---------- */
.download-section {
    background: var(--white);
    padding: 50px 0 0;
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* Faint city skyline silhouette across the entire section */
.download-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 220' preserveAspectRatio='xMidYEnd meet'><g fill='%235b0e15' opacity='0.07'><polygon points='0,220 0,150 40,150 40,110 80,110 80,160 120,160 120,90 170,90 170,140 210,140 210,170 260,170 260,120 310,120 310,80 360,80 360,135 410,135 410,165 460,165 460,100 510,100 510,150 560,150 560,180 610,180 610,130 660,130 660,95 710,95 710,140 760,140 760,170 810,170 810,115 860,115 860,150 910,150 910,180 960,180 960,125 1010,125 1010,90 1060,90 1060,140 1110,140 1110,170 1160,170 1160,115 1210,115 1210,150 1260,150 1260,180 1310,180 1310,125 1360,125 1360,90 1410,90 1410,140 1460,140 1460,170 1510,170 1510,115 1560,115 1560,150 1600,150 1600,220'/></g></svg>");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
}

.download-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 1.1fr;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.download-phone img {
    max-height: 380px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.download-text h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.download-tagline {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.download-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 22px;
    max-width: 360px;
}

.download-car {
    position: relative;
    padding: 30px 0 40px;
}

/* Big golden swoosh under the car */
.download-car::before {
    content: '';
    position: absolute;
    left: -8%;
    right: -12%;
    bottom: 0;
    height: 55%;
    background: linear-gradient(180deg, transparent 0%, var(--gold) 65%, #c98e1a 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    opacity: 0.95;
    z-index: 0;
}

.download-car img {
    position: relative;
    z-index: 1;
    width: 110%;
    max-width: none;
    margin-left: -5%;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.22));
}

/* Floating location pin above the car */
.download-pin {
    position: absolute;
    top: 0;
    right: 14%;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

/* Black store-button variant used in the Download section */
.store-black {
    background: #0f0f10;
    color: var(--white);
}

.store-black:hover {
    background: #1d1d20;
}

/* ---------- CTA buttons-actions wrapper ---------- */
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* ---------- Services Page Responsive ---------- */
@media (max-width: 992px) {
    .services-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-hero-cta {
        justify-content: center;
    }

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

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

    .download-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-phone img,
    .download-car img {
        margin: 0 auto;
        max-width: 80%;
    }

    .download-car::before {
        display: none;
    }

    .download-section {
        padding: 50px 0 60px;
    }

    .download-section + .cta-band {
        margin-top: 0;
        padding-top: 50px;
    }
}

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

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-choose .container {
        padding: 28px 20px 32px;
    }
}

