/*--------------------------------------------------------------
About & Contact Pages Styling
- Premium about page with company info
- Contact page with multiple contact methods
- Team showcase section
- Statistics and achievements
--------------------------------------------------------------*/

/* ==============================
   1) About Section Header
   ============================== */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(254, 144, 67, 0.05) 0%, rgba(8, 159, 172, 0.05) 100%);
}

.about-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.about-hero__title {
    font-size: 40px;
    font-weight: 700;
    color: #00a8bb;
    line-height: 1.3;
    font-family: 'Cairo', sans-serif;
}

.about-hero__text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 20px;
}

.about-hero__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-hero__list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-family: 'Cairo', sans-serif;
}

.about-hero__list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--zeinet-base);
    font-size: 18px;
}

/* ==============================
   2) Statistics Section
   ============================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--zeinet-primary), var(--zeinet-base));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
    opacity: 0.5;
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.stat-item__number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif;
}

.stat-item__label {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

/* ==============================
   3) Why Choose Us Enhanced
   ============================== */
.why-choose-section {
    padding: 80px 0;
}

.why-choose-item {
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(254, 144, 67, 0.1);
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(254, 144, 67, 0.15);
}

.why-choose-item__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(254, 144, 67, 0.15), rgba(8, 159, 172, 0.15));
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--zeinet-base);
}

.why-choose-item__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

.why-choose-item__text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-family: 'Cairo', sans-serif;
}

/* ==============================
   4) Team Section
   ============================== */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(254, 144, 67, 0.03) 0%, rgba(8, 159, 172, 0.03) 100%);
}

.team-member {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(254, 144, 67, 0.15);
}

.team-member__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--zeinet-primary), var(--zeinet-base));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.team-member__content {
    padding: 30px;
}

.team-member__name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Cairo', sans-serif;
}

.team-member__position {
    font-size: 14px;
    color: var(--zeinet-base);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

.team-member__bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 20px;
}

.team-member__social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-member__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zeinet-primary), var(--zeinet-base));
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-member__social a:hover {
    transform: translateY(-3px);
}

/* ==============================
   5) Contact Information Section
   ============================== */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-box {
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--zeinet-base);
    margin-bottom: 30px;
}

.contact-info-box__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(254, 144, 67, 0.15), rgba(8, 159, 172, 0.15));
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--zeinet-base);
}

.contact-info-box__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

.contact-info-box__text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 10px;
}

.contact-info-box__link {
    font-size: 15px;
    color: var(--zeinet-base);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.contact-info-box__link:hover {
    color: var(--zeinet-primary);
}

/* ==============================
   6) Contact Form Section
   ============================== */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(254, 144, 67, 0.05) 0%, rgba(8, 159, 172, 0.05) 100%);
}

.contact-form-wrapper {
    background: white;
    padding: 60px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

.contact-form-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    font-family: 'Cairo', sans-serif;
}

/* ==============================
   7) Map Section
   ============================== */
.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==============================
   8) Section Titles
   ============================== */
.section-title {
    margin-bottom: 60px;
}

.section-title__tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--zeinet-base);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: block;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif;
}

.section-title__title {
    font-size: 42px;
    font-weight: 700;
    color: #ff8021;
    line-height: 1.3;
    font-family: 'Cairo', sans-serif;
}

/* ==============================
   9) Responsive Design
   ============================== */
@media (max-width: 991px) {
    .about-hero__title {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    .stat-item__number {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero__title {
        font-size: 28px;
    }

    .stats-section {
        padding: 60px 0;
    }

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

    .stat-item__label {
        font-size: 14px;
    }

    .why-choose-section,
    .team-section,
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .why-choose-item,
    .team-member {
        margin-bottom: 20px;
    }

    .map-container {
        height: 300px;
    }
}
