
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
      font-family: 'Arial', sans-serif;
}

body {
    
  direction: ltr;
  text-align: left;
}

/* ========== Hero Section ========== */
.hero {
  background: url('https://images.unsplash.com/photo-1729419906273-c83d904bebc4?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D')
    center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 5vw, 4rem);
  padding: clamp(0.5rem, 2vw, 1rem);
  background-color: rgba(44, 42, 42, 0.5);
  backdrop-filter: blur(5px);
}

.navbar a {
  color: #ece5e5;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ffd700;
}

.hero-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 60px;
  position: relative;
  z-index: 2;
}

.hero-logo img {
  width: 100%;
  max-width: clamp(200px, 35vw, 400px);
  height: auto;
  transition: all 0.3s ease;
}

/* ========== Sections ========== */
.section {
  padding: clamp(6rem, 12vw, 10rem) clamp(1rem, 5vw, 4rem);
}

.section-two-three {
  background: url('https://images.unsplash.com/photo-1651234131825-5b415e44411e?q=80&w=685&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%')
    top/cover no-repeat;
  position: relative;
}

.section-three {
  background: rgba(0, 0, 0, 0.5);
  padding: clamp(2rem, 10vw, 8rem) clamp(1rem, 5vw, 4rem);
}

.section-three div {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}



/* ========== Texts ========== */
.english-text {
  color: #d8cfcf;
  font-weight: bold;
  font-size: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.9;
  text-align: center;
}

.office-paragraph {
  color: #565452;
  font-weight: bold;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  line-height: 2;
  max-width: 40%;
  margin: 0 auto;
  text-align: left;
}

.name-highlight {
  color: #d8a713;
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  font-weight: 600;
}

/* form section*/
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  gap: 20px;
  box-sizing: border-box;
}

.contact-text {
  flex: 1 1 50%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #333;
}

.contact-text h3 {
  font-size: 1.8rem;
  margin-bottom: 17px;
  color: #111827;
  text-align: center;
}

.contact-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: center;
}

/* ========= الفورم ============ */
.contact-form {
  flex: 1 1 400px;
  background: linear-gradient(135deg, #dacc79, #9a9d83);
  border-radius: 15px;
  padding: 30px 20px;
  max-width: 400px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ======== زر الإرسال ========= */
.send-button {
  display: block;
  width: 50%;
  padding: 12px;
  background: linear-gradient(90deg, #3a3733, #e0bc78);
  border: none;
  border-radius: 8px;
  color: #eeeaea;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.send-button:hover {
  background: linear-gradient(90deg, #ff8e53, #ff6b6b);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* ===== استجابة الموبايل ===== */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-text,
    .contact-form {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .contact-text {
        padding: 15px;
        text-align: center;
    }

    .contact-form {
        padding: 20px;
        margin: 0 auto;
    }
     .contact-text h3 {
    font-size: 1.5rem; 
  }

  .contact-text p {
    font-size: 1rem;  
  }
  }


/* ========== Toggle Button ========== */
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #474745a5;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 5vw, 4rem);
}

/* عند التفعيل */
.nav-links.active {
  display: flex ;
}



/* ========== Mobile ========== */
@media (max-width: 576px) {
  .navbar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    position: static;
  }
 
  .office-paragraph {
  font-size: 0.80rem;
  line-height: 1.5;
  text-align: left;       
  transform: translateY(-45px);  
  margin-left: 0;          
  max-width: 300px;      
  
}
  .navbar a {
    margin: 0.3rem 0;
    font-size: 0.8rem;
  }

   .hero-logo {
     position: relative;
  top: -370px;
  }

  .hero-logo img {
    max-width: 260px;
  }

  .section {
    padding: 6rem 2rem;
  }

  .section-three {
    padding: 6rem 2rem;
  }

   .nav-toggle {
    display: block;
    position: fixed; 
    left: 1rem;
    top: 1rem;
    z-index: 1100;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.324);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
  }
 
   
}

/* ========== Tablet ========== */
@media (min-width: 577px) and (max-width: 992px) {
  .navbar {
    gap: 2rem;
    padding: 0.8rem;
  }

  .navbar a {
    font-size: 1.1rem;
  }

  .hero-logo img {
    max-width: 500px;
  }

  .section,
  .section-three {
    padding: 3rem 2rem;
  }
}

/* ========== Desktop ========== */
@media (min-width: 993px) {
  .navbar {
    gap: 4rem;
  }
    .office-paragraph {
    font-size: 1.3rem;
    line-height: 2.2;
  }
}

/* ========== Footer ========== */
.footer {
  background: #191818;
  color: #ece5e5;
  padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer p {
  margin: 0.3rem 0;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.footer-logo {
  width: 100%;
  max-width: clamp(150px, 30vw, 250px);
}