/* <!-- ========================================== -->
<!-- استخدام خط Cairo محلياً (صيغة TTF) -->
<!-- ========================================== -->
/* تعريف خط Cairo محلياً - جميع الأوزان (TTF) */
@font-face {
    font-family: 'Cairo';
    src: url('../font/Cairo-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cairo';
    src: url('../font/Cairo-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cairo';
    src: url('../font/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cairo';
    src: url('../font/Cairo-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cairo';
    src: url('../font/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cairo';
    src: url('../font/Cairo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cairo';
    src: url('../font/Cairo-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cairo';
    src: url('../font/Cairo-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/* ========================================== */
/* Font Awesome 6.4.0 - نسخة خفيفة ونظيفة */
/* ========================================== */

/* ---------- المسارات الأساسية للخطوط ---------- */
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../font/fa-brands-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../font/fa-regular-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../font/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../font/fa-v4compatibility.woff2') format('woff2');
}

/* ---------- الأيقونات الأساسية ---------- */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* ---------- Solid (900) ---------- */
.fas,
.fa-solid {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

/* ---------- Regular (400) ---------- */
.far,
.fa-regular {
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
}

/* ---------- Brands (400) ---------- */
.fab,
.fa-brands {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}

/* ---------- جميع الأيقونات المستخدمة ---------- */
.fa-arrow-left:before { content: "\f060"; }
.fa-whatsapp:before { content: "\f232"; }
.fa-phone:before { content: "\f095"; }
.fa-envelope:before { content: "\f0e0"; }
.fa-share-alt:before { content: "\f1e0"; }
.fa-users:before { content: "\f0c0"; }
.fa-telegram:before { content: "\f2c6"; }
.fa-facebook:before { content: "\f09a"; }
.fa-instagram:before { content: "\f16d"; }
.fa-graduation-cap:before { content: "\f19d"; }
.fa-passport:before { content: "\f5ab"; }
.fa-briefcase:before { content: "\f0b1"; }
.fa-language:before { content: "\f1ab"; }
.fa-plane:before { content: "\f072"; }
.fa-check-circle:before { content: "\f058"; }
.fa-paper-plane:before { content: "\f1d8"; }
.fa-location-dot:before { content: "\f3c5"; }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #ffffff;
    color: #3d3123;
    line-height: 1.6;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.2rem;
}

.feature-word {

    color: #3d3123;
    font-weight: bold;
}

.logo-img {

    @media ( max-width: 767px) {
        width: 13rem;
    }

    @media ( min-width : 768px) {
        width: 15rem;
    }
}

.bg-brand { background-color: #3d3123; }
.text-brand { color: #3d3123; }
.gold-gradient {
    background: linear-gradient(145deg, #d4af37, #f5e17a, #d4af37);
    background-size: 200% 200%;
}
.gold-text {
    background: linear-gradient(145deg, #d4af37, #f5e17a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(61, 49, 35, 0.08);
    @media ( max-width: 767px) {
        height: 10rem;
    }

    @media ( min-width : 768px) {
        height: 12rem;
    }
}

.start {

    color: red;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-svg {
    width: 200px;
    height: auto;
    max-width: 80vw;
}

.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #3d3123;
    opacity: 0.7;
    margin-top: 0.2rem;
}

/* hero */
.hero {
    text-align: center;
    padding: 2rem 0 1rem;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #3d3123;
}

.hero h1 span {
    background: linear-gradient(145deg, #d4af37, #f5e17a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #3d3123;
    max-width: 700px;
    margin: 0 auto 1.8rem;
    opacity: 0.9;
}

/* CTA */
.cta-primary {
    display: inline-block;
    background: linear-gradient(145deg, #d4af37, #f5e17a, #d4af37);
    background-size: 200% 200%;
    color: #3d3123;
    font-weight: 800;
    font-size: 1.4rem;
    padding: 1rem 2.8rem;
    border-radius: 60px;
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin: 0.5rem 0 1.2rem;
}

.cta-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 35px rgba(212, 175, 55, 0.5);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #3d3123;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.7rem 2.2rem;
    border-radius: 60px;
    border: 2px solid #3d3123;
    transition: 0.2s;
    text-decoration: none;
    margin: 0.3rem 0.5rem;
}

.cta-secondary:hover {
    background: #3d3123;
    color: #fff;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

/* ============================================ */
/* CONTACT INFO - تصميم احترافي وجذاب */
/* ============================================ */
.contact-section {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    border-radius: 30px;
    padding: 2rem 1.8rem;
    margin: 2rem 0 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 30px rgba(61, 49, 35, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-section .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-section .contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-section .contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f5e17a, #d4af37);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-section .contact-card:hover::after {
    opacity: 1;
}

.contact-section .contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.contact-section .contact-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(245,225,122,0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    transition: 0.3s ease;
}

.contact-section .contact-card:hover .icon-wrapper {
    background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(245,225,122,0.15));
    transform: scale(1.05);
}

.contact-section .contact-card .icon-wrapper i {
    font-size: 1.6rem;
    color: #d4af37;
}

.contact-section .contact-card .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3d3123;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-section .contact-card .value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #3d3123;
}

.contact-section .contact-card .value a {
    color: #3d3123;
    text-decoration: none;
    transition: 0.2s;
}

.contact-section .contact-card .value a:hover {
    color: #d4af37;
}

.contact-section .contact-card .value .separator {
    opacity: 0.3;
    margin: 0 0.3rem;
}

/* بطاقة العنوان - بحجم أكبر */
.contact-section .contact-card.address-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #3d3123, #2a2118);
    color: #fff;
    border: none;
}

.contact-section .contact-card.address-card .icon-wrapper {
    background: rgba(255,255,255,0.1);
}

.contact-section .contact-card.address-card .icon-wrapper i {
    color: #f5e17a;
}

.contact-section .contact-card.address-card .label {
    color: rgba(255,255,255,0.5);
}

.contact-section .contact-card.address-card .value {
    color: #fff;
    font-size: 1.1rem;
}

.contact-section .contact-card.address-card::after {
    background: linear-gradient(90deg, #f5e17a, #d4af37, #f5e17a);
}

@media (max-width: 640px) {
    .contact-section {
    padding: 1.5rem 1rem;
    }
    .contact-section .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    }
    .contact-section .contact-card {
    padding: 1rem 0.8rem;
    }
    .contact-section .contact-card .icon-wrapper {
    width: 45px;
    height: 45px;
    }
    .contact-section .contact-card .icon-wrapper i {
    font-size: 1.2rem;
    }
    .contact-section .contact-card .value {
    font-size: 0.85rem;
    }
    .contact-section .contact-card.address-card {
    grid-column: 1 / -1;
    }
    .contact-section .contact-card.address-card .value {
    font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .contact-section .contact-grid {
    grid-template-columns: 1fr;
    }
}

/* SOCIAL MEDIA SECTION */
.social-section {
    background: #3d3123;
    border-radius: 40px;
    padding: 1.8rem 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.social-section .social-title {
    color: #f5e17a;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.social-section .social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 2rem;
}

.social-section .social-icons a {
    color: #fff;
    font-size: 2rem;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.social-section .social-icons a:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #f5e17a;
}

.social-section .social-icons a .label {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .social-section .social-icons a {
    font-size: 1.5rem;
    padding: 0.3rem 0.7rem;
    }
    .social-section .social-icons a .label {
    font-size: 0.7rem;
    }
}

/* services */
.services {
    padding: 2rem 0 1.5rem;
}

.services h2 {
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #3d3123;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #faf8f5;
    padding: 1.5rem 0.8rem;
    border-radius: 30px;
    text-align: center;
    transition: 0.2s;
    box-shadow: 0 6px 14px rgba(0,0,0,0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.service-card i {
    font-size: 2.2rem;
    background: linear-gradient(145deg, #d4af37, #f5e17a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #3d3123;
    margin-bottom: 0.2rem;
}

.service-card p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* social proof */
.proof {
    background: #3d3123;
    color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 60px;
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.proof strong {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(145deg, #f5e17a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.proof span {
    font-size: 1.2rem;
    font-weight: 400;
}


    /* 4. شهادات الطلاب (Testimonials) */
    .testimonials {
      margin: 40px 0 30px;
      padding: 20px 0;
      border-top: 1px solid rgba(212, 175, 55, 0.2);
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-top: 15px;
    }
    @media (max-width: 600px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }
    .testimonial-item {
      background: #f9f7f2;
      padding: 16px 18px;
      border-radius: 16px;
      border: 1px solid #eee;
      transition: all 0.3s ease;
    }
    .testimonial-item:hover {
      border-color: #d4af37;
      box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    }
    .testimonial-item .quote {
      font-size: 0.95rem;
      font-weight: 500;
      color: #2c2c2c;
      line-height: 1.6;
    }
    .testimonial-item .author {
      margin-top: 10px;
      font-size: 0.85rem;
      color: #888;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .testimonial-item .author .avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #d4af37;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 0.8rem;
    }
    .testimonial-item .author .name {
      color: #3d3123;
      font-weight: 600;
    }


.testimonials .testimonial-item:hover,
.services-grid .service-card:hover {
  
  transform: scale(1.05);
 border-color: #d4af37;
  border-block-style: solid;
  border-width: 1px 1px 4px 1px;
}

/* form */
.form-section {
    background: #fbf9f6;
    border-radius: 48px;
    padding: 2.5rem 1.8rem;
    margin: 2.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-section h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #3d3123;
    text-align: center;
    margin-bottom: 0.5rem;
}

.form-section .sub {
    text-align: center;
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #3d3123;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 40px;
    border: 1px solid #ddd;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    background: #fff;
    transition: 0.2s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    background: linear-gradient(145deg, #d4af37, #f5e17a);
    color: #3d3123;
    font-family: 'Cairo';
    font-weight: 600;
    font-size: 1.3rem;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 60px;
    width: 100%;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.5);
}

/* footer */
.footer {
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(61, 49, 35, 0.08);
    text-align: center;
    color: #3d3123;
}

.footer .socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.5rem;
    margin: 1.2rem 0;
}

.footer .socials a {
    color: #3d3123;
    font-size: 1.8rem;
    transition: 0.2s;
    display: inline-block;
}

.footer .socials a:hover {
    transform: translateY(-3px);
    color: #d4af37;
}

.footer .address {
    font-size: 0.95rem;
    opacity: 0.7;
    margin: 0.8rem 0;
}

.footer .copy {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* responsive */
@media (max-width: 640px) {
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .cta-primary { font-size: 1.2rem; padding: 0.8rem 1.8rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .proof strong { font-size: 1.8rem; }
    .form-section { padding: 1.8rem 1rem; }
}

@media (max-width: 420px) {
    .services-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .service-card { padding: 1rem 0.3rem; }
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1.2rem; }
.mb-1 { margin-bottom: 1.2rem; }
