/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== COLORS ===== */
:root {
  --primary: #0d6efd;      /* أزرق رئيسي */
  --secondary: #00b4d8;    /* أزرق ثانوي / hover */
  --dark: #0b1c2d;          /* Navbar & Footer */
  --white: #ffffff;
  --text-dark: #333;        /* النصوص على الأبيض */
  --highlight: #ffd700;     /* hover active */
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: var(--dark);
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.navbar nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 6px;
  transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: var(--secondary);
  background: rgba(255,255,255,0.1);
}


/* ===== HERO ===== */
.contact-hero {
  height: 60vh;
  background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),
              url("https://i.postimg.cc/T3RrzGSb/pexels-connor-danylenko-534256-2612113.jpg") center/cover no-repeat;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 22px;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  margin: 80px auto;
  padding: 80px 20px;
  background: var(--white);
  border-radius: 20px;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.simple-form {
  max-width: 500px;
  margin: auto;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-form input,
.simple-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.simple-form input:focus,
.simple-form textarea:focus {
  border-color: var(--primary);
}

.simple-form textarea {
  height: 100px;
  resize: none;
}

.simple-form button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.simple-form button:hover {
  background: #084298;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: block;
  text-align: center;
  margin-top: 15px;
  padding: 12px 25px;
  background: #25d366;
  color: var(--white);
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* ===== WHY US / ACCORDION ===== */
.contact-why {
  padding: 80px 20px;
  background: var(--white);
}

.contact-why h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.accordion {
  max-width: 800px;
  margin: auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.accordion-btn {
  width: 100%;
  padding: 18px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  text-align: left;
  transition: 0.3s;
}

.accordion-btn:hover {
  background: #084298;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  background: var(--white);
  transition: max-height 0.4s ease;
}

/* ===== MAP ===== */
.map-section {
  padding: 60px 20px;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  border: 0;
}

/* ===== FOOTER ===== */
.footer-pro {
  background: var(--dark);
  color: var(--white);
  padding: 60px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 40px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

/* ===== ANIMATIONS ===== */
.fade {
  animation: fade 1.2s ease;
}

.slide {
  animation: slide 1s ease;
}

@keyframes fade {
  from {opacity:0}
  to {opacity:1}
}

@keyframes slide {
  from {transform: translateY(40px); opacity:0}
  to {transform: translateY(0); opacity:1}
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 34px;
  }
  
  .simple-form {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 28px;
  }

