/* ===========================================
   SKKS - Suanson Khon Kaen School
   Main Stylesheet
   =========================================== */

:root {
  /* Primary Color Palette */
  --color-sky: #5BB8E0;
  --color-sky-light: #A8DBF0;
  --color-sky-dark: #3A8FB7;
  --color-green: #7CB342;
  --color-green-light: #A5D170;
  --color-green-dark: #558B2F;
  
  /* Secondary Colors */
  --color-navy: #1E3A5F;
  --color-navy-light: #2C5282;
  --color-gray: #6B7280;
  --color-gray-light: #E5E7EB;
  --color-gray-bg: #F9FAFB;
  --color-white: #FFFFFF;
  
  /* Accent */
  --color-pink: #EC4899;
  --color-pink-light: #FCE7F3;
  --color-yellow: #FCD34D;
  
  /* Typography */
  --font-display: 'Prompt', 'Poppins', sans-serif;
  --font-body: 'Sarabun', 'Inter', sans-serif;
  --font-en: 'Poppins', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.06);
  --shadow-md: 0 4px 16px rgba(30, 58, 95, 0.10);
  --shadow-lg: 0 8px 32px rgba(30, 58, 95, 0.12);
  --shadow-xl: 0 20px 50px rgba(30, 58, 95, 0.15);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--color-navy);
  line-height: 1.6;
  background: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================================
   NAVIGATION
   =========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-gray-light);
  padding: 12px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--color-green-dark);
}

.logo-text span {
  font-size: 11px;
  color: var(--color-gray);
  letter-spacing: 0.5px;
}

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

.nav-menu a {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-navy);
  position: relative;
  transition: var(--transition);
}

.nav-menu a:hover {
  background: var(--color-sky-light);
  color: var(--color-navy);
}

.nav-menu a.active {
  background: linear-gradient(135deg, var(--color-sky), var(--color-green));
  color: white;
}

.nav-cta {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-sky) 100%);
  color: white !important;
  padding: 12px 28px !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(124, 179, 66, 0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 179, 66, 0.45);
}

.menu-toggle {
  display: none;
  background: none;
  font-size: 28px;
  color: var(--color-navy);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #E0F4FB 0%, #F0F9E8 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 184, 224, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 179, 66, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-green-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '🌱';
  font-size: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-sky) 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(124, 179, 66, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--color-navy);
  border: 2px solid var(--color-gray-light);
}

.btn-secondary:hover {
  border-color: var(--color-sky);
  color: var(--color-sky-dark);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
}

.stat-item {
  border-left: 3px solid var(--color-green);
  padding-left: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--color-gray);
  margin-top: 4px;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
  transition: var(--transition-slow);
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 4s ease-in-out infinite;
}

.float-card-1 {
  top: 20px;
  left: -30px;
  z-index: 2;
}

.float-card-2 {
  bottom: 30px;
  right: -20px;
  animation-delay: 1.5s;
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.float-icon.green {
  background: var(--color-green-light);
  color: var(--color-green-dark);
}

.float-icon.blue {
  background: var(--color-sky-light);
  color: var(--color-sky-dark);
}

.float-text strong {
  font-size: 14px;
  display: block;
  color: var(--color-navy);
}

.float-text span {
  font-size: 12px;
  color: var(--color-gray);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===========================================
   SECTION HEADER
   =========================================== */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  background: var(--color-sky-light);
  color: var(--color-sky-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-gray);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================================
   PROGRAMS SECTION
   =========================================== */
.programs {
  background: var(--color-gray-bg);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.program-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-sky), var(--color-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.program-card:hover::before {
  transform: scaleX(1);
}

.program-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-sky-light), var(--color-green-light));
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-navy);
}

