/* Hero Section Styles */
.hero-section {
    /* background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url("{{https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80}}"); */
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url("../img/about-us.jpg");
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem auto;
    max-width: 1000px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Stats Section Styles */
.stats-section {
    background: white;
    /* padding: 80px 0; */
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1rem;
    transition: transform 0.3s ease;
    background: white;
    border-radius: 0;
    margin-bottom: 1rem;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.05);
}

.stat-icon.families {
    background: #CCEEFF;
    color: #1976d2;
}

.stat-icon.experience {
    background: #fce4ec;
    color: #c2185b;
}

.stat-icon.security {
    background: #e8f5e8;
    color: #388e3c;
}

.stat-icon.satisfaction {
    background: #fff3e0;
    color: #f57c00;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.3rem;
    color: var(--text-dark);
    /* font-weight: 500; */
    text-transform: none;
    letter-spacing: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.mission-vision-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.mission-vision-text {
    flex: 1;
}

.mission-vision-image {
    flex: 1;
    text-align: center;
}

.mission-vision-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title, .section-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* .section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
} */

.section-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Core Values Section */
.core-values-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.core-values-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.core-values-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
    /* max-width: 600px; */
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: white;
    border: 1px solid #BABABA;
    border-radius: 20px;
    padding: 0.8rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.value-icon.community {
    background: #e3f2fd;
    color: #1976d2;
}

.value-icon.safety {
    background: #e8f5e8;
    color: #388e3c;
}

.value-icon.quality {
    background: #fff3e0;
    color: #f57c00;
}

.value-icon.transparency {
    background: #f3e5f5;
    color: #7b1fa2;
}

.value-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.testimonials-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border: 1px solid #BABABA;
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.author-title {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Visit Us Section */
.visit-us-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.visit-us-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.visit-us-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.visit-us-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    text-align: left;
}

.map-container {
    flex: 1;
    position: relative;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.society-name {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 0.9rem;
}

.contact-info {
    flex: 1;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    /* margin-bottom: 2rem; */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    /* margin-bottom: 2rem; */
    padding: 1rem 0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-icon.address {
    background: #e3f2fd;
    color: #1976d2;
}

.contact-icon.phone {
    background: #e8f5e8;
    color: #388e3c;
}

.contact-icon.email {
    background: #fff3e0;
    color: #f57c00;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: #666;
    text-decoration: none;
}

.contact-details a:hover {
    color: #007bff;
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: #e6c36f;
    border: 2px solid #e6c36f;
    color: var(--text-dark);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    background: #e6c36f;
    border-color: #e6c36f;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid #e6c36f;
    color: var(--text-dark);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-custom:hover {
    background: #e6c36f;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .value-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    /* .visit-us-content {
        flex-direction: column;
        gap: 2rem;
    } */

    .mission-vision-content {
        flex-direction: column;
        gap: 2rem;
    }

    .mission-vision-text {
        order: 2;
    }

    .mission-vision-image {
        order: 1;
    }

}

@media (max-width: 768px) {
    .visit-us-section,
    .cta-section {
        padding: 60px 0;
    }

    .visit-us-title,
    .cta-title {
        font-size: 1.8rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .map-placeholder {
        height: 280px;
    }

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

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 250px;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

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

    .stats-section,
    .mission-vision-section,
    .core-values-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .section-title,
    .core-values-title,
    .testimonials-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }

    .visit-us-content {
        flex-direction: column;
        gap: 2rem;
    }

    .map-container {
        width: 100%;
    }

    .contact-info {
        width: 100%;
        text-align: center;
    }

    .contact-res {
        display: flex;
        width: 100%;
    }

    .contact-item {
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        flex-direction: column;
    }

}

@media (max-width: 576px) {
    .visit-us-title,
    .cta-title {
        font-size: 1.6rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .map-placeholder {
        height: 250px;
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

    .section-title,
    .core-values-title,
    .testimonials-title {
        font-size: 1.6rem;
    }

    .value-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .contact-res {
        flex-direction: column;
    }
}
