/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.5rem; font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 600; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; box-shadow: 0 6px 24px rgba(232,67,26,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); color: #fff; }
.btn-lg { padding: 0.95rem 2rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }
.btn-gold { background: var(--saffron); color: white; }
.btn-gold:hover { background: var(--saffron-dark); color: white; }

/* ═══════════════════════════════════════
   SECTION 1 — HERO + ENQUIRY
═══════════════════════════════════════ */
#enquiry {
  background: linear-gradient(135deg, #f8f4ef 0%, #fdfbf7 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
#enquiry::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(232,67,26,0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 30%, rgba(245,166,35,0.1), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(280px, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
  }
}
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-copy {
    order: 2;
    display: flex;
    flex-direction: column;
  }
  .hero-copy > .hero-pointers, .hero-copy > .hero-badges {
    order: -1; /* Puts them at the start */
  }
  .enquiry-card {
    order: 1;
  }
}
.hero-copy { color: var(--navy); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; background: linear-gradient(135deg, rgba(116, 248, 99, 0.15), rgba(20, 255, 118, 0.273));
  border: 2px solid #10e809; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #1ea317; margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 0 rgba(118, 248, 103, 0.496);
  position: relative;
  animation: shine 2s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% {
    box-shadow: 0 0 10px rgba(134, 247, 85, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(85, 247, 109, 0.6), 0 0 30px rgba(93, 247, 85, 0.4);
  }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; background: linear-gradient(135deg, rgba(116, 248, 99, 0.15), rgba(20, 255, 118, 0.273));
  border: 2px solid #10e809; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #1ea317; margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 0 rgba(118, 248, 103, 0.496);
  position: relative;
  animation: shine 2s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% {
    box-shadow: 0 0 10px rgba(134, 247, 85, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(85, 247, 109, 0.6), 0 0 30px rgba(93, 247, 85, 0.4);
  }
}
.hero-eyebrow:hover {
  background: linear-gradient(135deg, rgba(99, 247, 85, 0.2), rgba(109, 247, 85, 0.12));
  border-color: #3cea33;
  color: #c96f0f;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 4px 20px rgba(85, 247, 104, 0.4);
  animation-play-state: paused;
}
.hero-eyebrow::before { content: '◉'; font-size: 0.65rem; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5.5vw, 3.35rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 1.25rem; color: var(--navy);
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 1.075rem; line-height: 1.8; color: var(--muted);
  max-width: 46ch; margin-bottom: 2rem;
}
.hero-pointers {
  list-style: none; display: flex; flex-direction: column;
  gap: 0; margin-bottom: 2.5rem;
}
.hero-pointers li {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 0.85rem 1rem;
  padding: 0.95rem 0 0.95rem 1.95rem;
  border-bottom: 1px solid rgba(211, 86, 2, 0.1);
  font-size: 0.9625rem;
  color: var(--muted);
  position: relative;
}
.hero-pointers li::before {
  content: "\2192";
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: 0.85rem;
  top: 0.92rem;
}
.hero-pointers strong {
  color: var(--navy);
  line-height: 1.35;
}
.hero-pointers span {
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
}
@media (max-width: 768px) {
  .hero-pointers li {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.85rem 0 0.9rem 1.9rem;
  }
}
.hero-pointers strong { color: var(--navy); }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; margin-top: 1.5rem;
}
.badge {
  display: inline-block; padding: 0.5rem 1rem;
  background: rgba(232,67,26,0.12);
  border: 1px solid rgba(232,67,26,0.25);
  border-radius: 999px; font-size: 0.8125rem; color: var(--navy);
  font-weight: 600; white-space: nowrap;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.enquiry-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 24px 72px rgba(0,0,0,0.3);
  min-width: 0;
}
.enquiry-card-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.35rem;
}
.enquiry-card-sub {
  font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem;
}
.enquiry-form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-size: 0.8125rem; font-weight: 600; color: var(--navy);
}
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.9375rem; padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,67,26,0.15);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-success {
  padding: 0.85rem 1rem; background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 10px; font-size: 0.9rem; color: #166534; text-align: center;
}
@media (max-width: 1020px) {
  .hero {
    padding: 0;
    min-height: auto;
    background: transparent;
    display: block;
  }
  .hero::before {
    display: none;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .hero-grid > div:first-child {
    display: block;
    order: 1;
  }
  .hero-grid > div:nth-child(2) {
    order: 2;
  }
  .hero-image-wrap {
    display: block !important;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 72px 0 0 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  .hero-image {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .hero-form-section {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px 4%;
    z-index: 10;
    background: white;
    order: 2;
  }
  .enquiry-card {
    width: 100%;
    margin: 0 auto;
  }
}
.hero-form-section {
  position: absolute;
  right: 5%;
  top: 100px;
  z-index: 50;
  width: 360px;
}
@media (max-width: 900px) {
  .hero-form-section {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 380px;
    margin: 30px auto 0;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .hero-form-section {
    position: static;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px 3%;
    background: white;
  }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,100,12,0.15); border: 1px solid rgba(232,100,12,0.3);
  color: #FFA05C; padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
}
.hero-tag::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--saffron); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmerBg {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(232,100,12,0.3); }
  50% { box-shadow: 0 0 40px rgba(232,100,12,0.6); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.06;
  color: white; margin-bottom: 10px;
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(36px, 4.5vw, 56px);
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
    margin-bottom: 6px;
    line-height: 1.1;
  }
}
.hero h1 .accent { color: var(--saffron); font-style: italic; }
.hero-sub {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.6);
  line-height: 1.65; margin: 20px 0 36px;
  max-width: 520px;
  animation: slideInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}
