/* ================= ROOT ================= */
:root {
  --bg-main: #05061a;
  --bg-soft: #0b0f2a;
  --accent: #8b5cf6;
  --accent-soft: rgba(139,92,246,0.15);
  --text-main: #ffffff;
  --text-muted: #a5a8c6;
  --border-soft: rgba(255,255,255,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at 50% 0%, #2b145f 0%, var(--bg-main) 60%);
  color: var(--text-main);
  line-height: 1.7;
}

/* ================= UTIL ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-head h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
}

/* ================= NAV ================= */
/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 6, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}

/* ================= NAV CONTAINER ================= */
.nav-container {
  padding: 26px 56px;     /* More breathing room */
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;      /* wider */
  margin: 0 auto;
  padding: 26px 48px;     /* TALLER BAR */
}

/* ================= BRAND (LOGO + TITLE TOGETHER) ================= */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;              /* TIGHTER */
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 64px;        
  width: auto;         
  max-width: 100%;       
  display: block;
}
 


/* TITLE NEXT TO LOGO */
.nav-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  margin-left: 2px;       /* MICRO pull closer */
}

.nav-title-main {
  font-size: 28px;       /* Slightly down = better balance */
  font-weight: 800;
  line-height: 1.15;
}

.nav-title-sub {
  font-size: 20px;       /* Subtitle should whisper, not shout */
  letter-spacing: 0.3px;
  opacity: 0.7;
}

/* ================= NAV LINKS ================= */
.nav-list {
  display: flex;
  align-items: center;
  gap: 38px;              /* MORE SPACE */
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;        /* BIGGER */
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-lang select {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
}

/* ================= CTA BUTTON ================= */
.nav-cta {
  padding: 14px 26px;     /* BIGGER BUTTON */
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #05061a;
}

/* ================= LANGUAGE SWITCHER ================= */
.gtranslate_wrapper {
  display: flex;
  align-items: center;
}

.gtranslate_wrapper .gt_selector,
.gtranslate_wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 38px;
  padding: 7px 34px 7px 12px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background-color: transparent;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.gtranslate_wrapper .gt_selector:hover,
.gtranslate_wrapper select:hover {
  background: var(--accent);
  color: #05061a;
}

.gtranslate_wrapper .gt_selector:focus,
.gtranslate_wrapper select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.gtranslate-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.translate-message {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .nav-container {
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 18px 20px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .nav-list {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .nav-list li:last-child {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .gtranslate-tools {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 14px 12px;
  }

  .brand-logo {
    height: 50px;
  }

  .nav-title-main {
    font-size: 22px;
  }

  .nav-title-sub {
    font-size: 15px;
  }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nav-list li {
    display: flex;
    justify-content: center;
  }

  .nav-link {
    font-size: 14px;
  }

  .nav-list li:last-child {
    grid-column: 1 / -1;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 10px 16px;
  }

  .gtranslate-tools {
    flex-direction: column;
    gap: 6px;
  }

  .translate-message {
    font-size: 11px;
  }
}


/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 8, 30, 0.9) 0%,
    rgba(6, 8, 30, 0.55) 45%,
    rgba(6, 8, 30, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 850px;
  padding: 0 24px;
  transform: translateY(-40px); /* pull content up */
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 18px;
}

.hero-intro {
  color: white;
  margin-bottom: 33px;
}

.hero-date {
  margin-bottom: 36px;
}

.date-pill {
  padding: 8px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-secondary {
  border: 1px solid var(--border-soft);
  color: var(--text-main); 
  }

 /* ================= CONTACT PAGE MAIN ================= */

.contact-page-main {
  padding: 96px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr; /* more space for text, smaller form */
  gap: 90px;
  align-items: start;
}

/* ================= LEFT INFO ================= */

.contact-info h2 {
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 34px;
}

.contact-info p {
  line-height: 1.75;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 44px;
}

.contact-info-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

.contact-info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--accent, #A01AFF);
  font-size: 24px;
}

.contact-info strong {
  color: #fff;
}

.contact-info span {
  color: var(--accent, #A01AFF);
}

/* ================= FORM CARD ================= */

.contact-form-card {
  background: linear-gradient(
    180deg,
    rgba(160,26,255,0.12),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(160,26,255,0.3);
  border-radius: 24px;
  padding: 36px;
  max-width: 460px;      /* prevents it from feeling huge */
  margin-left: auto;    /* pushes it right */
  box-shadow: 0 35px 90px rgba(160,26,255,0.25);
}

.contact-form-card h3 {
  margin-bottom: 26px;
  font-size: 26px;
  font-weight: 600;
}

/* ================= FORM ================= */

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-row label {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.form-control {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 13px;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.45);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent, #A01AFF);
  box-shadow: 0 0 0 1px rgba(160,26,255,0.4);
}

.contact-form-card .btn {
  margin-top: 14px;
  width: 100%;
}

/* ================= LOCATIONS ================= */

.locations-section {
  padding: 96px 0;
  text-align: center; /* center title + subtitle */
}

.locations-grid {
  max-width: 1000px;
  margin: 0 auto; /* centers grid */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}

.location-card {
  background: linear-gradient(
    180deg,
    rgba(160,26,255,0.12),
    rgba(255,255,255,0.04)
  );
  border: 1px solid rgba(160,26,255,0.3);
  border-radius: 24px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 35px 90px rgba(160,26,255,0.25);
}

.location-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  color: #e9d5ff; /* light purple */
}

.location-card p {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.location-card iframe {
  border-radius: 16px;
  width: 100%;
  border: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-form-card {
    max-width: 100%;
    margin-left: 0;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= intl-tel-input ================= */
.iti {
  width: 100%;
}

.iti__country-list {
  background: #0D1A3A;
  color: #ffffff;
}

.iti__country:hover {
  background-color: rgba(160, 26, 255, 0.2);
}

/* ================= FOOTER ================= */
.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  color: var(--text-muted);
}






