/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Import Brand Font - 29LT Bukra */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

body {
    font-family: '29LT Bukra', sans-serif;
    line-height: 1.6;
    color: #2C303B;
    background-color: #E9E0B3;
    font-weight: 400;
    overflow-x: hidden;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* RTL Support */
body.rtl {
    direction: rtl;
    text-align: right;
    font-family: '29LT Bukra', sans-serif;
}

body.rtl * {
    text-align: inherit;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    order: 3;
}

.lang-link {
    color: #2C303B;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
    color: #2C303B;
    opacity: 0.7;
}

.lang-separator {
    color: #6B7280;
    font-size: 0.875rem;
}

/* RTL Layout Adjustments */
.rtl .header-content {
    flex-direction: row-reverse;
}

.rtl .nav-desktop {
    order: 2;
}

.rtl .language-switcher {
    order: 1;
    margin-left: 0;
    margin-right: 1rem;
}

.rtl .header-cta {
    order: 3;
        width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
}

.rtl .mobile-menu-btn {
    order: 4;
}

.rtl .logo {
    order: 0;
}

/* RTL Navigation */
.rtl .nav-desktop {
    flex-direction: row-reverse;
}

.rtl .nav-mobile {
    text-align: right;
}

/* RTL Hero Content */
.rtl .hero-content {
    text-align: right;
}

.rtl .hero-title {
    text-align: right;
}

.rtl .hero-subtitle {
    text-align: right;
}

/* RTL Slider Controls */
.rtl .slider-prev {
    right: auto;
    left: 20px;
}

.rtl .slider-next {
    left: auto;
    right: 20px;
}

/* RTL Grid Layouts */
.rtl .about-grid {
    direction: rtl;
}

.rtl .services-grid {
    direction: rtl;
}

.rtl .offer-grid {
    direction: rtl;
}

.rtl .values-grid {
    direction: rtl;
}

.rtl .contact-grid {
    direction: rtl;
}

.rtl .footer-content {
    direction: rtl;
}

/* RTL Form Styles */
.rtl .form-group label {
    text-align: right;
}

.rtl .form-group input,
.rtl .form-group textarea,
.rtl .form-group select {
    text-align: right;
    direction: rtl;
}

.rtl .checkbox-label {
    flex-direction: row-reverse;
    text-align: right;
}

.rtl .checkmark {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* RTL Statistics */
.rtl .stats-grid {
    direction: rtl;
}

.rtl .stat-card {
    text-align: center;
}

/* RTL Contact Info */
.rtl .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

.rtl .contact-icon {
    margin-left: 1rem;
    margin-right: 0;
}

/* RTL Footer */
.rtl .footer-bottom-content {
    flex-direction: row-reverse;
}

.rtl .footer-legal {
    order: 1;
}

.rtl .footer-copyright {
    order: 2;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2C303B;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2C303B;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #2C303B;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: #2C303B;
    color: #E9E0B3;
}

.btn-primary:hover {
    background-color: #1f2329;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 48, 59, 0.3);
}

.btn-secondary,
.btn-outline {
    background-color: transparent;
    color: #2C303B;
    border: 2px solid #2C303B;
}

.btn-secondary:hover,
.btn-outline:hover {
    background-color: #2C303B;
    color: #E9E0B3;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.125rem;
    background-color: #2C303B;
    color: #E9E0B3;
    font-weight: 600;
}

.btn-hero:hover {
    background-color: #1f2329;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 48, 59, 0.4);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 24px;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(233, 224, 179, 0.95);
    z-index: 1000;
}

.header-fixed {
    position: fixed;
    background-color: rgba(233, 224, 179, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 48, 59, 0.1);
}

.header.scrolled {
    position: fixed;
    background-color: rgba(233, 224, 179, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 48, 59, 0.1);
}

/* Hotline Bar */
.hotline-bar {
    background-color: #2C303B;
    padding: 0.5rem 0;
    text-align: center;
}

.hotline-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotline-text {
    color: #E9E0B3;
    font-weight: 500;
    font-size: 0.875rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    text-decoration: none;
    order: 1;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
    order: 2;
}

.header-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    order: 4;
}

.partner-login {
    font-size: 0.875rem;
    padding: 8px 16px;
}

.nav-link {
    color: #2C303B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a1d24;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    order: 5;
    gap: 3px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #2C303B;
    transition: 0.3s;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(44, 48, 59, 0.1);
    margin-top: 1rem;
    order: 6;
    width: 100%;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    color: #2C303B;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: #1a1d24;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Hero Slider */
.hero-slider {
  padding-top: 180px;
  position: relative;
  overflow: hidden;
}

.slide {
  position: relative; /* بدل absolute */
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.8s ease-in-out;
  opacity: 0;
}

.slide.active {
  opacity: 1;
}

.slide[data-bg] {
    background-image: var(--bg-image);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 48, 59, 0.8), rgba(233, 224, 179, 0.3));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #E9E0B3;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(44, 48, 59, 0.5);
    color: #E9E0B3;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(44, 48, 59, 0.5);
    color: #E9E0B3;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: rgba(233, 224, 179, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
        background: rgba(44, 48, 59, 0.1);
}

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

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2C303B;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
}

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

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
        background: rgba(44, 48, 59, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 48, 59, 0.15);
        
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2C303B;
}

