/* Custom styles for Sahla Plus */
/* Sahla Home Scoped Styles */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');



body.sahla-plus .section-title {
    font-weight: 400;
    font-size: 1.5rem;
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNavbar {
    background-color: var(--white);
    min-height: var(--navbar-height);
    border-bottom: none;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
    padding: 10px 0;
    z-index: 1050;
    transition: box-shadow var(--transition-base);
}

#mainNavbar.scrolled {
    box-shadow: var(--shadow-sm);
}

#mainNavbar .container {
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
}

/* Logo */
.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    border-radius: 0;
    width: 100px;
    object-fit: contain;
}

/* Nav Links */
.nav-links-center {
    gap: 4px;
}

.nav-links-center .nav-link {
    color: #231F20;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-links-center .nav-link:hover {
    color: var(--primary);
}

.nav-links-center .nav-link.active {
    color: #006950;
    font-weight: 700;
}

/* Dropdown */
.nav-link-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-icon {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.nav-item.dropdown .dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    min-width: 260px;
}

.nav-item.dropdown .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 20px;
    transition: all var(--transition-fast);
}

.nav-item.dropdown .dropdown-item:hover {
    color: #006950;
    background-color: rgba(46, 138, 110, 0.06);
}

/* Navbar Actions */
.navbar-actions {
    gap: 12px;
}

/* Unified Nav Action Button - Same style for both */
.btn-nav-action {
    background: transparent;
    color: #2E8A6E;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: var(--radius-lg);
    border: 1.5px solid #2E8A6E;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-nav-action:hover {
    background-color: #2E8A6E;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 138, 110, 0.3);
}

.btn-nav-action:focus-visible {
    box-shadow: 0 0 0 3px rgba(46, 138, 110, 0.2);
}

/* Filled Button - تحقق من أهليتك */
.btn-nav-filled {
    background-color: #2E8A6E;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: var(--radius-lg);
    border: 1.5px solid #2E8A6E;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-nav-filled:hover {
    background-color: transparent;
    border-color: #2E8A6E;
    color: #2E8A6E;
    transform: translateY(-1px);
}

.btn-nav-filled:focus-visible {
    box-shadow: 0 0 0 3px rgba(46, 138, 110, 0.3);
}

/* Toggler */
.navbar-toggler {
    border: 1px solid var(--border-light);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 105, 80, 0.15);
    border-color: var(--primary);
}

.navbar-toggler-icon {
    width: 22px;
    height: 22px;
}

.sahla-home-wrapper {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: #f8f9fa;
}

/* Base variables inheriting from global or defining scoped */
.sahla-home-wrapper {
    --sahla-primary: #2E8A6E;
    /* Matches exploration-style.css primary color */
    --sahla-primary-hover: #127a55;
    /* Matches exploration-style.css primary-dark */
    --sahla-dark: #0A0A0A;
    --sahla-text-muted: #7d879c;
    --sahla-border: #e5e9ec;
    --sahla-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --sahla-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Utilities */
.sahla-home-wrapper .sahla-text-primary {
    color: var(--sahla-primary) !important;
}

.sahla-bg-primary {
    background-color: #2E8A6E !important;
    color: #fff !important;
}

/* Buttons */
.sahla-home-wrapper .btn-sahla-primary {
    background-color: var(--sahla-primary);
    color: #ffffff;
    border: 2px solid var(--sahla-primary);
    transition: all 0.3s ease;
}

.sahla-home-wrapper .btn-sahla-primary:hover {
    background-color: var(--sahla-primary-hover);
    border-color: var(--sahla-primary-hover);
    color: #ffffff;
}

.sahla-home-wrapper .btn-sahla-outline {
    background-color: transparent;
    color: var(--sahla-dark);
    border: 2px solid var(--sahla-border);
    transition: all 0.3s ease;
}

.sahla-home-wrapper .btn-sahla-outline:hover {
    background-color: #f1f3f5;
    border-color: #dee2e6;
    color: var(--sahla-dark);
}

/* Hero Section */
.sahla-hero-section {
    position: relative;
    min-height: calc(100vh - 82px);
    background-image: url('../imgs/sahla-plus/sahla-plus-hero.jpg');
    background-size: cover;
    background-position: center;
}

.sahla-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(98, 116, 142, 0.45) 0%, rgba(249, 250, 251, 0.8) 45%, #F9FAFB 85%, #F9FAFB 100%);
    z-index: 1;
}

