/**
 * ============================================================
 * FILE: about-us.css
 * PROJECT: Rudra Holidays
 * ============================================================
 * Purpose:  Styles for the About Us page. Includes hero
 *           section, owner/founder section, coverage map
 *           section, why-choose-us grid, experience section,
 *           route card, testimonials, and footer strip.
 *
 * Used By:  html/about-us.html
 *
 * Depends On:
 *   theme.css       → dark mode overrides
 *   responsive.css  → media queries
 *
 * Contains:
 *   - CSS variables (:root)
 *   - Header & navigation
 *   - About hero section
 *   - Owner/founder two-column layout
 *   - Owner image wrap
 *   - Coverage wrap + coverage points
 *   - Why-choose-us cards (.why-card)
 *   - Experience section with stat boxes
 *   - Route card
 *   - Footer strip
 * ============================================================
 */
:root {
    --primary-color: #b91c1c;
    --primary-hover: #991b1b;
    --primary-dark: #7f1d1d;
    --accent-color: #f59e0b;

    --bg-main: #faf7f0;
    --bg-alt: #f5efe3;
    --bg-card: #ffffff;
    --bg-soft: #fffaf5;

    --text-color: #1f2937;
    --text-muted: #6b7280;
    --text-light: #ffffff;

    --border-color: rgba(127, 29, 29, 0.12);
    --border-strong: rgba(127, 29, 29, 0.2);

    --shadow-sm: 0 6px 18px rgba(31, 41, 55, 0.06);
    --shadow-md: 0 14px 34px rgba(31, 41, 55, 0.10);
    --shadow-lg: 0 24px 60px rgba(31, 41, 55, 0.14);

    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(127, 29, 29, 0.12);

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background:
        radial-gradient(circle at top left, rgba(185, 28, 28, 0.05), transparent 24%),
        radial-gradient(circle at 85% 12%, rgba(245, 158, 11, 0.08), transparent 20%),
        linear-gradient(180deg, #fffdf8 0%, var(--bg-main) 100%);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1400px, calc(100% - clamp(24px, 4vw, 32px)));
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 14px;
    transition: 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn i {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    box-shadow: 0 10px 30px rgba(185, 28, 28, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(185, 28, 28, 0.24);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.76);
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #fff;
    border-color: rgba(185, 28, 28, 0.18);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    padding: 16px 0;
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(127, 29, 29, 0.08);
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo img {
    height: 72px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-dark);
    font-size: 1.7rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 150;
}

.mobile-nav-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(185, 28, 28, 0.45);
    box-shadow: 0 0 18px rgba(185, 28, 28, 0.22);
    animation: floatParticle linear infinite;
    opacity: 0.75;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.75;
    }
    50% {
        opacity: 0.45;
    }
    100% {
        transform: translateY(-120px) translateX(30px) scale(0.9);
        opacity: 0;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 26px;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    z-index: -1;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(185, 28, 28, 0.12);
    top: 8%;
    left: -8%;
}

.hero-orb-2 {
    width: 280px;
    height: 280px;
    background: rgba(245, 158, 11, 0.10);
    right: 6%;
    bottom: 12%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: center;
}

.hero-copy {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 0.82rem;
    letter-spacing: 3px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.subtitle::before,
.subtitle::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
}

.hero-copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.98;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    color: #111827;
    white-space: nowrap;
}

.hero-copy h1 span {
    color: var(--primary-color);
}

.hero-description {
    max-width: 800px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 auto 28px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-points {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(127, 29, 29, 0.10);
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.route-card {
    width: 100%;
    min-height: 520px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,250,244,0.96)),
        radial-gradient(circle at top, rgba(185, 28, 28, 0.10), transparent 42%);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.route-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 28px;
    border: 1px solid rgba(185, 28, 28, 0.08);
    pointer-events: none;
}

.route-card-top {
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
}

.mini-kicker {
    color: var(--primary-color);
    letter-spacing: 3px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.route-card-top h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.06;
    color: #111827;
}

.route-map {
    position: relative;
    min-height: 280px;
    margin-top: 30px;
}

.route-line {
    position: absolute;
    left: 14%;
    right: 14%;
    top: 50%;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(185, 28, 28, 0.18), rgba(185, 28, 28, 0.78), rgba(185, 28, 28, 0.18));
    border-radius: 999px;
}

.route-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 10px rgba(185, 28, 28, 0.10);
}

.dot-1 { left: 18%; top: 50%; transform: translateY(-50%); }
.dot-2 { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.dot-3 { right: 18%; top: 50%; transform: translateY(-50%); }

.route-pin {
    position: absolute;
    width: 160px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-sm);
}

.route-pin strong {
    display: block;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 2px;
}

.route-pin p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.pin-1 {
    left: 2%;
    top: 12%;
}

.pin-2 {
    right: 2%;
    top: 13%;
}

.pin-3 {
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
}

.route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.route-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(185, 28, 28, 0.06);
    border: 1px solid rgba(185, 28, 28, 0.12);
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.brand-strip {
    padding: 0 0 70px;
    position: relative;
    z-index: 2;
}

.brand-strip-inner {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-sm);
    color: var(--primary-dark);
    font-weight: 600;
}

