/* ===================================
   ABOUT PAGE - Premium Styling
   =================================== */

/* Page Header */
.page-header {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-header-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
    font-weight: 500;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-yellow);
}

.breadcrumb i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span {
    color: var(--primary-yellow);
}

/* About Introduction */
.about-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.about-intro-grid {
    /* display: grid; */
    /* grid-template-columns: 1fr 1.5fr; */
    display: block;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    /* gap: 60px; */
    /* align-items: center; */
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(253, 183, 20, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
}

.image-badge i {
    font-size: 32px;
}

.image-badge strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.image-badge span {
    display: block;
    font-size: 12px;
    margin-top: 4px;
}

.about-intro-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-intro-content .lead {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-intro-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
    text-align: left;
    /* Keep highlights left-aligned */
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background-color: #fff5e6;
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--primary-orange);
    font-size: 20px;
}

.highlight-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.call-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.call-info span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.phone-number {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.card-icon i {
    font-size: 36px;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    background-color: var(--light-gray);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-item:hover {
    background-color: var(--white);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon i {
    font-size: 30px;
    color: var(--white);
}

.why-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.why-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Our Values */
.our-values {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2c3e50 100%);
    color: var(--white);
}

.our-values .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.our-values .section-title {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.value-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Our Team */
.our-team {
    padding: 80px 0;
    background-color: var(--white);
}

.team-description {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
}

.team-description p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
}

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

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 36px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2c3e50 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--dark-navy);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(253, 183, 20, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-image img {
        max-width: 100%;
    }

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

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

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

@media (max-width: 768px) {
    .page-header {
        height: 250px;
    }

    .page-header-content h1 {
        font-size: 32px;
    }

    .page-header-content p {
        font-size: 16px;
    }

    .about-intro {
        padding: 50px 0;
    }

    .about-intro-content h2 {
        font-size: 28px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        padding: 50px 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-about {
        padding: 50px 0;
    }

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

    .our-values {
        padding: 50px 0;
    }

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

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

    .about-cta {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .image-badge {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .about-intro-content .lead {
        font-size: 16px;
    }

    .value-number {
        font-size: 36px;
    }

    .stat-number {
        font-size: 36px;
    }
}