/* Root Variables for Consistency */
:root {
    --emerald: #006747;
    --dark-emerald: #004b33;
    --gold: #D4AF37;
    --light-gold: #f1c40f;
    --white: #ffffff;
    --bg-light: #f4f7f6;
    --text-dark: #333333;
    --transition-slow: 0.5s ease;
    --transition-fast: 0.3s ease;
    /* Women's section palette */
    --women-green: #a8d5ba;
    --women-light: #eef7f2;
    --women-dark: #4a9870;
    --women-accent: #c8a951;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Islamic Pattern Background Utility */
.pattern-bg {
    background-color: var(--emerald);
    background-image:
        linear-gradient(30deg, #004b33 12%, transparent 12.5%, transparent 87%, #004b33 87.5%, #004b33),
        linear-gradient(150deg, #004b33 12%, transparent 12.5%, transparent 87%, #004b33 87.5%, #004b33),
        linear-gradient(30deg, #004b33 12%, transparent 12.5%, transparent 87%, #004b33 87.5%, #004b33),
        linear-gradient(150deg, #004b33 12%, transparent 12.5%, transparent 87%, #004b33 87.5%, #004b33),
        linear-gradient(60deg, #015c40 25%, transparent 25.5%, transparent 75%, #015c40 75%, #015c40),
        linear-gradient(60deg, #015c40 25%, transparent 25.5%, transparent 75%, #015c40 75%, #015c40);
    background-size: 80px 140px;
}

.pattern-bg-light {
    background-color: #fafafa;
    background-image: radial-gradient(var(--gold) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Amiri', serif;
    font-weight: 700;
}

.gold-text {
    color: var(--gold);
}

.separator {
    width: 80px;
    height: 4px;
    margin: 15px auto;
    border-radius: 2px;
}

.separator.gold {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b38b1d);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #b38b1d, var(--gold));
}

.btn-emerald {
    background: var(--emerald);
    color: var(--white);
}

.btn-emerald:hover {
    background: var(--dark-emerald);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--emerald);
}

.btn.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn.small {
    padding: 10px 20px;
    margin-top: 15px;
}

.btn-text {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    display: inline-block;
}

.btn-text:hover {
    color: var(--gold);
}

/* Navbar */
#main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 75, 51, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-fast);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Amiri', serif;
    font-weight: 700;
}

.logo i {
    color: var(--gold);
    margin-left: 10px;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links li a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    background: url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 103, 71, 0.6) 0%, rgba(0, 75, 51, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections Global Layout */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--emerald);
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 400px;
}

.pattern-box {
    width: 100%;
    height: 100%;
    background-color: var(--emerald);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 103, 71, 0.2);
}

.pattern-box::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(var(--gold) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pattern-box i {
    font-size: 10rem;
    color: var(--gold);
    z-index: 2;
    opacity: 0.8;
}

.features-list {
    list-style: none;
    margin: 25px 0;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.features-list li i {
    color: var(--gold);
    margin-left: 10px;
    font-size: 1.2rem;
}

/* Services/Courses Section */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--gold);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 103, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-fast);
}

.service-card:hover .icon-box {
    background: var(--emerald);
}

.icon-box i {
    font-size: 2rem;
    color: var(--emerald);
    transition: var(--transition-fast);
}

.service-card:hover .icon-box i {
    color: var(--white);
}

/* Qiraat Section */
.qiraat-section {
    background: var(--white);
}

.qiraat-info {
    max-width: 900px;
    margin: 0 auto 50px;
}

.info-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border-right: 5px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 25px;
}

.info-card i {
    font-size: 3rem;
    color: var(--emerald);
}

.qiraat-names-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 60px;
}

.qira-item {
    background: var(--emerald);
    color: var(--white);
    padding: 20px 10px;
    text-align: center;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.qira-item:hover {
    background: var(--white);
    color: var(--emerald);
    border-color: var(--gold);
    transform: scale(1.05);
}

.qiraat-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.feature-box:hover {
    background: var(--emerald);
    color: var(--white);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Teachers Section */
.teachers-section {
    background: var(--bg-light);
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.teacher-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.teacher-img {
    width: 100px;
    height: 100px;
    background: var(--emerald);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    border: 4px solid var(--gold);
}

.ijazah-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ========================
   Women's Section
   ======================== */
.women-section {
    background: var(--women-light);
    position: relative;
    overflow: hidden;
}

.women-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--women-green) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.3;
    pointer-events: none;
}

.women-badge-title {
    display: inline-block;
    background: var(--women-dark);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.women-badge-title i {
    margin-left: 8px;
    color: var(--women-accent);
}

.women-intro {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.women-intro-text h3 {
    font-size: 2rem;
    color: var(--women-dark);
    margin-bottom: 15px;
}

.women-features {
    list-style: none;
    margin-top: 20px;
}

.women-features li {
    margin-bottom: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.w-icon {
    font-size: 1.2rem;
}

.women-pattern-box {
    background: linear-gradient(135deg, var(--women-dark), var(--emerald));
    border-radius: 30px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(74, 152, 112, 0.3);
    position: relative;
    overflow: hidden;
}

.women-pattern-box::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 25px 25px;
    animation: rotate 40s linear infinite;
}

.flower-decoration i {
    font-size: 9rem;
    color: rgba(255, 255, 255, 0.4);
    z-index: 2;
    position: relative;
}

.women-tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.women-track-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(168, 213, 186, 0.4);
    transition: var(--transition-fast);
    position: relative;
    border-top: 4px solid var(--women-green);
}

.women-track-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--women-accent);
    box-shadow: 0 15px 35px rgba(168, 213, 186, 0.5);
}