.brand-badge i {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.owner-section,
.why-section,
.experience-section,
.testimonials-section,
.coverage-section,
.cta-section {
    position: relative;
    z-index: 2;
}

.owner-section {
    padding: 10px 0 80px;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 12px;
    color: #111827;
}

.section-head p:last-child {
    color: var(--text-muted);
    line-height: 1.7;
}

.owner-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
}

.owner-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 520px;
    background: #fff;
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-lg);
    display: grid;
    place-items: center;
    padding: 18px;
}

.owner-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(185, 28, 28, 0.12);
    filter: blur(95px);
    z-index: 0;
}

.owner-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.owner-content {
    padding: 10px 4px;
}

.owner-kicker {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 2.5px;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.owner-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    margin-bottom: 18px;
    color: #111827;
}

.owner-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.owner-points {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.owner-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(127, 29, 29, 0.08);
    box-shadow: var(--shadow-sm);
}

.owner-point i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.stats-section {
    padding: 12px 0 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    padding: 22px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-align: center;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 8px;
    color: #111827;
}

.stat-card p {
    color: var(--text-muted);
}

.why-section {
    padding: 10px 0 90px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.why-card {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(185, 28, 28, 0.22);
}

.why-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 14px;
    display: inline-block;
}

.why-card h4 {
    font-size: 1.12rem;
    margin-bottom: 10px;
    color: #111827;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.experience-section {
    padding: 10px 0 90px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
}

.experience-media {
    position: relative;
    min-height: 500px;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-lg);
    display: grid;
    place-items: center;
    padding: 16px;
}

.experience-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(185, 28, 28, 0.12);
    filter: blur(95px);
}

.experience-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.experience-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    margin-bottom: 16px;
    color: #111827;
}

.experience-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.experience-list {
    display: grid;
    gap: 12px;
}

.experience-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(127, 29, 29, 0.08);
    box-shadow: var(--shadow-sm);
}

.experience-list i {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.testimonials-section {
    padding: 10px 0 90px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-md);
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
}

.coverage-section {
    padding: 10px 0 90px;
}

.coverage-wrap {
    position: relative;
    border-radius: 28px;
    padding: 34px;
    min-height: 220px;
    background:
        radial-gradient(circle at center, rgba(185, 28, 28, 0.08), transparent 35%),
        rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.coverage-route {
    position: absolute;
    left: 34px;
    right: 34px;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 28, 28, 0.7), transparent);
    transform: translateY(-50%);
    opacity: 0.6;
}

.coverage-points {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.coverage-points span {
    padding: 12px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(127, 29, 29, 0.10);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.cta-section {
    padding: 20px 0 18px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(185, 28, 28, 0.10), transparent 35%),
        linear-gradient(180deg, #fff 0%, #fffaf4 100%);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-lg);
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    margin: 10px 0;
    color: #111827;
}

.cta-inner p:last-child {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-strip {
    background: linear-gradient(180deg, #8f1f1f 0%, #7f1d1d 100%);
    min-height: 88px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-strip-inner {
    display: flex;
    align-items: center;
    min-height: 88px;
}

.footer-strip p {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.tilt-card {
    --rx: 0deg;
    --ry: 0deg;
    transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
    will-change: transform;
}

@media (max-width: 1100px) {
    .hero-grid,
    .owner-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-list {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .btn-nav {
        display: none;
    }

    .nav-list.open {
        display: flex;
        position: fixed;
        top: 96px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(127, 29, 29, 0.10);
        border-radius: 22px;
        padding: 12px;
        box-shadow: var(--shadow-lg);
        z-index: 250;
    }

    .nav-list.open li {
        width: 100%;
    }

    .nav-list.open a {
        display: block;
        padding: 14px;
        border-radius: 14px;
    }

    .nav-list.open a:hover,
    .nav-list.open a.active {
        background: rgba(185, 28, 28, 0.08);
    }

    .nav-list.open a::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 10vw, 4rem);
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 116px;
    }

    .route-card,
    .owner-image-wrap,
    .experience-media {
        min-height: 320px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .why-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .owner-content,
    .cta-inner {
        padding: 22px;
    }

    .coverage-wrap {
        padding: 22px;
    }

    .footer-strip,
    .footer-strip-inner {
        min-height: 72px;
    }

    .footer-strip p {
        font-size: 0.95rem;
    }

    .route-pin {
        width: 130px;
    }

    .pin-1 {
        left: 0;
    }

    .pin-2 {
        right: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 20px;
        min-height: auto;
    }

    .route-card {
        min-height: auto;
        padding: 20px;
    }

    .owner-image-wrap,
    .experience-media {
        min-height: 260px;
    }

    /* Route map: stack pins vertically */
    .route-map {
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: auto;
    }

    .route-line {
        display: none;
    }

    .route-dot {
        display: none;
    }

    .route-pin {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        margin-bottom: 0;
    }

    .route-tags {
        margin-top: 14px;
    }

    .coverage-wrap {
        padding: 18px;
    }

    .cta-inner {
        padding: 18px;
        border-radius: 22px;
    }

    .owner-content {
        padding: 10px 0;
    }

    .owner-point {
        padding: 12px 14px;
    }

    .experience-list div {
        padding: 12px 14px;
    }

    .owner-section,
    .why-section,
    .experience-section,
    .testimonials-section,
    .coverage-section {
        padding: 10px 0 50px;
    }

    .stats-section {
        padding: 10px 0 50px;
    }

    .brand-strip {
        padding: 0 0 40px;
    }
}