/* ===== About Us Page Styles - Modern & Clean ===== */

/* About Us Hero Section */
.about-hero-section {
    position: relative;
    min-height: 300px;
    background: #02577E;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    color: white;
}

.about-hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1;
}

.about-hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Main About Content */
.about-main-content {
    max-width: 80%;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #f9fafb;
}

.about-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.about-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 25px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.about-section h2 .emoji {
    margin-right: 15px;
}

.about-section p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.highlight {
    color: #5CB3C4;
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #5CB3C4;
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5CB3C4 0%, #4a9fb0 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reason-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.reason-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Contact Section */
.about-contact-section {
    background: linear-gradient(135deg, #5CB3C4 0%, #4a9fb0 100%);
    color: white;
}

.about-contact-section h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.about-contact-section p {
    color: rgba(255, 255, 255, 0.95);
}

.about-contact-section .contact-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid white;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.about-contact-section .contact-link:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: white;
    color: #5CB3C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    font-size: 16px;
}

/* ===== Responsive Design ===== */

@media (max-width: 1400px) {
    .about-main-content {
        max-width: 85%;
    }
}

@media (max-width: 1024px) {
    .about-hero-content {
        max-width: 90%;
    }
    
    .about-hero-content h1 {
        font-size: 4rem;
    }

    .about-main-content {
        max-width: 90%;
        padding: 60px 20px;
    }

    .about-section {
        padding: 30px;
        margin-bottom: 25px;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 300px;
        padding: 30px;
    }

    .about-hero-content {
        max-width: 95%;
    }

    .about-hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .about-hero-content p {
        font-size: 1.05rem;
    }

    .about-main-content {
        max-width: 95%;
        padding: 40px 15px;
    }

    .about-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .about-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .about-section p {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 25px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .social-links {
        flex-direction: column;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        min-height: 350px;
        padding: 20px;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .about-hero-content p {
        font-size: 0.95rem;
    }

    .about-main-content {
        padding: 30px 12px;
    }

    .about-section {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .about-section h2 {
        font-size: 20px;
    }

    .about-section h2 .emoji {
        margin-right: 10px;
    }

    .about-section p {
        font-size: 14px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card .icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .reason-item {
        padding: 16px;
        gap: 15px;
    }

    .reason-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .reason-content h4 {
        font-size: 15px;
    }

    .reason-content p {
        font-size: 13px;
    }
}