@media (max-width: 900px) {
  .hero-sub {
    font-size: 15px;
    margin: 16px 0 28px;
  }
}
@media (max-width: 600px) {
  .hero-sub {
    font-size: 14px;
    margin: 12px 0 24px;
    line-height: 1.6;
  }
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px;
}
@media (max-width: 900px) {
  .hero-badges {
    gap: 10px;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .hero-badges {
    gap: 8px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .hero-btns .btn-outline {
    color: var(--navy) !important;
    border-color: rgba(11,29,58,0.18) !important;
    background: rgba(255,255,255,0.85);
  }
}
.hero-btns .btn-outline {
  color: var(--navy) !important;
  border-color: rgba(11,29,58,0.18) !important;
  background: rgba(255,255,255,0.82);
}
.hero-btns .btn-outline:hover {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background: #fff;
}
.badge-icon {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: slideInDown 0.6s ease forwards;
  opacity: 0;
}
.badge:nth-child(1) .badge-icon { animation-delay: 0.1s; }
.badge:nth-child(2) .badge-icon { animation-delay: 0.2s; }
.badge:nth-child(3) .badge-icon { animation-delay: 0.3s; }
.badge:nth-child(4) .badge-icon { animation-delay: 0.4s; }
.hero-stats {
  display: flex; gap: 40px;
}
@media (max-width: 900px) {
  .hero-stats {
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}
.stat-item {
  text-align: left;
  animation: fadeInScale 0.6s ease forwards;
  opacity: 0;
}
@media (max-width: 600px) {
  .stat-item {
    text-align: left;
  }
}
.hero-stats .stat-item:nth-child(1) { animation-delay: 0.5s; }
.hero-stats .stat-item:nth-child(2) { animation-delay: 0.6s; }
.hero-stats .stat-item:nth-child(3) { animation-delay: 0.7s; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: white;
  line-height: 1;
}
.stat-num span { color: var(--saffron); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; margin-top: 4px; text-transform: uppercase; }

/* ── ENQUIRY FORM ── */
.enquiry-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
  animation: slideInUp 0.6s ease 0.4s forwards;
  opacity: 0;
  width: 100%;
  transition: all 0.3s ease;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .enquiry-card {
    padding: 20px 16px;
    border-radius: 0;
    margin: 0;
    width: 100%;
    animation: none;
    opacity: 1;
    box-shadow: none;
    border-radius: 0;
  }
}
.enquiry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(11,29,58,0.2), 0 0 0 1px rgba(232,100,12,0.1);
}
.enquiry-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}
.form-header { margin-bottom: 16px; }
.form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 2px;
}
.form-header p { font-size: 12px; color: var(--text-soft); }
@media (max-width: 600px) {
  .form-header {
    margin-bottom: 12px;
  }
  .form-header h3 {
    font-size: 16px;
    margin-bottom: 1px;
  }
  .form-header p {
    font-size: 11px;
  }
}
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--text-mid); margin-bottom: 4px; letter-spacing: 0.04em; text-transform: uppercase;
}
@media (max-width: 600px) {
  .form-group {
    margin-bottom: 10px;
  }
  .form-group label {
    font-size: 10px;
    margin-bottom: 3px;
  }
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 8px 10px;
  border: 1.5px solid #E2E8F0; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-dark);
  background: #FAFBFC; outline: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 600px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 7px 9px;
    font-size: 12px;
    border-radius: 5px;
  }
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,100,12,0.15), inset 0 0 0 1px rgba(232,100,12,0.1);
  background: white;
  transform: scale(1.02);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.btn-submit {
  width: 100%; padding: 10px;
  background: linear-gradient(135deg, var(--saffron), #C85200);
  color: white; border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(232,100,12,0.35);
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(232,100,12,0.5);
}
.btn-submit:hover::before {
  left: 100%;
}
.btn-submit:active {
  transform: scale(0.98);
}
.btn-submit[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 20px rgba(232,100,12,0.25);
}
.submit-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 600;
}
.submit-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(11,29,58,0.2);
  border-top-color: var(--saffron);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.form-footer {
  text-align: center; margin-top: 10px;
  font-size: 11px; color: var(--text-soft);
  display: flex; align-items: center; justify-content: center; gap: 4px;
  animation: fadeInScale 0.6s ease 0.6s forwards;
  opacity: 0;
}
@media (max-width: 600px) {
  .form-footer {
    font-size: 10px;
    margin-top: 8px;
    gap: 3px;
  }
}