.service-description {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #4B5563;
}

.service-features li::before {
    content: "•";
    color: #2C303B;
    font-weight: bold;
    width: 1rem;
    margin-right: 0.5rem;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 5rem 0;
    background-color: rgba(233, 224, 179, 0.3);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vm-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        background: rgba(44, 48, 59, 0.1);
}

.vm-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vm-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2C303B;
}

.vm-content {
    color: #6B7280;
    line-height: 1.7;
    font-size: 1.125rem;
}

.values-section {
    margin-top: 3rem;
}

.values-title {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #2C303B;
}

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

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            background: rgba(44, 48, 59, 0.1);
}

.value-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2C303B;
}

.value-description {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.5;
}

/* What We Offer Section */
.offer-section {
    padding: 5rem 0;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
        background: rgba(44, 48, 59, 0.1);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 48, 59, 0.15);
}

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2C303B;
}

.offer-description {
    color: #6B7280;
    line-height: 1.6;
}

.cta-section {
    margin-top: 3rem;
}

.cta-card {
    background: rgba(44, 48, 59, 0.1);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2C303B;
}

.cta-description {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: rgba(233, 224, 179, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2C303B;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2C303B;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2C303B;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.info-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2C303B;
}

.info-detail {
    color: #6B7280;
    margin-bottom: 0.25rem;
}

/* Sign Up Page */
.signup-section {
    padding: 8rem 0 5rem;
    min-height: 100vh;
}

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

.signup-header {
    text-align: center;
    margin-bottom: 3rem;
}

.signup-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2C303B;
}

.signup-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.6;
}

.signup-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #2C303B;
    border-color: #2C303B;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.link {
    color: #2C303B;
    text-decoration: underline;
}

.link:hover {
    color: #1a1d24;
}

.signup-benefits {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        background: rgba(44, 48, 59, 0.1);
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #2C303B;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2C303B;
}

