/* ========== CSS VARIABLES ========== */
:root {
  --navy: #0A1628;
  --navy-light: #111D35;
  --navy-mid: #162544;
  --royal: #1B4DDB;
  --royal-hover: #1541BD;
  --royal-light: #2B5FE8;
  --sky: #4A9FFF;
  --sky-pale: #E8F2FF;
  --gold: #F5A623;
  --gold-light: #FFD580;
  --gold-dark: #D4900E;
  --emerald: #10B981;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --gray-100: #EEF1F6;
  --gray-200: #D8DDE6;
  --gray-300: #B0B8C9;
  --gray-500: #6B7A90;
  --gray-700: #3D4A5C;
  --gray-900: #1A2332;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.1);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.14);
  --shadow-glow: 0 0 40px rgba(27,77,219,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 120px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10,22,40,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  background: var(--royal) !important;
  color: white !important;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 17px !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: var(--royal-hover) !important;
  transform: translateY(-2px);
}

.nav-phone {
  color: var(--gold) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  margin: 4px 0;
  transition: 0.3s ease;
  border-radius: 1px;
  transform-origin: center;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 130px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.5) 50%, rgba(27,77,219,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px;
  width: 100%;
}

.hero-left {
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease-out 0.1s both;
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-badge span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 40px;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
}

.hero-stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 4px;
}

/* ========== LEAD FORM ========== */
.hero-form-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.form-header {
  margin-bottom: 28px;
  text-align: center;
}

.form-header h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-header p {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
}

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

.form-group label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: white;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.2s;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--royal-light);
  background: rgba(27,77,219,0.1);
  box-shadow: 0 0 0 3px rgba(27,77,219,0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form-group select option {
  background: var(--navy);
  color: white;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--royal);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.form-submit:hover {
  background: var(--royal-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.form-note {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  margin-top: 16px;
}

.required {
  color: #ff6b6b;
}

.error-message {
  display: none;
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 6px;
}

.input-error {
  border-color: #ff6b6b !important;
  background: rgba(255,107,107,0.1) !important;
}

.input-error:focus {
  box-shadow: 0 0 0 3px rgba(255,107,107,0.2) !important;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 120px 60px;
}

.section-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: var(--sky-pale);
  color: var(--royal);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 19px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 600px;
}

.section-center .section-subtitle {
  margin: 0 auto;
}

/* ========== WHY US ========== */
.why-section {
  background: var(--off-white);
  padding: 80px 60px;
}

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

.why-card {
  flex: 0 1 calc(33.333% - 16px);
  max-width: 400px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--sky));
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card:hover::before {
  opacity: 1;
}

.why-number {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
  -webkit-text-stroke: 1px var(--gray-300);
}

.why-card:hover .why-number {
  color: var(--royal);
  -webkit-text-stroke: 1px var(--royal);
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========== 3D TOUR ========== */
.tour-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 600px;
  background: var(--navy);
}

.tour-image {
  position: relative;
  overflow: hidden;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 100px 80px 80px;
}

.tour-accent {
  width: 60px;
  height: 4px;
  background: var(--gray-500);
  margin-bottom: 32px;
}

.tour-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.tour-text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.tour-text strong {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tour-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tour-btn {
  display: block;
  padding: 18px 32px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.tour-btn-primary {
  background: white;
  color: var(--navy);
  border: 2px solid white;
}

.tour-btn-primary:hover {
  background: transparent;
  color: white;
}

.tour-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.tour-btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* ========== PROGRAMS ========== */
.programs-section {
  background: var(--off-white);
}

.section-line {
  width: 80px;
  height: 4px;
  background: var(--royal);
  margin: 24px auto 0;
}

.programs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1400px;
  margin: 56px auto 0;
}

.program-card {
  flex: 0 1 calc(20% - 23px);
  min-width: 240px;
  max-width: 280px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--royal);
}

.program-img-wrap {
  position: relative;
  overflow: hidden;
}

.program-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.program-card:hover .program-img {
  transform: scale(1.05);
}

.program-content {
  padding: 20px;
}

.program-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  gap: 12px;
}

.program-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.program-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.program-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--navy);
  transition: transform 0.3s ease;
}

.program-card.expanded .program-toggle {
  background: var(--royal);
}

.program-card.expanded .program-toggle svg {
  stroke: white;
  transform: rotate(180deg);
}

.program-specializations {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.program-card.expanded .program-specializations {
  max-height: 500px;
}

.program-list {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid var(--gray-100);
  margin-top: 16px;
}

.program-list li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
}

.program-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--royal);
  border-radius: 50%;
}

/* ========== FAQ ========== */
.faq-section {
  background: white;
}

.faq-section .section-title,
.faq-section .section-tag,
.faq-section .section-subtitle {
  text-align: center;
}

.faq-grid {
  max-width: 900px;
  margin: 56px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 24px;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  text-align: left;
}

/* ========== SUCCESS MODAL ========== */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,22,40,0.8);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.success-modal-content {
  background: white;
  border-radius: var(--radius-xl);
  padding: 56px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  animation: fadeUp 0.4s ease-out;
}

.success-check {
  width: 80px;
  height: 80px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
  color: white;
}

.success-modal-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-modal-content p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.modal-close-btn {
  padding: 16px 40px;
  background: var(--royal);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: var(--royal-hover);
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  padding: 56px 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 36px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}

