/* Page Header */
.page-header {
    position: relative;
    height: 40vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 95, 60, 0.8), rgba(15, 95, 60, 0.6));
}

.header-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-align: center;
}

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

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.page-title {
    font-family: 'Amiri', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.bismillah {
    font-family: 'Amiri', serif;
    font-size: 24px;
    color: #888;
    margin-bottom: 30px;
    text-align: right;
    direction: rtl;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title .highlight-green {
    color: var(--primary-green);
}

.section-title .highlight-orange {
    color: var(--secondary-yellow);
}

.story-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.story-images {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-image);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-yellow);
    color: var(--orange-text);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.secondary-image {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--shadow-card);
}

.secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: white;
}

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

.mission-card,
.vision-card {
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: var(--gradient-primary);
    color: white;
}

.vision-card {
    background: var(--bg-section);
    color: var(--text-dark);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.vision-card .card-icon {
    background: var(--primary-green);
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.mission-points,
.vision-points {
    list-style: none;
}

.mission-points li,
.vision-points li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.mission-points li:before {
    content: '✓';
    color: var(--secondary-yellow);
    font-weight: bold;
    font-size: 16px;
}

.vision-points li:before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 16px;
}

/* Core Values Section */
.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-header .section-title .highlight-green {
    color: var(--primary-green);
}

.section-header .section-title .highlight-orange {
    color: var(--secondary-yellow);
}

.section-header .section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--secondary-yellow);
    color: var(--text-dark);
}

.value-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.team-member {
    text-align: center;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--shadow-card);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 95, 60, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-yellow);
    color: var(--text-dark);
    transform: scale(1.1);
}

.member-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.member-title {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 20px;
}

.member-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.member-credentials span {
    background: var(--primary-green);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.achievements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
}

.achievement-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.achievement-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.achievement-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.achievement-year {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
}

.achievements-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-image);
}

.achievements-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.achievement-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.badge-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin: 5px 0;
}

.badge-stars {
    color: var(--secondary-yellow);
    font-size: 14px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.choose-item {
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--bg-light);
    position: relative;
    transition: all 0.3s ease;
}

.choose-item:hover {
    background: white;
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.choose-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.choose-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0 15px;
}

.choose-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* About CTA Section */
.about-cta-section {
    padding: 80px 0;
    /* background: whitesmoke; */
    color: #0000;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M30 30l15-15v30l-15-15zm-15 0l-15 15V15l15 15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-primary {
    background: var(--secondary-yellow);
    color: var(--orange-text);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--secondary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 199, 68, 0.3);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .page-header {
        height: 35vh;
        min-height: 350px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .story-content,
    .mission-vision-grid,
    .achievements-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid,
    .team-grid,
    .choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 30vh;
        min-height: 300px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .story-section,
    .mission-vision-section,
    .values-section,
    .team-section,
    .achievements-section,
    .why-choose-section,
    .about-cta-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .team-grid {
        margin-top: 50px;
    }
    
    .achievements-content {
        margin-top: 50px;
    }
    
    .choose-grid {
        margin-top: 50px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    .team-member {
        padding: 30px 25px;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .story-section,
    .mission-vision-section,
    .values-section,
    .team-section,
    .achievements-section,
    .why-choose-section,
    .about-cta-section {
        padding: 50px 0;
    }
    
    .bismillah {
        font-size: 20px;
        text-align: center;
    }
    
    .story-description {
        font-size: 15px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
    
    .choose-item {
        padding: 30px 20px;
    }
    
    .cta-text h2 {
        font-size: 24px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
    
    .secondary-image {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        margin-top: 20px;
        border: 3px solid white;
    }
}