﻿/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.45;
        transition: opacity 0.8s ease;
    }

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,31,23,0.9) 0%, rgba(26,58,42,0.6) 50%, rgba(13,31,23,0.75) 100%);
}

.hero-slide {
    display: none;
    position: absolute;
    inset: 0;
}

    .hero-slide.active {
        display: block;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.45;
    }

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin-top: 85px;
}

    .hero-slider .slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 1.2s ease;
    }

        .hero-slider .slide.active {
            opacity: 1;
        }

        .hero-slider .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,31,23,0.88) 0%, rgba(26,58,42,0.55) 60%, rgba(13,31,23,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,148,63,0.15);
    border: 1px solid rgba(184,148,63,0.3);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    animation: fadeInDown 0.8s ease both;
}

    .hero-badge i {
        font-size: 14px;
    }

.hero-title {
    font-family: 'Amiri', serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 24px;
    animation: fadeInUp 0.9s 0.15s ease both;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

    .hero-title .highlight {
        color: var(--gold-light);
        display: block;
    }

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    max-width: 640px;
    margin-bottom: 40px;
    animation: fadeInUp 1s 0.3s ease both;
    font-family: 'Amiri', serif;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.45s ease both;
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 14px 32px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .btn-hero-primary:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(184,148,63,0.5);
        color: var(--dark);
    }

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
    padding: 14px 32px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-hero-outline:hover {
        border-color: rgba(255,255,255,0.7);
        background: rgba(255,255,255,0.08);
        color: var(--white);
        transform: translateY(-2px);
    }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 1s 0.6s ease both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Amiri', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}
/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

    .hero-dot.active {
        background: var(--gold);
        width: 24px;
        border-radius: 4px;
    }

/* ===== ABOUT ===== */
.about-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--forest-light), transparent);
    }

.section-container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 500px;
    display: block;
    box-shadow: 0 20px 60px rgba(26,58,42,0.25);
}

.about-year-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--forest);
    color: white;
    padding: 24px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(13,31,23,0.4);
}

    .about-year-badge .year {
        font-family: 'Amiri', serif;
        font-size: 38px;
        font-weight: 700;
        color: var(--gold-light);
        line-height: 1;
        display: block;
    }

    .about-year-badge .since {
        font-size: 12px;
        color: rgba(255,255,255,0.6);
        letter-spacing: 1px;
        margin-top: 4px;
        display: block;
    }

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74,140,92,0.1);
    color: var(--forest-light);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(74,140,92,0.2);
}

.about-heading {
    font-family: 'Amiri', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 24px;
}

    .about-heading em {
        color: var(--forest-light);
        font-style: normal;
    }

.about-body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 2;
    font-family: 'Amiri', serif;
    margin-bottom: 36px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(74,140,92,0.05);
    border: 1px solid rgba(74,140,92,0.1);
    transition: all 0.3s ease;
}

    .about-feature-item:hover {
        background: rgba(74,140,92,0.1);
        border-color: rgba(74,140,92,0.25);
        transform: translateY(-2px);
    }

.feature-icon {
    width: 38px;
    height: 38px;
    background: var(--forest-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

/* ===== PROMISE ===== */
.promise-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

    .promise-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(74,140,92,0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74,140,92,0.1);
    color: var(--forest-light);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid rgba(74,140,92,0.2);
    letter-spacing: 0.5px;
}

.section-title {
    font-family: 'Amiri', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-family: 'Amiri', serif;
}

.promise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.promise-img-wrap {
    position: relative;
}

.promise-img-main {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 480px;
    display: block;
    box-shadow: 0 20px 60px rgba(26,58,42,0.2);
}

.promise-img-accent {
    position: absolute;
    bottom: 30px;
    left: -30px;
    width: 180px;
    height: 180px;
    border-radius: 16px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.promise-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promise-card {
    background: white;
    border-radius: 16px;
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 2px 20px rgba(26,58,42,0.07);
    border: 1px solid rgba(74,140,92,0.1);
    transition: all 0.3s ease;
    cursor: default;
}

    .promise-card:hover {
        transform: translateX(-6px);
        box-shadow: 0 8px 40px rgba(26,58,42,0.14);
        border-color: rgba(74,140,92,0.3);
    }

.promise-num {
    min-width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--forest), var(--forest-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Amiri', serif;
    box-shadow: 0 4px 12px rgba(26,58,42,0.3);
}

.promise-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-family: 'Amiri', serif;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

@media (max-width: 991px) {
    .hero-content {
        padding: 100px 24px 60px;
    }

    .hero-stats {
        gap: 24px;
    }

    .about-grid, .promise-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-year-badge {
        right: 16px;
        bottom: 16px;
    }

    .about-img-main, .promise-img-main {
        height: 300px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .section-container {
        padding: 0 24px;
    }

    .promise-img-accent {
        display: none;
    }
}
