/* ===================================================
   TRINEEB EDUCATION – Premium Landing Page Styles
   =================================================== */

/* --- CSS Variables --- */
:root {
  --gold: #b8a47a;
  --gold-light: #d4c4a0;
  --gold-dark: #8a7a58;
  --ink: #1a1a1a;
  --ink-mid: #555;
  --ink-light: #999;
  --fill: #f5f4f1;
  --fill2: #eceae4;
  --fill3: #e1ddd6;
  --white: #ffffff;
  --card: #fafaf8;
  --success: #2e7d32;
  --accent: #1f3a5f;
  --hero-dark: #0f1c2e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 24px rgba(184,164,122,0.25);
  --transition: 0.3s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  width: 100%;
  border: 1.5px solid var(--fill3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 600; }
em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em;
  transition: all var(--transition); cursor: pointer;
}
.btn-gold {
  background: var(--gold); color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* --- Section Headers --- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
  padding: 0.3rem 1rem; border: 1px solid var(--gold-light);
  border-radius: 50px; background: rgba(184,164,122,0.07);
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; font-weight: 700; }
.section-sub { color: var(--ink-mid); font-size: 1.05rem; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 20, 35, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,164,122,0.15);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 20, 35, 0.97);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-size: 1.3rem; font-weight: 700; color: var(--white);
  font-family: var(--font-serif); letter-spacing: 0.02em;
}
.logo-text em { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(184,164,122,0.1); }
.nav-cta {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 0.55rem 1.2rem !important; border-radius: 6px !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 0.5rem; border-radius: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0a1420 0%, #1a2f4a 40%, #0f1c2e 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,164,122,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(31,58,95,0.5) 0%, transparent 50%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,164,122,0.08), rgba(184,164,122,0.03));
  border: 1px solid rgba(184,164,122,0.1);
}
.shape-1 { width: 600px; height: 600px; top: -150px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -50px; left: 5%; animation: float 8s ease-in-out infinite; }
.shape-3 { width: 150px; height: 150px; top: 20%; right: 35%; animation: float 6s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(184,164,122,0.4);
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
  background: rgba(184,164,122,0.08);
}
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--white);
  font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem;
}
.hero-headline em { font-size: inherit; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 1.75rem; max-width: 520px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}
.hero-badges span {
  font-size: 0.8rem; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3rem 0.8rem; border-radius: 50px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.6rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat span { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* Hero Form */
.hero-form-wrap { position: relative; }
.consultation-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(184,164,122,0.2);
}
.form-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--fill2); }
.form-header h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 0.3rem; }
.form-header p { font-size: 0.85rem; color: var(--ink-light); }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--ink-mid); margin-bottom: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea { resize: vertical; min-height: 80px; }

/* ===================================================
   WHY US
   =================================================== */
.why-us { background: var(--fill); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--fill2);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.65; }

/* ===================================================
   SERVICES
   =================================================== */
.services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--card); border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--fill2);
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: var(--gold); background: var(--white);
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.65; margin-bottom: 1rem; }
.card-link { font-size: 0.82rem; font-weight: 600; color: var(--gold); letter-spacing: 0.03em; }
.card-link:hover { color: var(--gold-dark); }

/* ===================================================
   DESTINATIONS
   =================================================== */
.destinations { background: var(--fill); }
.dest-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.dest-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--fill2);
  display: flex; align-items: center; gap: 1.25rem;
  transition: all var(--transition); cursor: pointer;
}
.dest-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.dest-flag { font-size: 2.5rem; flex-shrink: 0; }
.dest-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; }
.dest-info p { font-size: 0.8rem; color: var(--ink-light); margin-bottom: 0.5rem; }
.dest-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  color: var(--gold-dark); background: rgba(184,164,122,0.1);
  border: 1px solid var(--gold-light); padding: 0.15rem 0.6rem;
  border-radius: 50px; letter-spacing: 0.03em;
}

