/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 50vh;
    background: url('../images/car3.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(var(--primary-blue-rgb), 0.9),
        rgba(var(--primary-dark-rgb), 0.9)
    );
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
    padding: 40px 20px;
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Mission Section */
.mission-section {
    padding: 80px 20px;
    background: var(--text-white);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: var(--gradient-primary);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    color: var(--text-white);
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.values-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-small);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--text-white);
}

.value-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    color: var(--primary-blue);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    background: var(--text-white);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 20px;
    background: var(--text-white);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    color: var(--primary-blue);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--text-white);
    box-shadow: var(--shadow-small);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-large);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.about-btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    border-color: rgba(var(--text-white-rgb), 0.2);
    color: var(--text-white);
    border-radius: 5px;
}

.about-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--primary-blue-rgb), 0.5);
    border-color: rgba(var(--text-white-rgb), 0.4);
}

.about-btn-secondary {
    background: rgba(var(--text-white-rgb), 0.2);
    color: var(--text-white);
    border: 2px solid var(--text-white);
    border-radius: 5px;
}

.about-btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--text-white-rgb), 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-image {
        order: -1;
    }
    
    .values-header h2,
    .team-header h2,
    .why-choose-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
