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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #2354D8 0%, #133E91 100%);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffccf2 0%, #977dff 50%, #0033FF 100%);
  padding: 12px 40px;
}

.eventlogo {
  height: 100px;
  width: auto;
}

header h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}

header h4:hover {
  color: lab(76% 1.76 4.03);
}

.nav-links a:last-child h4 {
  background: #0033FF;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 6px;
  margin-left: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.pricing-section {
  width: 100%;
  text-align: center;
  padding: 70px 20px 40px;
}

.pricing-label {
  color: #c9a8ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.pricing-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 50px;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: linear-gradient(180deg, #3a6ae8 0%, #1f4d99 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.pricing-card.popular {
  border: 2px solid #9d5cff;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #9d5cff;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-qty {
  color: #c9d3e8;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.pricing-price {
  color: #ffffff;
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 4px;
}

.pricing-sub {
  margin-bottom: 24px;
}

.pricing-sub .no-save {
  color: #9fb0d8;
  font-size: 13px;
}

.pricing-sub .save-tag {
  display: inline-block;
  background: #22c55e;
  color: #0f1c3f;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
}

.pricing-btn {
  display: block;
  background: #9d5cff;
  color: #ffffff;
  text-decoration: none;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  width: 100%;
  text-align: center;
  transition: background 0.2s ease;
}

.pricing-btn:hover {
  background: #8642f0;
}

@media (max-width: 700px) {
  .pricing-card.popular {
    transform: none;
  }
}

.form-container {
  max-width: 550px;
  margin: 60px auto;
  background: linear-gradient(180deg, #3a6ae8 0%, #1f4d99 100%);
  border-radius: 16px;
  padding: 45px 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.form-title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
}

.group-form-container {
  max-width: 650px;
}

.group-price-note {
  text-align: center;
  color: #c9d3e8;
  font-size: 14px;
  font-weight: 700;
  margin-top: -18px;
  margin-bottom: 32px;
}

.person-block {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  margin-top: 24px;
}

.person-block:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.person-heading {
  color: #9d5cff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.form-group label {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* المربعات أفتح شوية عشان تليق مع خلفية الفورم الجديدة */
.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #274e8f;
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input::placeholder {
  color: #b7c3de;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #9d5cff;
}

.form-group select option {
  background: #1f4d99;
  color: #ffffff;
}

.radio-group {
  display: flex;
  gap: 24px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #9d5cff;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background: #0369dd;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background: #9d5cff;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #16234a;
  padding: 40px 36px;
  border-radius: 16px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.error-icon {
  font-size: 46px;
  margin-bottom: 14px;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.checkmark {
  width: 100%;
  height: 100%;
}

.checkmark-circle-bg {
  stroke: #22c55e;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: circleDraw 0.5s ease forwards;
}

.checkmark-check {
  stroke: #22c55e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkDraw 0.3s ease forwards 0.5s;
}

@keyframes circleDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}

.modal-box h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-box p {
  color: #f6f6f7;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-btn {
  background: #1a85ff;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  padding: 12px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-btn:hover {
  background: #9d5cff;
}

.site-footer {
  background: linear-gradient(135deg, #ffccf2 0%, #977dff 50%, #0033FF 100%);
  padding: 50px 60px 0;
  color: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-about {
  flex: 2;
  min-width: 280px;
}

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

.footer-about p {
  color: #fdf9f9;
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fdfdfd;
  font-size: 14px;
}

.footer-contact .icon {
  font-size: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 13px;
  margin: 0;
}
/* ============================================================
   MOBILE RESPONSIVE - shared across all pages
   ============================================================ */

/* Nav links should not look like plain blue links */
header nav a {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 12px 20px;
  }

  .eventlogo {
    height: 55px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
    align-items: flex-start;
  }

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

  .nav-links h4 {
    margin: 10px 0;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .about-title {
    font-size: 28px;
  }

  .form-container {
    padding: 30px 24px;
    margin: 30px 16px;
  }

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .sponsor-grid {
    gap: 16px;
  }

  .sponsor-card {
    width: 140px;
  }

  .workshops-title,
  .agenda-title {
    font-size: 26px;
  }
}