/* ── HERO SCROLL INDICATORS ── */
.hero-scroll-indicators {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px; z-index: 10;
  animation: slideInUp 0.6s ease 0.8s forwards;
  opacity: 0;
}
@media (max-width: 600px) {
  .hero-scroll-indicators {
    display: none;
  }
}
.scroll-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: pulse 2s ease-in-out infinite;
}
.scroll-dot:nth-child(1) { animation-delay: 0s; }
.scroll-dot:nth-child(2) { animation-delay: 0.2s; }
.scroll-dot:nth-child(3) { animation-delay: 0.4s; }
.scroll-dot:hover {
  background: var(--saffron);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(232,100,12,0.6);
}
.scroll-dot.active {
  background: var(--saffron);
  box-shadow: 0 0 16px rgba(232,100,12,0.8);
  animation: dotBounce 1s ease-in-out infinite;
}
@keyframes dotBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.scroll-dot.active {
  animation: dotBounce 1s ease-in-out infinite;
}
section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--saffron);
}
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px); font-weight: 700;
  color: var(--navy); line-height: 1.15; margin-bottom: 16px;
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
}
h2.section-title em {
  color: var(--saffron);
  font-style: italic;
  position: relative;
}
h2.section-title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), transparent);
  animation: slideInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}
.section-desc {
  font-size: 16px; color: var(--text-soft); line-height: 1.7;
  max-width: 560px;
  animation: slideInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

/* ── WHY KVGIT ── */
.why-section { background: white; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 56px;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }
}
.why-image-wrap {
  position: relative;
  animation: slideInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}
.why-image-wrap img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease;
}
@media (max-width: 900px) {
  .why-image-wrap img {
    height: 380px;
  }
}
@media (max-width: 600px) {
  .why-image-wrap img {
    height: 280px;
  }
}
.why-image-wrap:hover img {
  transform: scale(1.02);
}
.why-image-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: white;
  padding: 20px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: slideInUp 0.6s ease 0.5s forwards;
  opacity: 0;
}
@media (max-width: 900px) {
  .why-image-badge {
    bottom: -15px;
    right: -15px;
    padding: 16px 20px;
  }
}
@media (max-width: 600px) {
  .why-image-badge {
    bottom: -10px;
    right: -10px;
    padding: 12px 16px;
  }
}
.why-image-badge .big { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--saffron); }
.why-image-badge .sm { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.why-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  min-height: 132px;
}
.why-card .kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft);
}
@media (max-width: 900px) {
  .why-highlights {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .why-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }
}
@media (max-width: 900px) {
  .why-image-badge .big {
    font-size: 28px;
  }
  .why-image-badge .sm {
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  .why-image-badge .big {
    font-size: 24px;
  }
  .why-image-badge .sm {
    font-size: 10px;
    margin-top: 1px;
  }
}
.features-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .features-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }
}
@media (max-width: 600px) {
  .features-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
}
.features-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 17px; color: var(--text-mid); line-height: 1.6;
}
.check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--saffron-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check svg { width: 12px; height: 12px; fill: var(--saffron); }