.w-track-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200, 169, 81, 0.1);
    color: var(--women-accent);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid var(--women-accent);
}

.w-icon-box {
    width: 70px;
    height: 70px;
    background: var(--women-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition-fast);
    border: 2px solid var(--women-green);
}

.women-track-card:hover .w-icon-box {
    background: var(--women-dark);
    border-color: var(--women-dark);
}

.w-icon-box i {
    font-size: 1.8rem;
    color: var(--women-dark);
    transition: var(--transition-fast);
}

.women-track-card:hover .w-icon-box i {
    color: var(--white);
}

.women-track-card h4 {
    margin-bottom: 10px;
    color: var(--women-dark);
    font-size: 1.1rem;
}

.btn-women {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--women-dark), var(--emerald));
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-women:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--women-accent), var(--gold));
    box-shadow: 0 5px 15px rgba(200, 169, 81, 0.4);
}

.contact-number {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 10px 0;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .women-intro {
        grid-template-columns: 1fr;
    }

    .women-pattern-box {
        height: 200px;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    position: relative;
    border: 2px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 103, 71, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 20px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    text-align: right;
    margin-bottom: 40px;
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: var(--gold);
    margin-left: 10px;
}

/* Registration Section */
.register-section {
    color: var(--white);
}

.register-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

#registration-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    display: grid;
    gap: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    outline: none;
}

.full-width {
    width: 100%;
}

/* Testimonials */
.testimonials-section {
    background: var(--white);
    text-align: center;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card i.fa-whatsapp {
    color: #25D366;
}

.contact-card i.fa-envelope {
    color: var(--emerald);
}

/* Footer */
footer {
    background: var(--dark-emerald);
    color: var(--white);
    padding: 80px 0 20px;
    border-top: 5px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .register-container {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn.large {
        width: 100%;
    }
}
/* ========================
   Enhanced Pricing Cards
   ======================== */
.currency-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 22px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px dashed #D4AF37;
    border-radius: 30px;
    font-size: 0.9rem;
}
.currency-note i { color: #D4AF37; }
.pricing-section { background: #f4f7f6; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-bottom: 60px; }
.pricing-card { background: #fff; padding: 35px 25px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.05); transition: .3s ease; position: relative; border: 2px solid #f0f0f0; }
.pricing-card:hover { transform: translateY(-10px); border-color: #D4AF37; box-shadow: 0 20px 40px rgba(212,175,55,.15); }
.pricing-card.featured { border-color: #D4AF37; transform: scale(1.04); z-index: 2; box-shadow: 0 15px 40px rgba(0,103,71,.12); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-5px); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,#D4AF37,#b38b1d); color: #fff; padding: 5px 20px; border-radius: 20px; font-size: .8rem; font-weight: 700; white-space: nowrap; }
.plan-icon { width: 60px; height: 60px; background: rgba(0,103,71,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; transition: .3s ease; }
.plan-icon i { font-size: 1.6rem; color: #006747; transition: .3s ease; }
.pricing-card:hover .plan-icon { background: #006747; }
.pricing-card:hover .plan-icon i { color: #fff; }
.plan-name { font-size: 1.4rem; font-weight: 700; color: #006747; margin-bottom: 5px; }
.price-block { margin: 20px 0; text-align: center; }
.price-usd { font-size: 2.6rem; font-weight: 700; color: #006747; line-height: 1; }
.price-usd span { font-size: 1rem; color: #888; font-weight: 400; }
.price-divider { font-size: .8rem; color: #bbb; margin: 6px 0; font-style: italic; }
.price-egp { font-size: 1.5rem; font-weight: 700; color: #D4AF37; }
.price-egp span { font-size: .85rem; color: #999; font-weight: 400; }
.plan-features { list-style: none; text-align: right; margin-bottom: 30px; border-top: 1px solid #f0f0f0; padding-top: 20px; }
.plan-features li { margin-bottom: 12px; font-size: .9rem; display: flex; align-items: center; }
.plan-features li i { color: #D4AF37; margin-left: 8px; flex-shrink: 0; }
.comparison-table { margin-top: 20px; }
.comparison-table h3 { text-align: center; font-size: 1.8rem; color: #006747; margin-bottom: 30px; font-family: 'Amiri', serif; }
.table-wrapper { overflow-x: auto; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
table { width: 100%; border-collapse: collapse; background: #fff; min-width: 600px; }
thead tr { background: #006747; color: #fff; }
thead th { padding: 18px 20px; font-size: 1rem; font-family: 'Amiri', serif; }
thead th.featured-col { background: #D4AF37; }
tbody td { padding: 14px 20px; text-align: center; border-bottom: 1px solid #f0f0f0; font-size: .95rem; }
tbody td:first-child { text-align: right; font-weight: 600; }
tbody tr:hover td { background: rgba(0,103,71,.03); }
.price-row td { font-weight: 700; font-size: 1.05rem; }
.egp-row td { color: #D4AF37; }
.featured-col { background: rgba(212,175,55,.07); }
.text-yes { color: #16a34a; font-size: 1.2rem; }
.text-no { color: #dc2626; font-size: 1.2rem; }

/* Stats Section */
.stats-section {
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    transition: var(--transition-fast);
}

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

.stat-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Amiri', serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--emerald);
}

.faq-question i {
    transition: var(--transition-fast);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    opacity: 0;
    line-height: 1.8;
}

.faq-item.active {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Floating Action Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.back-to-top {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #b38b1d;
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .floating-btns {
        bottom: 20px;
        left: 20px;
    }
}