.benefit-content p {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #2C303B;
    color: #E9E0B3;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(233, 224, 179, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(233, 224, 179, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #E9E0B3;
    color: #2C303B;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #E9E0B3;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(233, 224, 179, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.contact-item p {
    color: rgba(233, 224, 179, 0.8);
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(233, 224, 179, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright,
.tagline {
    color: rgba(233, 224, 179, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vm-card {
        padding: 2rem;
    }
    
    .contact-grid {
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-desktop {
        display: none;
    }
    
    .header-cta .partner-login {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hotline-text {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .slider-arrow {
        display: none;
    }

    .signup-form-container {
        padding: 2rem;
        margin: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile navigation improvements */
    .nav-mobile {
        padding: 1rem 0;
    }

    .nav-link-mobile {
        padding: 0.75rem 0;
        font-size: 1.125rem;
    }

    .mobile-signup,
    .mobile-partner {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

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

    .signup-form-container {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .service-card,
    .offer-card,
    .vm-card {
        padding: 1.25rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .hotline-text {
        font-size: 0.7rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.offer-card,
.stat-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #2C303B;
    outline-offset: 2px;
}

.policy-content {
        padding-top: 250px;
        padding-bottom : 50px;
}
.policy-content h1,
.policy-content h2,
.policy-content h3 {
    color: #2C303B; /* نفس اللون الداكن للعناوين */
}
/* Regular */
@font-face {
  font-family: '29LT Bukra';
  src: url('assets/fonts/29ltbukraregular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: '29LT Bukra';
  src: url('assets/fonts/29ltbukrabold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Light */
@font-face {
  font-family: '29LT Bukra';
  src: url('assets/fonts/29ltbukralight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Bold Italic */
@font-face {
  font-family: '29LT Bukra';
  src: url('assets/fonts/29ltbukrabolditalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .container {
    padding: 0 15px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Header Mobile */
  .header-content {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
    max-width: 100%;
  }
  
  .nav-desktop,
  .language-switcher,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .logo {
    order: 1;
    flex-shrink: 0;
  }
  
  .mobile-menu-btn {
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }
  
  .nav-mobile {
    order: 3;
    width: 100%;
    max-width: 100%;
  }
  
  /* Hero Mobile */
  .hero-slider {
    padding-top: 160px;
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-hero {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  /* Typography Mobile */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* About Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-content {
    order: 2;
  }
  
  .about-image {
    order: 1;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  
  .service-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  /* Values Mobile */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  
  .value-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .value-icon {
    font-size: 2rem;
  }
  
  /* Vision Mission Mobile */
  .vision-mission-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
  
  .vm-card {
    padding: 1.5rem;
    min-width: unset;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .vm-icon {
    font-size: 2.5rem;
  }
  
  .vm-title {
    font-size: 1.5rem;
  }
  
  /* Contact Mobile */
  .contact-section {
    padding: 2rem 0;
    width: 100%;
    overflow-x: hidden;
    min-height: auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
  }
  
  .contact-form {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .form-card {
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    min-height: auto;
  }
  
  .contact-item {
    flex-direction: row;
    text-align: left;
  }
  
  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  /* Sections padding */
  .about-section,
  .services-section,
  .vision-mission-section,
  .contact-section {
    padding: 3rem 0;
  }
  
  .values-section {
    margin-top: 2rem;
  }
  
  .values-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  
  /* Hotline mobile */
  .hotline-text {
    font-size: 0.8rem;
  }
  
  /* Fix potential overflow elements */
  .about-grid,
  .services-grid,
  .values-grid,
  .vision-mission-grid,
  .contact-grid,
  .footer-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0 15px;
  }
  
  /* Ensure all images and content respect boundaries */
  img {
    max-width: 100%;
    height: auto;
  }
  
  .service-card,
  .value-card,
  .vm-card,
  .stat-card {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Form specific mobile fixes */
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .form-group {
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    font-size: 0.9rem;
  }
  
  .form-group textarea {
    min-height: 80px;
    resize: vertical;
  }
  
  .btn-full {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
  }
  
  .contact-section .container {
    padding: 0 15px;
  }
  
  .form-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
  
  .logo-img {
    height: 45px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .btn-hero {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .value-card,
  .vm-card {
    padding: 1rem;
  }
  
  .vm-title {
    font-size: 1.3rem;
  }
  
  .vm-icon {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .header-content > .logo {
    order: 1;
  }

  .language-switcher {
    order: 2;
    margin-top: 0.25rem;
  }

  .mobile-menu-btn {
    order: 3;
    align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .logo-img {
    height: 50px;
  }
}

/* ==== Responsive Fixes for Mobile ==== */
@media (max-width: 768px) {
  .contact .row {
    flex-direction: column;
    gap: 2rem;
  }

  .contact .row .col {
    width: 100% !important;
    max-width: 100%;
  }

  .contact form {
    padding: 1rem !important;
  }

  .contact form input,
  .contact form textarea {
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
  }

  .contact .info {
    text-align: center;
    font-size: 0.95rem;
  }

  .contact h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .contact .info h3 {
    font-size: 1.2rem;
  }

  .contact .info p {
    font-size: 0.9rem;
  }

  .contact .info i {
    font-size: 1.3rem;
  }

  .btn {
    width: 100%;
    font-size: 1rem;
  }

  .container {
    padding-inline: 1rem;
  }
}
@media (max-width: 768px) {
  .contact .row {
    flex-direction: column;
    gap: 2rem;
  }

  .contact .row .col {
    width: 100% !important;
  }

  .contact form {
    padding: 1rem !important;
  }

  .contact form input,
  .contact form textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .contact h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .contact .info {
    text-align: center;
  }
}



/* === Contact Section Styles === */
.contact-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.contact-form-container,
.contact-info {
  flex: 1 1 48%;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* === Contact Form === */
.form-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form .form-group {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form .form-group textarea {
  resize: vertical;
}

.btn-full {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}

/* === Contact Info === */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
}

.info-title {
  font-size: 1.1rem;
  margin: 0;
}

.info-detail {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-form-container,
  .contact-info {
    flex: 1 1 100%;
    padding: 1.5rem;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form .form-group {
    flex: 1 1 100%;
  }

  .form-title {
    text-align: center;
  }

  .info-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-icon {
    margin-bottom: 0.5rem;
  }

  .btn-full {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .header-content {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .logo {
    order: 0;
    margin: 0 auto;
  }

  .mobile-menu-btn {
    order: 1;
    align-self: flex-end;
  }
}
.hotline-link {
  text-decoration: none;
  color: #E9E0B3;
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-block;
}

.hotline-link:hover {
  opacity: 0.8;
}
.info-detail-link {
  text-decoration: none;
  color: #6B7280; /* أو اللون اللي تستخدمه للنصوص */
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 0.25rem;
}

.info-detail-link:hover {
  opacity: 0.8;
}
.contact-phone-link {
  text-decoration: none;
  color: rgba(233, 224, 179, 0.8); /* أو أي لون تستخدمه للنص */
  font-size: 0.95rem;
  display: inline-block;
}

.contact-phone-link:hover {
  opacity: 0.8;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

    .form-control:focus {
        border-color: #2C303B;
        outline: none;
    }
.hero-slider {
    background-image: url('/assets/TD-4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 160px;
    min-height: 100vh;
    position: relative;
}

