body.contact-page {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: url("images/round-١.jpg") no-repeat center center fixed;
  background-size: cover;
  color: white;
  line-height: 1.8;
}

/* رأس الصفحة */
header.glass-header {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-title-top {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffcc00;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.logo img {
  width: 55px;
  border-radius: 12px;
}

.nav-buttons a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-buttons a:hover, .nav-buttons .active {
  color: #ffcc00;
}

/* المحتوى */
.contact-content {
  max-width: 950px;
  margin: 40px auto;
  background: rgba(0, 0, 0, 0.6);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* الأزرار */
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.buttons-container a {
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

.whatsapp { background-color: #25D366; }
.website { background-color: #2980b9; }
.youtube { background-color: #FF0000; }
.facebook { background-color: #3b5998; }
.instagram { background-color: #C13584; }

.buttons-container a:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

/* صندوق الدفع */
.payment-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  text-align: center;
}

.payment-box img {
  width: 25px;
  vertical-align: middle;
}

.payment-box h3 {
  color: #ffcc00;
}

.buy-buttons, .pay-buttons {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.buy-buttons a, .pay-buttons button {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  transition: 0.3s;
}

.green { background-color: #27ae60; }
.orange { background-color: #e67e22; }
.pay-buttons button { background: #333; }

.copy-all {
  margin-top: 15px;
  background: #16a085;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  border: none;
}

.copy-all:hover { opacity: 0.9; }

/* نموذج التواصل */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.contact-form button {
  background: #ffcc00;
  color: #000;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ffd633;
}

/* ===== تنسيق فقرة "نبذة عن المطور" ===== */
.about-me {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}

.about-me h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
}

.about-me p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

/* ===== الصورة داخل فقرة "نبذة عن المطور" ===== */
.contact-image {
  margin: 20px auto;
}

.contact-image img {
  width: 200px;
  height: 200px;
  object-fit: cover; /* يخلي الصورة تتقص حسب المربع بدون تمدد */
  border-radius: 0; /* يخليها مربعة مش دائرية */
  border: 3px solid #4caf50; /* إطار أخضر أنيق */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* ===== أيقونات التواصل ===== */
.contact-icons {
  margin-top: 15px;
}

.contact-icons a {
  color: #4caf50;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #ff9800;
}
/* تجاوب الهاتف */
@media (max-width: 768px) {
  .buttons-container, .buy-buttons, .pay-buttons {
    flex-direction: column;
  }

  .buttons-container a, .buy-buttons a, .pay-buttons button, .copy-all {
    width: 90%;
  }
}