/* ── PLACEMENTS ── */
.placements-section { background: var(--navy); }
.placements-section .section-title { color: white; }
.placements-section .section-label { color: var(--gold); }
.placements-section .section-label::before { background: var(--gold); }
.placement-stats {
  display: grid; grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 24px;
  margin: 48px 0 56px;
  align-items: center;
}
.placement-card {
  background: #ffffff14;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.placement-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,100,12,0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}
.placement-card img {
  max-height: 140px;
  max-width: 100%;
  object-fit: contain;
}
.placement-card p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}
.placement-badge {
  flex-direction: column;
  gap: 16px;
  background: rgba(255,255,255,0.06);
}
.placement-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #08203b;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(232,100,12,0.22);
}
.p-stat-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 32px 28px; text-align: center;
  position: relative; overflow: hidden;
}
.p-stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}
.p-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700; color: white; line-height: 1;
}
.p-stat-num span { color: var(--saffron); }
.p-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; letter-spacing: 0.04em; }
.recruiter-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  text-align: center; margin-bottom: 24px;
}
.recruiter-marquee {
  overflow: hidden; position: relative;
  mask: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.recruiter-track {
  display: flex; gap: 32px; align-items: center;
  animation: marquee 22s linear infinite; white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.recruiter-pill {
  flex-shrink: 0;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* ── JOBS ── */
.jobs-section { background: var(--cream); }
.jobs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
}
.job-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 0;
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
}
.job-card:nth-child(1) { animation-delay: 0.1s; }
.job-card:nth-child(2) { animation-delay: 0.2s; }
.job-card:nth-child(3) { animation-delay: 0.3s; }
.job-card:nth-child(4) { animation-delay: 0.4s; }
.job-card:nth-child(5) { animation-delay: 0.5s; }
.job-card:nth-child(6) { animation-delay: 0.6s; }
.job-card:nth-child(7) { animation-delay: 0.7s; }
.job-card:nth-child(8) { animation-delay: 0.8s; }
.job-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.job-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,100,12,0.05) 0%, rgba(212,160,23,0.02) 100%);
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(11,29,58,0.15);
  border-color: rgba(232,100,12,0.2);
}
.job-card:hover::before { transform: scaleX(1); }
.job-card:hover::after { opacity: 1; }
.job-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--saffron-light), #FFE4D4);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.icon-number {
  color: var(--navy);
  font-weight: bold;
  transition: color 0.3s ease;
}
.job-card:hover .job-icon {
  background: linear-gradient(135deg, var(--saffron), #E07000);
  transform: scale(1.1) rotate(-5deg);
}
.job-card:hover .icon-number {
  color: white;
}
.job-card h4 {
  font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
  transition: color 0.3s ease;
}
.job-card:hover h4 { color: var(--saffron); }
.job-card p {
  font-size: 13px; color: var(--text-soft); line-height: 1.6;
  flex-grow: 0;
}

/* ── FEE + ELIGIBILITY ── */
.info-section { background: white; }
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 48px; align-items: start;
}
.info-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.info-card-head {
  background: var(--navy); padding: 20px 28px;
  display: flex; align-items: center; gap: 12px;
}
.info-card-head h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white;
}
.info-card-head .icon {
  font-size: 20px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(232,100,12,0.2);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInScale 0.6s ease forwards;
  opacity: 0;
}
.info-card:nth-child(1) .icon { animation-delay: 0.2s; }
.info-card:nth-child(2) .icon { animation-delay: 0.4s; }
.info-card:hover .icon {
  background: rgba(232,100,12,0.4);
  transform: scale(1.2) rotate(-8deg);
}
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table tr td {
  padding: 14px 28px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr td:first-child { color: var(--text-mid); font-weight: 500; }
.fee-table tr td:last-child { text-align: right; font-weight: 600; color: var(--navy); }
.fee-total td { background: var(--saffron-light); }
.fee-total td:last-child { color: var(--saffron-dark) !important; font-size: 16px !important; }
.eligibility-body { padding: 28px; }
.elig-item {
  display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start;
}
.elig-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: white;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.elig-text h5 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.elig-text p { font-size: 13px; color: var(--text-soft); line-height: 1.55; }
.elig-cta {
  margin: 0 28px 28px;
  background: var(--navy-light); border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.elig-cta span { font-size: 13px; color: var(--text-mid); font-weight: 500; }
.elig-cta a {
  background: var(--saffron); color: white;
  padding: 8px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.elig-cta a:hover { background: var(--saffron-dark); }

/* ── CAMPUS ── */
.campus-section { background: var(--cream); }
.campus-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 12px; margin-top: 48px;
}
.cam-img {
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  background: var(--navy);
  aspect-ratio: 1;
}
.cam-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.cam-img:hover img { transform: scale(1.06); }
.cam-img:nth-child(1) { grid-column: span 2; grid-row: span 2; border-radius: var(--radius-lg); }
.cam-img:nth-child(4) { grid-column: 1 / span 2; grid-row: 2 / span 1; }
.cam-img:nth-child(5) { grid-column: span 2; aspect-ratio: 2; }
.cam-img:nth-child(7) { grid-column: 3 / span 2; grid-row: 2 / span 1; }
.cam-img-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(11,29,58,0.8); backdrop-filter: blur(6px);
  color: white; font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 6px;
  letter-spacing: 0.04em; text-transform: uppercase;
  opacity: 0; transition: opacity 0.3s;
}
.cam-img:hover .cam-img-label { opacity: 1; }

/* ── FAQ ── */
.faq-section {
  background: linear-gradient(135deg, #F8FAFB 0%, #EFF3FA 100%);
  position: relative;
}
.faq-container {
  max-width: 700px;
  margin: 40px auto 0;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--saffron);
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: white;
  transition: background 0.3s ease;
}
.faq-item.active .faq-header {
  background: var(--saffron-light);
}
.faq-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  flex: 1;
}
.faq-toggle {
  font-size: 24px;
  color: var(--saffron);
  font-weight: 300;
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: right;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active .faq-content {
  padding: 0 24px 20px;
  max-height: 500px;
}
.faq-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 600px) {
  .faq-container {
    margin: 32px auto 0;
  }
  .faq-header {
    padding: 16px 16px;
  }
  .faq-header h3 {
    font-size: 14px;
  }
  .faq-content {
    padding: 0 16px;
  }
  .faq-item.active .faq-content {
    padding: 0 16px 16px;
  }
  .faq-content p {
    font-size: 13px;
  }
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  margin-bottom: 48px;
  animation: slideInDown 0.6s ease forwards;
  opacity: 0;
}
.tab-btn {
  background: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.tab-btn.active {
  background: var(--saffron);
  color: white;
  box-shadow: 0 8px 24px rgba(232,100,12,0.3);
}
.tab-btn.active::after {
  transform: scaleX(1);
}
.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,100,12,0.2);
}
.testimonials-carousel {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px 0;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(11,29,58,0.15);
}
.carousel-nav:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(232,100,12,0.4);
}
.carousel-nav.prev {
  left: 20px;
}
.carousel-nav.next {
  right: 20px;
}
.carousel-nav svg {
  width: 20px;
  height: 20px;
}
.carousel-container {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}
.testimonial-slide {
  position: absolute;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(100%);
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 5;
}
.testimonial-slide.prev {
  transform: translateX(-100%);
}
.testimonial-card {
  flex: 1;
  min-width: 250px;
  max-width: 520px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 4px solid var(--saffron-light);
  transition: transform 0.3s ease;
}
.testimonial-card:hover .testimonial-image {
  transform: scale(1.08);
}
.testimonial-card .testimonial-content {
  opacity: 1;
  animation: none;
}
.testimonial-content {
  width: 100%;
}
.testimonial-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.testimonial-content p {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.testimonial-content .quote {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--saffron-light);
  border-left: 3px solid var(--saffron);
  border-radius: 4px;
}
.testimonial-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.testimonial-content p {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.testimonial-content .quote {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--saffron-light);
  border-left: 3px solid var(--saffron);
  border-radius: 4px;
}
.testimonial-content .read-more {
  color: var(--saffron);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.testimonial-content .read-more:hover {
  color: var(--saffron-dark);
  text-decoration: underline;
}
.carousel-dots {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(11,29,58,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.dot.active {
  background: var(--saffron);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(232,100,12,0.4);
}
.dot:hover {
  background: var(--saffron);
  transform: scale(1.2);
}

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: linear-gradient(135deg, var(--saffron), #C85200);
  color: white;
  padding: 13px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  box-shadow: 0 8px 30px rgba(232,100,12,0.45);
  display: flex; align-items: center; gap: 8px;
  animation: floatBounce 3s ease-in-out infinite, slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}
.float-cta { animation-delay: 1s; }
.float-cta:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 50px rgba(232,100,12,0.6);
}
.float-cta:active {
  transform: scale(0.96);
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ── SUCCESS MSG ── */
.success-msg {
  display: none; text-align: center; padding: 20px;
  color: #2D7A3A; background: #EAF7ED; border-radius: 10px; font-weight: 500; font-size: 14px;
}