.sahla-hero-section .container {
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0C1B33;
    letter-spacing: 0.5px;
    line-height: 2;
    white-space: wrap;
}


.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0c2340;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    max-width: 650px;
    line-height: 1.6;

}

.hero-btn-group {
    margin-top: 10px;
}

.hero-btn-group .btn {
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

.btn-primary-sahla {
    background-color: #1e7e65;
    color: #ffffff;
    border: 2px solid #1e7e65;
    box-shadow: 0 4px 15px rgba(30, 126, 101, 0.3);
}

.btn-primary-sahla:hover {
    background-color: #16634f;
    border-color: #16634f;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(30, 126, 101, 0.4);
}

.btn-outline-sahla {
    background-color: #ffffff;
    color: #0c2340;
    border: 2px solid #ffffff;
}

.btn-outline-sahla:hover {
    background-color: #f8f9fa;
    color: #0c2340;
    border-color: #f8f9fa;
}

/* Features Section */


.sahla-plus-page .section-title {
    font-weight: 400;
}

.sahla-features-section {
    background-color: #F9FAFB !important;
}

.sahla-feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* border-color: var(--sahla-border) !important; */
    background-color: #ffffff;
}

.sahla-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sahla-shadow-hover) !important;
    /* border-color: var(--sahla-primary) !important; */
}



/* Interactive Section */

.sahla-interactive-section {
    background-color: #FFFFFF !important;

}


.sahla-interactive-item {
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease !important;
    cursor: pointer;
    outline: none;
    /* reset button outline */
}

.sahla-interactive-item:hover {
    background-color: #2E8A6E !important;
    /* Theme green */
    transform: translateX(-5px) !important;
    box-shadow: var(--sahla-shadow-hover) !important;
}

.sahla-interactive-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: color 0.3s ease;
}

.sahla-interactive-item p.sahla-interactive-desc {
    font-size: 14px;
    font-weight: 500;
    color: #667085;
    transition: color 0.3s ease;
}

.sahla-interactive-item i {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: color 0.3s ease;
}

/* Hover States for Text Colors */
.sahla-interactive-item:hover h6,
.sahla-interactive-item:hover i {
    color: #ffffff !important;
}

.sahla-interactive-item:hover p.sahla-interactive-desc {
    color: rgba(255, 255, 255, 0.78) !important;
}

