/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url("7402282.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/*
body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.8;
}
*/
/* خلي المحتوى ياخد المساحة */
main {
  flex: 1;
}

/* الهيدر */
header {
  background: #023e8a;
  color: #fff;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.3s;
}

nav a:hover {
  background: #0077b6;
}

/* Contact Section */
.contact-info {
  background: #fff;
  max-width: 900px;
  margin: 30px auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
  color: #023e8a;
  margin-bottom: 15px;
  font-size: 24px;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.whatsapp {
  background: #25D366;
}

.whatsapp:hover {
  background: #1ebe5a;
}

.call {
  background: #0096c7;
}

.call:hover {
  background: #0077b6;
}

/* الخريطة */
.map {
  max-width: 900px;
  margin: 30px auto;
  text-align: center;
}

.map h2 {
  margin-bottom: 15px;
  color: #023e8a;
  font-size: 22px;
}

iframe {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* الفوتر */
footer {
  text-align: center;
  padding: 20px;
  background-color: #023e8a;
  color: #fff;
  margin-top: auto;
  font-size: 0.95em;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
