/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Colors */
:root {
  --bg-dark: #0b0f1a;
  --bg-card: #12182b;
  --primary: #2dd4bf;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

/* Global */
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.navbar {
  background: rgba(11, 15, 26, 0.9);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-login {
  padding: 8px 18px;
  border: 1px solid var(--primary);
  border-radius: 25px;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    rgba(11,15,26,0.85),
    rgba(11,15,26,0.85)
  ),
  url('../images/hero.jpg') center/cover no-repeat;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 30px;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* About */
.about {
  padding: 100px 0;
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.about-stats {
  display: flex;
  gap: 30px;
}

.stat {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
}

.stat h3 {
  font-size: 32px;
  color: var(--primary);
}

/* Why Us */
.why-us {
  padding: 80px 0;
  background: #0e1425;
}

.why-us h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: var(--bg-card);
  padding: 25px;
  text-align: center;
  border-radius: 15px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  background: #16203d;
}
/* Services */
.services {
  padding: 100px 0;
  background: var(--bg-dark);
}

.services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  margin: 20px;
}

.service-card p {
  margin: 0 20px 20px;
  color: var(--text-muted);
}

.service-card a {
  display: inline-block;
  margin: 0 20px 25px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.service-card:hover {
  transform: translateY(-10px);
}
.services-btn {
  text-align: center;
  margin-top: 50px;
}
/* Page Header */
.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(
    rgba(11,15,26,0.9),
    rgba(11,15,26,0.9)
  ),
  url('../images/hero.jpg') center/cover no-repeat;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-header p.subtitle {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.page-header p.subtitle span {
  color: var(--primary);   /* يغير جزء من الجملة للون مميز */
  font-weight: 600;
}
/* Booking */
.booking {
  padding: 100px 0;
  background: #0e1425;
}

.booking-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
}

.booking-form label {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-main);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  background: #1a1f36;
  color: var(--text-main);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--text-muted);
}

.booking-form button {
  padding: 15px;
  border: none;
  border-radius: 25px;
  background: var(--primary);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.booking-form button:hover {
  transform: translateY(-3px);
  background: #14b3a2;
}
/* Booking Form Fade In */
.booking-form {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  border-top: 1px solid #1f2235;
  padding: 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.footer strong {
  color: var(--primary);
}

.footer a.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #25D366; /* لون WhatsApp */
  text-decoration: none;
  font-weight: 600;
}

.footer a.whatsapp-link:hover {
  text-decoration: underline;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
}


/* Contact Page */
.contact-page {
  padding: 100px 0;
  background: #0e1425;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.contact-info, .contact-form-wrapper {
  flex: 1 1 350px;
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
}

.contact-info h2, .contact-form-wrapper h2 {
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.contact-info ul li strong {
  color: var(--primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  background: #1a1f36;
  color: var(--text-main);
  margin-bottom: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 25px;
  background: var(--primary);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-3px);
  background: #14b3a2;
}

/* Responsive */
@media(max-width: 900px){
  .contact-container {
    flex-direction: column;
  }
}

/* Auth Pages (Login & Register) */
.auth-page {
  padding: 100px 0;
  background: #0e1425;
}

.auth-container {
  max-width: 400px;
  margin: auto;
}

.auth-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.auth-form label {
  font-weight: 600;
  color: var(--text-main);
}

.auth-form input {
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  background: #1a1f36;
  color: var(--text-main);
}

.auth-form input::placeholder {
  color: var(--text-muted);
}

.auth-form button {
  padding: 15px;
  border: none;
  border-radius: 25px;
  background: var(--primary);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.auth-form button:hover {
  transform: translateY(-3px);
  background: #14b3a2;
}

.auth-form p {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.auth-form p a {
  color: var(--primary);
  text-decoration: none;
}

.auth-form p a:hover {
  text-decoration: underline;
}