.program-card p {
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-grade {
  display: inline-block;
  background: var(--color-green-light);
  color: var(--color-green-dark);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}

/* ===========================================
   ACHIEVEMENTS / O-NET SECTION
   =========================================== */
.achievements {
  background: linear-gradient(135deg, #f8fcfd 0%, #f4faf0 100%);
  position: relative;
  overflow: hidden;
}

.achievements::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(91, 184, 224, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
}

.achievements-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.achievement-stat {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-gray-light);
}

.achievement-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.achievement-stat .number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-sky-dark), var(--color-green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.achievement-stat .label {
  margin-top: 8px;
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 500;
}

/* Student Slider */
.students-slider-wrapper {
  position: relative;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.slider-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
}

.slider-buttons {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-navy);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--color-sky);
  color: white;
  border-color: var(--color-sky);
  transform: scale(1.1);
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.students-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 4px 24px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.students-slider::-webkit-scrollbar {
  display: none;
}

.student-card {
  flex: 0 0 280px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  scroll-snap-align: start;
  position: relative;
}

.student-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.student-card-header {
  background: linear-gradient(135deg, var(--color-sky-light), var(--color-green-light));
  padding: 24px;
  position: relative;
  height: 140px;
  display: flex;
  align-items: flex-end;
}

.student-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid white;
  background: var(--color-gray-light);
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.student-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-card-body {
  padding: 64px 24px 24px;
  text-align: center;
}

.student-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.student-grade {
  font-size: 13px;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.student-score {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}

.score-subject {
  font-size: 12px;
  color: var(--color-gray);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.score-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #d97706;
  line-height: 1;
}

.score-value span {
  font-size: 14px;
  color: var(--color-gray);
  font-weight: 500;
}

.student-test {
  font-size: 12px;
  color: var(--color-gray);
  font-weight: 500;
}

/* ===========================================
   ADMISSIONS / FORM SECTION
   =========================================== */
.admissions {
  background: white;
}

.admission-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.admission-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-navy);
}

