/* ==========================================================================
   ABOUT PAGE — Premium Taxi Website Design
   Compact Hero | Left-Content Right-Image | Taxi Animations
   ========================================================================== */

/* ---- 1. HERO SECTION ---- */
.about-hero {
    position: relative;
    min-height: 440px;
    background-size: cover;
    background-position: center 40%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(13, 42, 32, 0.55) 0%, rgba(13, 42, 32, 0.35) 55%, rgba(13, 42, 32, 0.5) 100%);
    z-index: 1;
}

/* Road stripe animation on hero bottom */
.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, #C5A880 0 60px, transparent 60px 90px);
    background-size: 90px 100%;
    animation: roadStripe 1s linear infinite;
    z-index: 2;
}

@keyframes roadStripe {
    from { background-position: 0 0; }
    to { background-position: 90px 0; }
}

.about-hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.about-hero-content {
    color: #fff;
    animation: slideInLeft 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.about-hero-right {
    animation: slideInRight 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
    display: flex;
    justify-content: flex-end;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Breadcrumbs */
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
    margin-bottom: 1.2rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover { color: #C5A880; }

.breadcrumbs i {
    font-size: 0.7rem;
    color: #C5A880;
}

.breadcrumbs span {
    color: #fff;
    font-weight: 600;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #C5A880 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.about-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.hero-badge i,
.hero-badge svg {
    color: #C5A880;
}

/* Floating taxi card on right */
.hero-taxi-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-taxi-card-title {
    color: #E2C792;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero-route-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.hero-route-city {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.hero-route-arrow {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #C5A880, transparent);
    position: relative;
}

.hero-route-arrow::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #C5A880;
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
}

.hero-card-stat-item {
    text-align: center;
}

.hero-card-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: #E2C792;
    display: block;
    line-height: 1;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-card-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Animated taxi SVG */
.hero-taxi-anim {
    margin: 0.75rem auto 0;
    position: relative;
    height: 60px;
    overflow: hidden;
}

.taxi-svg-wrap {
    animation: taxiRide 4s linear infinite;
}

@keyframes taxiRide {
    0% { transform: translateX(-80px); }
    100% { transform: translateX(280px); }
}

/* ---- 2. WHY CHOOSE US / STORY SECTION ---- */
.our-story-section {
    padding: 5rem 0;
    background: #FAF9F6;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content {
    order: 1;
}

.story-image-wrap {
    order: 2;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(13, 42, 32, 0.2);
}

.story-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-image-wrap:hover img {
    transform: scale(1.04);
}

/* Gold badge on image */
.story-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #C5A880;
    color: #0D2A20;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(11, 107, 84, 0.08);
    border: 1px solid rgba(11, 107, 84, 0.2);
    color: #0B6B54;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.story-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0D2A20;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.story-content p {
    color: #374F46;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.story-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.93rem;
    font-weight: 600;
    color: #0D2A20;
}

.story-feature-item i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0B6B54, #10B981);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ---- 3. VISION / MISSION / VALUES ---- */
.vision-mission-section {
    padding: 5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Road lane decoration in bg */
.vision-mission-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg, #C5A880 0 40px, transparent 40px 60px);
    opacity: 0.4;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0D2A20;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: #374F46;
    font-size: 0.97rem;
    line-height: 1.7;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vm-card {
    padding: 2.2rem 1.8rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid #E1E8E5;
    box-shadow: 0 4px 16px rgba(13, 42, 32, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0B6B54, #C5A880);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(13, 42, 32, 0.12);
    border-color: #0B6B54;
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #0B6B54, #10B981);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 1rem;
    transition: transform 0.35s ease;
}

.vm-card:hover .vm-icon {
    transform: rotate(-10deg) scale(1.05);
}

.vm-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0D2A20;
    margin-bottom: 0.7rem;
}

.vm-card p {
    color: #374F46;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---- 4. WHY US / FEATURES GRID ---- */
.why-us-section {
    padding: 5rem 0;
    background: #FAF9F6;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border: 1px solid #E1E8E5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 42, 32, 0.05);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(13, 42, 32, 0.1);
    border-color: #C5A880;
}

.why-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(11, 107, 84, 0.08);
    color: #0B6B54;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    background: #0B6B54;
    color: #fff;
}

.why-card-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0D2A20;
    margin-bottom: 0.35rem;
}

.why-card-text p {
    font-size: 0.85rem;
    color: #374F46;
    line-height: 1.6;
}

/* ---- 5. STATISTICS ---- */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    color: var(--lux-text-dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 40px,
        rgba(11, 107, 84, 0.05) 40px,
        rgba(11, 107, 84, 0.05) 41px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(11, 107, 84, 0.05) 60px,
        rgba(11, 107, 84, 0.05) 61px
    );
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section .section-header h2 {
    color: var(--lux-text-dark);
}

.stats-section .section-header p {
    color: var(--lux-text-slate);
}

.stats-section .section-tag {
    background: rgba(11, 107, 84, 0.08);
    border-color: rgba(11, 107, 84, 0.15);
    color: var(--lux-text-dark);
}

.stats-section .section-tag i {
    color: var(--lux-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(11, 107, 84, 0.05);
    border-radius: 1.25rem;
    border: 1px solid rgba(11, 107, 84, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(11, 107, 84, 0.12);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--lux-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--lux-primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--lux-text-slate);
    font-weight: 500;
}

/* ---- 6. CTA SECTION ---- */
.about-cta-section {
    padding: 5rem 0;
    background: #FAF9F6;
}

.about-cta-inner {
    background: #fff;
    border-radius: 1.5rem;
    padding: 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(13, 42, 32, 0.06);
    border: 1px solid #E1E8E5;
    max-width: 950px;
    margin: 0 auto;
}

.about-cta-inner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(11, 107, 84, 0.04);
    border-radius: 50%;
}

.about-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 30%;
    width: 120px;
    height: 120px;
    background: rgba(197, 168, 128, 0.08);
    border-radius: 50%;
}

.about-cta-content {
    position: relative;
    z-index: 1;
}

.about-cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0D2A20;
    margin-bottom: 0.75rem;
}

.about-cta-content p {
    color: #374F46;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #C5A880;
    color: #0D2A20;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta-primary:hover {
    background: #B89568;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #0B6B54;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid #0B6B54;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta-secondary:hover {
    background: #0B6B54;
    color: #fff;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.reveal-init {
    opacity: 0;
    transform: translateY(28px);
}

.reveal.reveal-init.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        padding-top: 6rem;
    }

    .about-hero-right { display: none; }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-content { order: 1; }
    .story-image-wrap { order: 2; }

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

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

    .about-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

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

    .about-cta-actions {
        flex-direction: column;
    }
}
