/* ========================================
   Anytime Executive Travel - About Page Styles
   ======================================== */

/* About Page Header - show Mercedes branding */
.page-header .page-header-image {
    object-position: center 70%;
}

/* Improve text readability on About page */
.page-header-content h1,
.page-header-content p,
.page-header-content .section-subtitle {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 40px rgba(0, 0, 0, 0.6);
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-content p {
    font-size: 1.0625rem;
    color: var(--color-light-gray);
    line-height: 1.9;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

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

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    z-index: -1;
}

/* Values */
.values {
    background-color: var(--color-charcoal);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-card {
    padding: var(--spacing-md);
    background-color: var(--color-dark-gray);
    border-top: 3px solid var(--color-gold);
    transition: all var(--transition-medium);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-light-gray);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Chauffeurs Section */
.chauffeurs {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.chauffeurs-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.chauffeurs-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chauffeurs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.85) 40%,
        rgba(10, 10, 10, 1) 65%
    );
}

.chauffeurs .container {
    width: 100%;
}

.chauffeurs-content {
    max-width: 550px;
    position: relative;
    z-index: 1;
}

.chauffeurs-content > p {
    font-size: 1.0625rem;
    color: var(--color-light-gray);
}

.chauffeur-features {
    margin-top: var(--spacing-md);
}

.chauffeur-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-dark-gray);
}

.chauffeur-feature:last-child {
    border-bottom: none;
}

.chauffeur-feature .feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
}

.chauffeur-feature .feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-gold);
}

.chauffeur-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.chauffeur-feature p {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    margin-bottom: 0;
}

/* Commitment Section */
.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.commitment-image {
    position: relative;
    overflow: hidden;
}

.commitment-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

.commitment-image:hover img {
    transform: scale(1.03);
}

.commitment-content p {
    font-size: 1.0625rem;
    color: var(--color-light-gray);
    line-height: 1.9;
}

.commitment-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-gold);
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-left: 3px solid var(--color-gold);
    padding-left: 1.5rem;
}

/* Statistics */
.stats {
    background-color: var(--color-charcoal);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-light-gray);
    margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .story-image {
        order: -1;
    }

    .story-image::before {
        display: none;
    }

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

    .chauffeurs-bg {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .chauffeurs-overlay {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(10, 10, 10, 1) 100%
        );
    }

    .chauffeurs {
        flex-direction: column;
        min-height: auto;
    }

    .chauffeurs-content {
        max-width: 100%;
        padding: 0 var(--container-padding);
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .commitment-image {
        order: -1;
    }

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

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

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

    .stat-number {
        font-size: 3rem;
    }

    .chauffeurs-bg {
        height: 300px;
    }
}