.admission-info p {
  color: var(--color-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.admission-steps {
  list-style: none;
  margin-top: 32px;
}

.admission-steps li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sky), var(--color-green));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.step-content strong {
  font-family: var(--font-display);
  display: block;
  color: var(--color-navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.step-content span {
  font-size: 14px;
  color: var(--color-gray);
}

/* Form */
.admission-form {
  background: linear-gradient(135deg, #f8fcfd 0%, #f4faf0 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-light);
}

.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.form-subtitle {
  color: var(--color-gray);
  font-size: 14px;
  margin-bottom: 28px;
}

.form-progress {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  gap: 4px;
}

.progress-step {
  flex: 1;
  height: 6px;
  background: var(--color-gray-light);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.progress-step.active {
  background: linear-gradient(90deg, var(--color-sky), var(--color-green));
}

.progress-step.completed {
  background: var(--color-green);
}

.form-step-label {
  font-size: 13px;
  color: var(--color-gray);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form-label .required {
  color: var(--color-pink);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: var(--transition);
  color: var(--color-navy);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-sky);
  box-shadow: 0 0 0 4px rgba(91, 184, 224, 0.1);
}

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

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}

.form-actions .btn {
  flex: 1;
  justify-content: center;
}

.btn-back {
  background: var(--color-gray-light);
  color: var(--color-navy);
}

.btn-back:hover {
  background: var(--color-gray);
  color: white;
}

/* Payment */
.payment-summary {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  border: 1px solid var(--color-gray-light);
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: var(--color-navy);
}

.payment-row.total {
  border-top: 2px solid var(--color-gray-light);
  margin-top: 12px;
  padding-top: 16px;
  font-weight: 700;
  font-size: 18px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.payment-method {
  background: white;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.payment-method:hover {
  border-color: var(--color-sky);
}

.payment-method.selected {
  border-color: var(--color-sky);
  background: var(--color-sky-light);
}

.payment-method .icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.payment-method .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy);
}

.success-screen {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-green), var(--color-sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
  color: white;
  animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-screen h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.success-screen p {
  color: var(--color-gray);
  margin-bottom: 24px;
}

.ref-number {
  background: var(--color-gray-bg);
  padding: 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 2px;
}

/* ===========================================
   FEATURES SECTION
   =========================================== */
.features {
  background: var(--color-gray-bg);
}

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

.feature-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid var(--color-gray-light);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sky-light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-icon.icon-1 { background: linear-gradient(135deg, #FCE7F3, #FBCFE8); color: var(--color-pink); }
.feature-icon.icon-2 { background: linear-gradient(135deg, var(--color-sky-light), #BFDBFE); color: var(--color-sky-dark); }
.feature-icon.icon-3 { background: linear-gradient(135deg, var(--color-green-light), #BBF7D0); color: var(--color-green-dark); }
.feature-icon.icon-4 { background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: #D97706; }
.feature-icon.icon-5 { background: linear-gradient(135deg, #E9D5FF, #DDD6FE); color: #7C3AED; }
.feature-icon.icon-6 { background: linear-gradient(135deg, #FED7AA, #FDBA74); color: #EA580C; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-navy);
}

.feature-card p {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  color: white;
}

.footer-brand .logo-text strong {
  color: var(--color-green-light);
}

.footer-brand .logo-text span {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--color-green);
  transform: translateY(-3px);
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 14px;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--color-green-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .hero-container,
  .admission-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-200%);
    transition: var(--transition);
  }
  
  .nav-menu.open {
    transform: translateY(0);
  }
  
  .nav-menu a {
    display: block;
    padding: 12px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .float-card-1, .float-card-2 {
    display: none;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ===========================================
   ✨ ADDITIONS — Complete Site
   =========================================== */

/* TOP BAR */
.top-bar {
  background: linear-gradient(90deg, #1E3A5F, #2D4F7A);
  color: white;
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.top-bar a:hover { opacity: 1; }
.lang-switch a { padding: 0 4px; }
.lang-switch a.active { color: #7CB342; font-weight: 600; }

/* Adjust navbar for top bar */
.navbar {
  top: 0;
}

/* DROPDOWN MENU */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.15);
  border-radius: 12px;
  min-width: 220px;
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
  z-index: 1000;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  color: #1E3A5F;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s;
}
.dropdown li a:hover {
  background: #F0F9FF;
  color: #5BB8E0;
}

/* TRUST BAR */
.trust-bar {
  background: white;
  padding: 32px 0;
  border-bottom: 1px solid #E5E7EB;
}
.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  color: #6B7280;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo {
  font-size: 15px;
  color: #1E3A5F;
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.trust-logo:hover { opacity: 1; }

/* ABOUT SECTION */
.about-section {
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(30, 58, 95, 0.15);
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 20px 28px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.15);
  text-align: center;
  border: 4px solid #7CB342;
}
.about-image-badge strong {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  color: #1E3A5F;
  font-weight: 800;
  line-height: 1;
}
.about-image-badge span {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
  display: block;
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.about-lead {
  font-size: 17px;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 32px;
}
.vision-mission {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.vm-card {
  background: linear-gradient(135deg, #F0F9FF, #F0FDF4);
  padding: 20px 24px;
  border-radius: 16px;
  border-left: 4px solid #5BB8E0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.vm-card:nth-child(2) { border-left-color: #7CB342; }
.vm-card:nth-child(3) { border-left-color: #EC4899; }
.vm-icon {
  font-size: 32px;
  line-height: 1;
}
.vm-card h4 {
  font-family: 'Prompt', sans-serif;
  color: #1E3A5F;
  margin-bottom: 6px;
  font-size: 17px;
}
.vm-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

/* HISTORY / TIMELINE */
.history-section {
  background: linear-gradient(180deg, #F9FAFB, white);
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, #5BB8E0, #7CB342);
  transform: translateX(-50%);
  border-radius: 100px;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  margin-bottom: 20px;
}
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; }
.timeline-item::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 4px solid #5BB8E0;
  top: 28px;
  z-index: 1;
}
.timeline-item.left::before { right: -9px; }
.timeline-item.right::before { left: -9px; }
.timeline-content {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.08);
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
}
.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.12);
}
.timeline-content.current {
  background: linear-gradient(135deg, #5BB8E0, #7CB342);
  color: white;
  border: none;
}
.timeline-content.current h4,
.timeline-content.current .timeline-year {
  color: white;
}
.timeline-content.current p {
  color: rgba(255,255,255,0.95);
}
.timeline-year {
  display: inline-block;
  font-family: 'Prompt', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #5BB8E0;
  margin-bottom: 8px;
}
.timeline-content h4 {
  font-family: 'Prompt', sans-serif;
  color: #1E3A5F;
  margin-bottom: 8px;
  font-size: 18px;
}
.timeline-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

/* PROGRAMS — featured card */
.program-card {
  position: relative;
}
.program-card.featured {
  background: linear-gradient(135deg, #FFFFFF, #F0F9FF);
  border: 2px solid #5BB8E0;
}
.program-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #F59E0B, #EC4899);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.program-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  text-align: left;
}
.program-features li {
  padding: 4px 0;
  color: #4B5563;
  font-size: 13px;
}

/* STAFF SECTION */
.staff-section {
  background: white;
}
.staff-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.staff-stat-card {
  background: linear-gradient(135deg, #F0F9FF, #F0FDF4);
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #E5E7EB;
}
.staff-stat-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.staff-stat-num {
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1E3A5F;
  line-height: 1;
}
.staff-stat-label {
  font-size: 13px;
  color: #6B7280;
  margin-top: 4px;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.staff-card {
  background: white;
  padding: 28px 20px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
}
.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.12);
  border-color: #5BB8E0;
}
.staff-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.staff-initial {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: white;
}
.staff-card h4 {
  font-family: 'Prompt', sans-serif;
  color: #1E3A5F;
  font-size: 17px;
  margin-bottom: 4px;
}
.staff-role {
  display: block;
  color: #5BB8E0;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.staff-card p {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}
.staff-cta {
  text-align: center;
  margin-top: 40px;
}

/* FACILITIES */
.facilities-section {
  background: linear-gradient(180deg, #F9FAFB, white);
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.facility-card {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.1);
  border-color: #7CB342;
}
.facility-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}
.facility-card h4 {
  font-family: 'Prompt', sans-serif;
  color: #1E3A5F;
  font-size: 16px;
  margin-bottom: 8px;
}
.facility-card p {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* TUITION */
.tuition-section {
  background: white;
}
.tuition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.tuition-card {
  background: white;
  padding: 36px 28px;
  border-radius: 24px;
  border: 2px solid #E5E7EB;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tuition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12);
}
.tuition-card.featured {
  background: linear-gradient(135deg, #1E3A5F, #2D4F7A);
  color: white;
  border-color: transparent;
  transform: scale(1.05);
}
.tuition-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}
.tuition-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F59E0B, #EC4899);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}
.tuition-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E7EB;
}
.tuition-card.featured .tuition-header {
  border-color: rgba(255,255,255,0.2);
}
.tuition-header h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 22px;
  margin-bottom: 4px;
}
.tuition-grade {
  font-size: 13px;
  color: #6B7280;
}
.tuition-card.featured .tuition-grade {
  color: rgba(255,255,255,0.8);
}
.tuition-price {
  text-align: center;
  margin-bottom: 24px;
}
.tuition-price .currency {
  font-size: 20px;
  vertical-align: top;
  color: #6B7280;
}
.tuition-card.featured .tuition-price .currency {
  color: rgba(255,255,255,0.7);
}
.tuition-price .amount {
  font-family: 'Prompt', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1E3A5F;
}
.tuition-card.featured .tuition-price .amount {
  color: white;
}
.tuition-price .period {
  display: block;
  font-size: 13px;
  color: #6B7280;
  margin-top: 4px;
}
.tuition-card.featured .tuition-price .period {
  color: rgba(255,255,255,0.7);
}
.tuition-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.tuition-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #4B5563;
  border-bottom: 1px solid #F3F4F6;
}
.tuition-card.featured .tuition-features li {
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.1);
}
.tuition-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.tuition-card.featured .btn {
  background: white;
  color: #1E3A5F;
}
.tuition-card.featured .btn:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-2px);
}
.tuition-note {
  background: linear-gradient(135deg, #FEF3C7, #FECACA);
  padding: 24px 28px;
  border-radius: 16px;
  border: 1px solid #FDE68A;
}
.tuition-note h4 {
  font-family: 'Prompt', sans-serif;
  color: #92400E;
  margin-bottom: 12px;
  font-size: 17px;
}
.tuition-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tuition-note li {
  padding: 6px 0;
  padding-left: 24px;
  font-size: 14px;
  color: #78350F;
  line-height: 1.6;
  position: relative;
}
.tuition-note li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16A34A;
  font-weight: bold;
}

/* NEWS */
.news-section {
  background: linear-gradient(180deg, #F9FAFB, white);
}
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.12);
}
.news-card.featured-news {
  grid-row: span 2;
  flex-direction: column;
}
.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card.featured-news .news-image {
  height: 320px;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.news-card:hover .news-image img {
  transform: scale(1.05);
}
.news-emoji {
  font-size: 80px;
}
.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: #1E3A5F;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.news-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card.featured-news .news-content {
  padding: 28px;
}
.news-date {
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 8px;
  display: block;
}
.news-content h3 {
  font-family: 'Prompt', sans-serif;
  color: #1E3A5F;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.news-card.featured-news .news-content h3 {
  font-size: 22px;
}
.news-content p {
  font-size: 13px;
  color: #4B5563;
  line-height: 1.6;
  margin: 0 0 12px;
  flex: 1;
}
.news-link {
  color: #5BB8E0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.news-link:hover { color: #3A8FB7; }

/* TESTIMONIALS */
.testimonials {
  background: white;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: linear-gradient(135deg, #F0F9FF, #FFFFFF);
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid #E5E7EB;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: #5BB8E0;
  opacity: 0.3;
  line-height: 1;
}
.testimonial-stars {
  color: #F59E0B;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 18px;
}
.testimonial-author strong {
  display: block;
  color: #1E3A5F;
  font-size: 14px;
}
.testimonial-author span {
  font-size: 12px;
  color: #6B7280;
}

/* ADMISSION DOCS */
.admission-docs {
  margin-top: 32px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px dashed #5BB8E0;
}
.admission-docs h4 {
  font-family: 'Prompt', sans-serif;
  color: #1E3A5F;
  margin-bottom: 12px;
  font-size: 16px;
}
.admission-docs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.admission-docs li {
  padding: 5px 0 5px 24px;
  font-size: 14px;
  color: #4B5563;
  position: relative;
}
.admission-docs li::before {
  content: '📄';
  position: absolute;
  left: 0;
}

/* FAQ */
.faq-section {
  background: linear-gradient(180deg, #F9FAFB, white);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  margin-bottom: 12px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  border-color: #5BB8E0;
  box-shadow: 0 8px 24px rgba(91, 184, 224, 0.1);
}
.faq-item summary {
  padding: 20px 24px;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  color: #1E3A5F;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: #5BB8E0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: #5BB8E0; }
.faq-item p {
  padding: 0 24px 20px;
  color: #4B5563;
  line-height: 1.7;
  margin: 0;
}

/* CONTACT */
.contact-section {
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #F0F9FF, #F0FDF4);
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  align-items: start;
}
.contact-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card strong {
  display: block;
  color: #1E3A5F;
  font-family: 'Prompt', sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}
.contact-social {
  padding: 20px 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
}
.contact-social strong {
  display: block;
  color: #1E3A5F;
  margin-bottom: 12px;
  font-family: 'Prompt', sans-serif;
}
.contact-social .social-icons {
  display: flex;
  gap: 10px;
}
.contact-social .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: white;
  transition: all 0.2s;
}
.social-fb { background: #1877F2; }
.social-ig { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.social-line { background: #06C755; }
.social-yt { background: #FF0000; }
.social-tt { background: #000; }
.contact-social .social-icons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* CONTACT FORM */
.contact-form-card {
  background: linear-gradient(135deg, #F0F9FF, #FFFFFF);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #E5E7EB;
  max-width: 800px;
  margin: 0 auto;
}
.contact-form-card h3 {
  font-family: 'Prompt', sans-serif;
  color: #1E3A5F;
  font-size: 22px;
  margin-bottom: 4px;
}
.contact-form-card > p {
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 24px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1E3A5F, #2D4F7A);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,179,66,0.2), transparent);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91,184,224,0.2), transparent);
  border-radius: 50%;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: 'Prompt', sans-serif;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-content p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.cta-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
}
.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* FOOTER ENHANCEMENTS */
.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
}
.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin: 0 4px;
}
.footer-bottom-links a:hover { color: white; }

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5BB8E0, #7CB342);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(91, 184, 224, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(91, 184, 224, 0.6);
}

/* HIDE-MOBILE UTILITY */
.hide-mobile {}

/* ===========================================
   RESPONSIVE — Additions
   =========================================== */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-card.featured-news {
    grid-row: span 1;
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: span 4;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 8px;
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; left: 0 !important; padding-left: 60px; padding-right: 0; text-align: left !important; }
  .timeline-item.left::before, .timeline-item.right::before { left: 11px; right: auto; }
  
  .tuition-grid { grid-template-columns: 1fr; }
  .tuition-card.featured { transform: scale(1); }
  .tuition-card.featured:hover { transform: translateY(-8px); }
  
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map iframe { min-height: 350px; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: span 2; }
  .footer-grid > div:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 768px) {
  /* Hide top bar items on mobile */
  .hide-mobile { display: none !important; }
  .top-bar { font-size: 12px; padding: 6px 0; }
  .top-bar-left { gap: 12px; }
  
  /* Mobile dropdown */
  .has-dropdown:hover .dropdown { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s; }
  .has-dropdown.expanded .dropdown { max-height: 400px; }
  
  /* Vision/mission stack */
  .vision-mission { gap: 12px; }
  .vm-card { grid-template-columns: auto 1fr; padding: 16px 18px; }
  
  /* News fully stacked */
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured-news { grid-column: span 1; }
  
  /* Staff stats */
  .staff-stats { grid-template-columns: repeat(2, 1fr); }
  
  /* Contact stack */
  .contact-grid { gap: 24px; }
  .contact-form-card { padding: 28px 20px; }
  
  /* CTA */
  .cta-content h2 { font-size: 28px; }
  .cta-content p { font-size: 16px; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:last-child,
  .footer-grid > div:nth-child(1) { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  /* Scroll-top */
  .scroll-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 18px; }
  
  /* Trust bar */
  .trust-content { gap: 16px; }
  .trust-logos { gap: 16px; }
  .trust-logo { font-size: 13px; }
  
  /* Tuition note */
  .tuition-note { padding: 18px 20px; }
}

@media (max-width: 480px) {
  .staff-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .staff-stat-num { font-size: 28px; }
  
  .timeline-content { padding: 18px; }
  .timeline-year { font-size: 20px; }
  .timeline-content h4 { font-size: 16px; }
  
  .testimonial-card { padding: 24px 20px; }
  .testimonial-text { font-size: 14px; }
  
  .about-image-badge {
    bottom: -15px;
    left: 0;
    padding: 14px 20px;
  }
  .about-image-badge strong { font-size: 28px; }
  
  .cta-content h2 { font-size: 24px; }
  .top-bar-left { font-size: 11px; }
  .top-bar-right { font-size: 11px; gap: 10px; }
}

/* PRINT */
@media print {
  .top-bar, .navbar, .scroll-top { display: none; }
}

/* ===========================================
   🌐 Language Switcher
   =========================================== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.1);
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 12px;
}
.lang-switch a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 100px;
  transition: all 0.2s;
  font-weight: 600;
}
.lang-switch a:hover { color: white; }
.lang-switch a.active {
  background: #7CB342;
  color: white;
}

/* When Thai language is active, prefer Sarabun */
html[lang="th"] body {
  font-family: 'Sarabun', sans-serif;
}
html[lang="th"] .hero-title,
html[lang="th"] .section-title,
html[lang="th"] h1,
html[lang="th"] h2,
html[lang="th"] h3,
html[lang="th"] h4,
html[lang="th"] .form-title {
  font-family: 'Prompt', sans-serif;
}

/* English uses Poppins for headings */
html[lang="en"] .hero-title,
html[lang="en"] .section-title,
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4 {
  font-family: 'Poppins', sans-serif;
}

/* ===========================================
   🔧 FIXES — UI Layout
   =========================================== */

/* Fix 1: Navbar should sit BELOW top-bar, not on top of it */
.navbar {
  position: sticky !important;
  top: 0;
}

/* Move top bar OUT of fixed positioning so navbar stacks naturally */
.top-bar {
  position: relative;
  z-index: 1001;
}

/* Body no longer needs offset since navbar is sticky */
body {
  padding-top: 0 !important;
}

/* Hero needs more top spacing on desktop since navbar is sticky now */
.hero {
  padding-top: 60px;
}

/* Fix 2: Float cards no longer clipped by hero image */
.hero-image {
  overflow: visible !important;
  border-radius: 0;
  box-shadow: none;
  transform: none !important;
}

.hero-image:hover {
  transform: none !important;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.18);
}

/* Float cards positioning — now properly outside the image */
.float-card-1 {
  top: 30px;
  left: -20px;
  z-index: 3;
}

.float-card-2 {
  bottom: 40px;
  right: -10px;
  z-index: 3;
}

/* On smaller screens, position cards inside image area gracefully */
@media (max-width: 1024px) {
  .float-card-1 {
    top: 20px;
    left: 10px;
  }
  .float-card-2 {
    bottom: 20px;
    right: 10px;
  }
}

/* Hide float cards on mobile (they take too much space) */
@media (max-width: 768px) {
  .float-card-1, .float-card-2 {
    display: none !important;
  }
  
  .hero {
    padding-top: 40px;
  }
}

/* Fix scroll-to-anchor offset (so links don't hide behind navbar) */
section[id] {
  scroll-margin-top: 80px;
}

/* ===========================================
   🔧 FIXES round 2
   =========================================== */

/* Fix 3: Move "15+ Years of Development" badge OUT of image */
.about-image-badge {
  bottom: 20px !important;
  left: auto !important;
  right: -20px !important;
  z-index: 2;
}

@media (max-width: 1024px) {
  .about-image-badge {
    right: 0 !important;
    bottom: -10px !important;
  }
}

@media (max-width: 768px) {
  .about-image-badge {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    margin: -30px auto 0 auto !important;
    display: inline-block;
  }
  .about-image {
    text-align: center;
  }
}

/* Fix 4: Hide tuition pricing on public site
   (Pricing only visible after admission completion) */

/* Hide the entire tuition section from front-end */
.tuition-section {
  display: none !important;
}

/* Hide tuition link in nav */
a[href="#tuition"] {
  display: none !important;
}

/* Hide tuition link in dropdown menus and footer */
li:has(> a[href="#tuition"]) {
  display: none !important;
}

/* Hide payment summary in admission form (pricing details) */
.payment-summary {
  display: none !important;
}

/* Replace with neutral text in admission step 3 */
.form-step#step3 .form-subtitle::after {
  content: '';
}
