:root {
  --main-bg: #0f172a;
  --card-bg: #ffffff;
  --accent: #d4af37; /* ذهبي */
  --text-main: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #f8fafc;
  color: var(--text-main);
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 8%;
  background: rgba(15, 23, 42, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
}

.logo span {
  color: var(--accent);
}

.menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.menu li a {
  color: var(--white);
  text-decoration: none;
  margin: 0 1.5rem;
  font-weight: 600;
  transition: 0.3s;
}

.menu li a:hover {
  color: var(--accent);
}

.btn-nav {
  background: var(--accent);
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  color: var(--main-bg) !important;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  color: var(--white);
}

.main-logo-svg {
  width: 180px;
  height: 180px;
  margin-bottom: 2rem;
  animation: pulse 4s infinite ease-in-out;
}

.svg-text-top {
  fill: var(--white);
  font-weight: 800;
  font-size: 18px;
}
.svg-text-bot {
  fill: var(--accent);
  font-weight: 800;
  font-size: 22px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-button {
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--main-bg);
  text-decoration: none;
  font-weight: 800;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

/* Services */
.section {
  padding: 100px 8%;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  border: 1px solid #f1f5f9;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  fill: var(--accent);
  margin-bottom: 1.5rem;
}

/* Form Section */
.dark-section {
  background: var(--main-bg);
  color: var(--white);
}
.section-title.white {
  color: var(--white);
}

.service-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--white);
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #b8962d;
}

/* Footer */
footer {
  background: #070b14;
  color: var(--white);
  padding: 50px 8% 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.footer-copy {
  text-align: center;
  padding-top: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