/* ===================================================
   COURSES
   =================================================== */
.courses { background: var(--white); }
.courses-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.course-card {
  background: var(--card); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; text-align: center;
  border: 1px solid var(--fill2);
  transition: all var(--transition);
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.course-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
.course-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.course-card p { font-size: 0.82rem; color: var(--ink-mid); }

/* ===================================================
   PROCESS TIMELINE
   =================================================== */
.process { background: var(--fill); }
.timeline { max-width: 860px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 40px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), var(--gold-light), transparent);
}
.timeline-item {
  display: flex; gap: 2rem; margin-bottom: 2.5rem;
  position: relative;
}
.tl-marker {
  flex-shrink: 0; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.tl-marker span {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(184,164,122,0.4);
  flex-shrink: 0;
}
.tl-content {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem 1.75rem; flex: 1;
  border: 1px solid var(--fill2);
  transition: all var(--transition);
}
.tl-content:hover { box-shadow: var(--shadow); border-color: var(--gold-light); }
.tl-content h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.tl-content p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.65; }

/* ===================================================
   SCHOLARSHIPS
   =================================================== */
.scholarships {
  background: linear-gradient(135deg, #0f1c2e 0%, #1a2f4a 60%, #0a1420 100%);
  position: relative; overflow: hidden;
}
.scholarships::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,164,122,0.1) 0%, transparent 60%);
}
.scholarship-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.scholarship-text .section-tag { color: var(--gold-light); border-color: rgba(212,196,160,0.3); background: rgba(184,164,122,0.1); }
.scholarship-text .section-title { color: var(--white); }
.scholarship-lead { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 1rem; font-style: italic; font-family: var(--font-serif); }
.scholarship-text p { color: rgba(255,255,255,0.65); line-height: 1.75; }
.scholarship-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.schol-card {
  background: rgba(255,255,255,0.06); border-radius: var(--radius);
  padding: 1.5rem 1.25rem; border: 1px solid rgba(184,164,122,0.2);
  transition: all var(--transition);
}
.schol-card:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); transform: translateY(-4px); }
.schol-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.schol-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.5rem; }
.schol-card p { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===================================================
   SUCCESS STORIES
   =================================================== */
.stories { background: var(--fill); }
.stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.story-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--fill2);
  position: relative; transition: all var(--transition);
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.quote-mark {
  font-size: 4rem; line-height: 1; color: var(--gold); opacity: 0.25;
  font-family: var(--font-serif); position: absolute; top: 1rem; right: 1.5rem;
}
.story-text { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.story-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 0.9rem; color: var(--ink); }
.author-info span { font-size: 0.78rem; color: var(--ink-light); }
.author-info .uni { font-size: 0.75rem; color: var(--gold); font-weight: 600; margin-top: 0.1rem; }

/* ===================================================
   UNIVERSITY PARTNERS
   =================================================== */
.partners { background: var(--white); }
.partners-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 1rem;
}
.partner-logo {
  background: var(--card); border: 1px solid var(--fill2);
  border-radius: 10px; padding: 1.2rem 0.75rem; text-align: center;
  font-size: 0.75rem; font-weight: 700; color: var(--ink-mid);
  letter-spacing: 0.03em; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; min-height: 64px;
}
.partner-logo:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(184,164,122,0.06); transform: translateY(-3px); }

/* ===================================================
   FAQ
   =================================================== */
.faq { background: var(--fill); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  margin-bottom: 1rem; border: 1px solid var(--fill2);
  overflow: hidden; transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--gold-light); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; font-size: 0.95rem; font-weight: 600;
  color: var(--ink); text-align: left; gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  font-size: 1.3rem; font-weight: 400; color: var(--gold);
  flex-shrink: 0; transition: transform var(--transition);
  width: 24px; text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--ink-mid); line-height: 1.75;
}

/* ===================================================
   ABOUT
   =================================================== */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 400px 1fr; gap: 5rem; align-items: center; }
