* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', 'Inter', sans-serif;
  background: #f8fefc;
  color: #2d3748;
  line-height: 1.6;
  direction: rtl;
  text-align: right;
}

[lang="en"] body {
  direction: ltr;
  text-align: left;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.navbar {
  background: #fdfcfc;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d3748;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-link {
  color: #2d3748;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #319795;
}

.lang-toggle {
  background: #319795;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #2d3748;
  margin: 4px 0;
}

.hero {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #e6fffa, #f0fff4);
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 30px;
}

.cta-button {
  background: #38b2ac;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #319795;
}

.services {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2d3748;
}

.section-subtitle {
  font-size: 1rem;
  color: #718096;
}

.footer {
  background: #2d3748;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #38b2ac;
  margin-bottom: 15px;
}

.footer-links a {
  color: #e2e8f0;
  margin-bottom: 8px;
  display: inline-block;
}

.footer-links a:hover {
  color: #68d391;
}

.footer-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.footer-brand-name {
  font-size: 1.3rem;
  font-weight: bold;
}

.footer-tagline {
  color: #a0aec0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #e2e8f0;
}

.contact-item i {
  color: #68d391;
  margin-inline-end: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #4a5568;
  font-size: 0.9rem;
  color: #a0aec0;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}


button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 30px;
  border: none;
  border-radius: 30px;

  background: linear-gradient(135deg, #38b2ac, #68d391);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;

  cursor: pointer;
  box-shadow: 0 4px 15px rgba(56, 178, 172, 0.3);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 178, 172, 0.4);
}

button:active, .btn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 10px rgba(56, 178, 172, 0.2);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.btn i {
  font-size: 1.1rem;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
  z-index: 0;
}



form {
  max-width: 600px;
  margin: 30px auto;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

form .form-group {
  margin-bottom: 20px;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2d3748;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background-color: #f9fafb;
  color: #2d3748;
  transition: border 0.3s, box-shadow 0.3s;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #38b2ac;
  outline: none;
  box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.2);
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

form .form-row .form-group {
  flex: 1 1 45%;
}

html[dir="rtl"] form label {
  text-align: right;
}

html[dir="ltr"] form label {
  text-align: left;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding-top: 60px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    padding: 15px 20px;
    font-size: 1.2rem;
    text-align: center;
  }
}

.page-content {
  padding: 80px 20px;
  background: #f9fefb;
}

.page-content .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2d3748;
}

.page-desc {
  color: #4a5568;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.ticket-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.ticket-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-5px);
}

.ticket-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.ticket-card .qr-code {
  margin-top: 15px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.offers-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 30px;
}

.offer-card {
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(72, 187, 120, 0.1);
  transition: 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(72, 187, 120, 0.2);
}

.offer-card h3 {
  margin-bottom: 10px;
  color: #2f855a;
}




.nav-menu.active {
  display: flex;
}


@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }
}

.faq-section {
      max-width: 900px;
      margin: 40px auto;
      padding: 20px;
      background-color: #f0faff;
      border-radius: 16px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .faq-item {
      border-bottom: 3px solid #c0e8e8;
    }

    .faq-section h2 {
      text-align: center;
      color: #007f7f;
      margin-bottom: 30px;
      font-size: 28px;
    }

    .faq-question {
      background-color: #cceeff;
      color: #004d4d;
      cursor: pointer;
      padding: 15px 20px;
      font-size: 18px;
      font-weight: bold;
      border: none;
      width: 100%;
      text-align: right;
      outline: none;
      transition: background-color 0.3s;
    }

    .faq-answer {
      padding: 15px 20px;
      display: none;
      background-color: #e6ffff;
      color: #333;
      font-size: 16px;
      border-radius: 0 0 10px 10px;
    }