.footer-contact a svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.footer-contact a:hover {
  color: var(--gold);
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 32px;
    height: 90px;
  }

  .nav-logo-img {
    height: 56px;
    width: auto;
  }

  .nav-links {
    display: none !important;
    position: absolute !important;
    top: 90px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    background: var(--navy) !important;
    padding: 30px 32px 40px !important;
    gap: 0 !important;
    z-index: 1001 !important;
    margin: 0 !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
  }

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

  .nav-links li {
    width: 100% !important;
    display: block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-links li a {
    display: block !important;
    padding: 20px 0 !important;
    font-size: 20px !important;
    color: white !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    text-decoration: none !important;
  }

  .nav-links li a.nav-phone {
    color: var(--gold) !important;
  }

  .nav-links li a.nav-cta {
    margin-top: 24px !important;
    text-align: center !important;
    padding: 18px 28px !important;
    width: 100% !important;
    background: var(--royal) !important;
    border-radius: var(--radius-sm) !important;
    border-bottom: none !important;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    width: 14px;
    transform: translate(-4px, 4px) rotate(-45deg);
  }

  .hamburger.active span:nth-child(2) {
    width: 22px;
  }

  .hamburger.active span:nth-child(3) {
    width: 14px;
    transform: translate(-4px, -4px) rotate(45deg);
  }

  .hero {
    height: auto;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 40px 40px;
    gap: 36px;
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-left {
    text-align: center;
  }

  .hero-badge {
    margin-bottom: 24px;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
    gap: 40px;
  }

  .hero-stat-num {
    font-size: 36px;
  }

  .hero-form-card {
    max-width: 100%;
    padding: 28px 24px;
  }

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

  .form-header h3 {
    font-size: 22px;
  }

  .form-header p {
    font-size: 15px;
  }

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

  .form-group label {
    font-size: 12px;
  }

  .form-group input {
    padding: 14px 16px;
    font-size: 15px;
  }

  .form-submit {
    padding: 16px;
    font-size: 16px;
  }

  .form-note {
    font-size: 13px;
  }

  .section {
    padding: 100px 32px;
  }

  .section-title {
    font-size: 40px;
  }

  .why-grid {
    gap: 20px;
  }

  .why-card {
    flex: 0 1 calc(50% - 10px);
    max-width: none;
  }

  .programs-grid {
    gap: 20px;
  }

  .program-card {
    flex: 0 1 calc(33.333% - 14px);
    min-width: 200px;
    max-width: none;
  }

  .tour-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tour-image {
    height: 400px;
  }

  .tour-content {
    padding: 60px 48px;
  }

  .tour-title {
    font-size: 36px;
  }

  .tour-text {
    font-size: 16px;
  }

  .tour-buttons {
    flex-direction: row;
  }

  .tour-btn {
    flex: 1;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer {
    padding: 48px 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-contact {
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .navbar {
    height: 80px;
    padding: 0 20px;
  }

  .nav-logo-img {
    height: 50px;
    width: auto;
  }

  .nav-links {
    top: 80px !important;
    height: auto !important;
    padding: 24px 20px 40px !important;
  }

  .nav-links li a {
    padding: 16px 0 !important;
    font-size: 18px !important;
  }

  .nav-links li a.nav-cta {
    margin-top: 20px !important;
    padding: 14px 24px !important;
    font-size: 16px !important;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-content {
    padding: 30px 20px;
    gap: 32px;
  }

  .hero-form-card {
    padding: 24px 20px;
  }

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

  .form-header p {
    font-size: 14px;
  }

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

  .form-group input {
    padding: 14px 16px;
  }

  .form-submit {
    padding: 16px;
    font-size: 16px;
  }

  .form-note {
    margin-top: 12px;
    font-size: 13px;
  }

  .hero-badge {
    padding: 8px 16px;
    margin-bottom: 24px;
  }

  .hero-badge span {
    font-size: 12px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-stats {
    gap: 28px;
  }

  .hero-stat-num {
    font-size: 32px;
  }

  .hero-stat-label {
    font-size: 13px;
  }

  .hero-form-card {
    padding: 32px 24px;
  }

  .form-header h3 {
    font-size: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 20px;
  }

  .section-tag {
    font-size: 12px;
    padding: 8px 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .why-card {
    flex: 0 1 100%;
    padding: 32px 28px;
  }

  .why-card h3 {
    font-size: 20px;
  }

  .program-card {
    flex: 0 1 100%;
    min-width: auto;
    max-width: none;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-img {
    height: 180px;
  }

  .program-content {
    padding: 20px;
  }

  .program-card h3 {
    font-size: 18px;
  }

  .program-card p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .tour-image {
    height: 300px;
  }

  .tour-content {
    padding: 48px 24px;
  }

  .tour-accent {
    width: 48px;
    margin-bottom: 24px;
  }

  .tour-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .tour-text {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .tour-buttons {
    flex-direction: column;
  }

  .tour-btn {
    padding: 16px 24px;
    font-size: 15px;
  }

  .faq-question {
    font-size: 15px;
    padding: 20px 0;
  }

  .faq-icon {
    font-size: 20px;
  }

  .faq-answer p {
    font-size: 14px;
    padding: 0 0 20px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-logo-img {
    height: 50px;
    width: auto;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .footer-contact {
    gap: 10px;
  }

  .success-modal-content {
    padding: 40px 28px;
    margin: 20px;
  }

  .success-check {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }

  .success-modal-content h3 {
    font-size: 22px;
  }
}