.about-visual {
  position: relative; height: 420px;
  background: linear-gradient(135deg, var(--accent) 0%, #0f1c2e 100%);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(184,164,122,0.2) 0%, transparent 60%);
}
.about-badge-box { position: relative; z-index: 1; text-align: center; }
.about-big-num { font-size: 5rem; font-weight: 700; color: var(--gold); line-height: 1; font-family: var(--font-serif); }
.about-big-label { font-size: 1rem; color: rgba(255,255,255,0.7); margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.about-dots {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 80px; height: 80px;
  background-image: radial-gradient(rgba(184,164,122,0.3) 1px, transparent 1px);
  background-size: 12px 12px;
}
.about-text .section-title { text-align: left; }
.about-lead { font-size: 1.1rem; color: var(--ink-mid); font-style: italic; font-family: var(--font-serif); line-height: 1.75; margin-bottom: 1rem; }
.about-text p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.75; margin-bottom: 0.75rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1.5rem; }
.value-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--ink);
}
.value-item span { color: var(--gold); font-size: 1rem; }

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  background: linear-gradient(135deg, #0f1c2e 0%, #1a2f4a 100%);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(184,164,122,0.07) 0%, transparent 50%);
}
.contact-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-text .section-tag { color: var(--gold-light); border-color: rgba(212,196,160,0.3); background: rgba(184,164,122,0.1); }
.contact-text .section-title { color: var(--white); text-align: left; margin-bottom: 1rem; }
.contact-text > p { color: rgba(255,255,255,0.65); margin-bottom: 1.75rem; }
.contact-perks { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.perk { font-size: 0.9rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 0.5rem; }
.contact-reach { display: flex; flex-direction: column; gap: 0.75rem; }
.reach-item {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--gold-light); font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition);
}
.reach-item:hover { color: var(--gold); }
.reach-icon { font-size: 1.1rem; }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.contact-form h3 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--ink); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--gold-dark); padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(212,196,160,0.2);
}
.footer-logo { font-size: 1.4rem; font-weight: 700; font-family: var(--font-serif); color: var(--gold-light); margin-bottom: 1rem; }
.footer-logo em { color: var(--white); }
.footer-brand p { font-size: 0.875rem; color: rgba(212,196,160,0.7); line-height: 1.75; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(212,196,160,0.1); border: 1px solid rgba(212,196,160,0.2);
  color: var(--gold-light); display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.whatsapp-btn { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); color: #25d366; }
.whatsapp-btn:hover { background: #25d366; color: var(--white); border-color: #25d366; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-light); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(212,196,160,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: rgba(212,196,160,0.65); }
.contact-list li a { color: rgba(212,196,160,0.65); transition: color var(--transition); }
.contact-list li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem 0; font-size: 0.8rem; color: rgba(212,196,160,0.5);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(212,196,160,0.5); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }

/* ===================================================
   FLOATING ELEMENTS
   =================================================== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}
.back-top {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold); color: var(--white);
  font-size: 1.1rem; font-weight: 700;
  box-shadow: var(--shadow-gold);
  opacity: 0; pointer-events: none; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===================================================
   RESPONSIVE – TABLET (1024px)
   =================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .scholarship-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================================
   RESPONSIVE – MOBILE (768px)
   =================================================== */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .navbar { padding: 0.9rem 0; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 280px; flex-direction: column; align-items: flex-start;
    background: #0a1420; padding: 5rem 2rem 2rem;
    gap: 0.25rem; transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 0.75rem 1rem; border-radius: 8px; font-size: 1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 6rem 0 3rem; }
  .hero-headline { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero-stats { gap: 1rem; }
  .stat strong { font-size: 1.3rem; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .scholarship-cards { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline::before { left: 22px; }
  .tl-marker { width: 44px; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===================================================
   RESPONSIVE – SMALL MOBILE (480px)
   =================================================== */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { justify-content: space-around; }
  .stat-divider { display: none; }
}