.sahla-interactive-item:hover .sahla-icon-box img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* CTA Features Section */
.sahla-features-cta {
    position: relative;
    background-image: url('../imgs/sahla-plus/sahla-plus-hero.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sahla-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(46, 49, 50, 0.8) 100%);
}

.sahla-features-cta .cta-main-title {
    color: #9BF4D2 !important;
    font-weight: 700;
    font-size: 1.875rem;
}

.sahla-features-cta .feature-item {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.sahla-features-cta .feature-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.sahla-features-cta .btn-cta-white {
    background-color: #ffffff;
    color: #0c2340;
    font-weight: 400;
    font-size: 1.25rem;
    border-radius: 12px;
    padding: 20px 40px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    box-shadow: none;
}

.sahla-features-cta .btn-cta-white:hover {
    background-color: #2E8A6E;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Testimonials Section */
.sahla-testimonials {
    overflow: hidden;
    background-color: #F9FAFB;

}

.testimonials-badge {
    background-color: #ffffff;
    color: #667085;
    /* Muted dark text */
    border: 1px solid #e5e9ec;
    /* Subtle gray border */
    border-radius: 32px;
    /* Capsule */
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    transition: all 0.4s ease;
    text-align: start;
    padding: 40px 28px;
    transform: scale(0.9);

}

.swiper-slide-active .testimonial-card {
    opacity: 1;
    box-shadow:
        0 1.85px 3.15px 0 rgba(56, 56, 56, 0.0241),
        0 8.15px 6.52px 0 rgba(56, 56, 56, 0.0393) !important;
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: scale(0.92);
}

.swiper-slide-active .testimonial-card:hover {
    transform: scale(0.92);
}

.testimonial-card .testimonial-text {
    color: #425466;
    /* Soft charcoal/muted gray */
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-card .client-name {
    color: #313131;
    /* Sharp solid dark shade */
    font-size: 0.825rem;
}

.swiper-custom-next,
.swiper-custom-prev {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid #e5e9ec;
    color: #313131;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-custom-next:hover,
.swiper-custom-prev:hover {
    background-color: #f8f9fa;
}

.swiper-custom-next.active-btn,
.swiper-custom-prev.active-btn {
    background-color: #2E3132;
    color: #ffffff;
    border-color: #2E3132;
}

/* Contact Us Section */
.sahla-contact {
    position: relative;
    overflow: hidden;
    background-image: url(../imgs/sahla-plus/Contact.png);
    background-size: cover;
    background-repeat: no-repeat;
}


.contact-badge {
    background-color: #ffffff;
    color: #667085;
    border: 1px solid #e5e9ec;
    border-radius: 32px;
    font-size: 1rem;
    font-weight: 600;
}

.contact-form-card,
.contact-info-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
    border: 1px solid #f1f3f5;
}

.form-title {
    font-size: 1rem;
    font-weight: 500;
    color: #0A0A0A;
}

.form-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #717182;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0A0A0A;
}

.sahla-input {
    background-color: #f4f5f7;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #1a202c;
    transition: all 0.3s ease;
}

.sahla-input:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(46, 138, 110, 0.15);
    outline: none;
}

.sahla-input::placeholder {
    color: #717182;
    font-size: 0.875rem;
    font-weight: 400;
}

.btn-sahla-dark {
    background-color: #070b19;
    color: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    padding: 8px 16px;
}

.btn-sahla-dark:hover {
    background-color: #1a202c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #313131;
    width: 24px;
}

.info-label {
    color: #0A0A0A;
    font-size: 16px;
    font-weight: 500;
}

.info-value {
    color: #717182;
    font-size: 16px;
    font-weight: 400;

}

a.info-value {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    transition: opacity 0.2s ease;
}

a.info-value:hover {
    text-decoration: none !important;
    color: #2E8A6E !important;
    opacity: 0.8;
}

/* Blog Section */
.sahla-blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    border-radius: 24px;
}

.info-title {
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
}

.info-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #717182;
}

.sahla-blog-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.sahla-blog-card p {
    font-size: 14px;
    font-weight: 400;
    color: #6A7282;
}

.sahla-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sahla-shadow-hover) !important;
}

.card-footer-info {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #99A1AF
}

.card-footer-info i {
    color: #99A1AF;
}

.sahla-blog-img-wrapper {
    height: 220px;
}

.sahla-blog-section .btn-link {
    color: #2E8A6E;
    font-size: 14px;
    font-weight: 700;
}

.sahla-blog-section .btn-link:hover {
    color: #2E8A6E;
}

/* CTA Banner Form */
.sahla-cta-form {
    width: 100%;
}

.sahla-input-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.sahla-cta-input {
    border-radius: 14px;
    background-color: #fff;
    border: none;
    color: #99A1AF;
}

.sahla-cta-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 138, 110, 0.2);
}

.eligibility-desc {
    color: rgba(255, 255, 255, 0.7);
}

.eligibility-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    background-color: #2E8A6E;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.eligibility-btn:hover,
.eligibility-btn:focus,
.eligibility-btn:active {
    color: #ffffff !important;
    background-color: #127a55;
}



.sahla-section-badge {
    background-color: #fff !important;
    color: #667085;
    border: 1px solid #DFE1E5;
    padding: 12px 30px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.sahla-blog-section .section-title {
    font-weight: 700;
    /* margin-bottom: 32px; */
    text-align: center;
    color: #0A0A0A;
}


/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}


.site-footer img {
    border-radius: none;
    width: 60px;
}

.footer-links-list li {
    margin-bottom: 5px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.footer-links-list a:hover {
    color: #ffffff;
}

.social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons .social-icon:hover {
    background-color: #2E8A6E;
    transform: translateY(-3px);
}

@media (min-width:1400px) {
    .container {
        max-width: 1400px;
    }



}


@media (max-width:1400px) {
    .sahla-hero-section .container {
        margin-top: 0 !important;
    }

    .hero-title {
        margin-top: 0 !important;
        font-stretch: normal !important;

    }

    .sahla-hero-overlay {
        background: linear-gradient(180deg, rgba(98, 116, 142, 0.45) 0%, #F9FAFB 100%);
    }
}
