/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --success: #10b981;
  --danger: #ef4444;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #f97316 100%);
  --gradient-soft: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Hind Siliguri', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  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; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-left, .top-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar i { color: var(--accent); margin-right: 6px; }

/* ============ HEADER ============ */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 24px;
  box-shadow: 0 4px 12px rgba(30,64,175,0.3);
}
.logo-text h1 { font-size: 18px; font-weight: 800; color: var(--dark); line-height: 1; letter-spacing: -0.5px; }
.logo-text p { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 2px; margin-top: 2px; }

.nav-list { display: flex; gap: 8px; align-items: center; }
.nav-list a {
  padding: 8px 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: var(--transition);
  font-size: 15px;
}
.nav-list a:hover, .nav-list a.active { color: var(--primary); background: var(--gray-100); }

.menu-toggle { display: none; font-size: 24px; color: var(--dark); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  justify-content: center;
}
.btn-primary { background: var(--gradient); color: var(--white); box-shadow: 0 4px 12px rgba(30,64,175,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,64,175,0.4); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: var(--white); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-light { border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--gradient-soft);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(30,64,175,0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(249,115,22,0.08) 0%, transparent 50%);
}
.hero-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.hero-badge i { color: var(--accent); }
.hero-title { font-size: clamp(32px, 5vw, 54px); font-weight: 800; color: var(--dark); line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 17px; color: var(--gray-500); margin-bottom: 32px; max-width: 540px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat h3 { font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat p { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

.hero-image { position: relative; height: 420px; }
.hero-card {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
  color: var(--dark);
  animation: float 3s ease-in-out infinite;
}
.hero-card i { font-size: 24px; }
.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-1 i { color: #f97316; }
.card-2 { top: 30%; right: 5%; animation-delay: 0.5s; }
.card-2 i { color: #eab308; }
.card-3 { bottom: 30%; left: 5%; animation-delay: 1s; }
.card-3 i { color: #dc2626; }
.card-4 { bottom: 10%; right: 15%; animation-delay: 1.5s; }
.card-4 i { color: #16a34a; }
.card-5 { top: 55%; left: 40%; animation-delay: 2s; }
.card-5 i { color: #2563eb; }

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

/* ============ MARQUEE ============ */
.marquee {
  background: var(--primary);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-content { display: inline-block; animation: scroll 30s linear infinite; font-weight: 500; font-size: 14px; }
.marquee-content span { margin: 0 20px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  background: rgba(30,64,175,0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--dark); margin-bottom: 16px; letter-spacing: -0.5px; }
.section-desc { color: var(--gray-500); font-size: 17px; }
.center-action { text-align: center; margin-top: 50px; }

/* ============ SERVICE CARDS (Home) ============ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: 14px; margin-bottom: 16px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ============ FEATURES ============ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.feature { text-align: center; padding: 20px; }
.feature-icon {
  width: 80px; height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(30,64,175,0.3);
}
.feature h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature p { color: var(--gray-500); font-size: 14px; }

/* ============ CTA ============ */
.cta-section {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.cta-content { position: relative; }
.cta-content h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 17px; margin-bottom: 32px; opacity: 0.95; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ PAGE HEADER ============ */
.page-header {
  background: var(--gradient);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.page-header h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; margin-bottom: 12px; position: relative; }
.page-header p { font-size: 17px; opacity: 0.95; position: relative; }
.breadcrumb { margin-top: 20px; font-size: 14px; position: relative; }
.breadcrumb a { color: var(--white); opacity: 0.9; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb i { margin: 0 8px; font-size: 10px; }

/* ============ SERVICES FULL GRID ============ */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 20px;
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-100);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.services-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.service-card-full {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
}
.service-card-full:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card-full .service-icon {
  width: 56px; height: 56px;
  background: var(--gradient);
  font-size: 22px;
  margin-bottom: 16px;
}
.service-card-full h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card-full p { font-size: 13px; color: var(--gray-500); }
.service-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-box { position: relative; }
.about-visual {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}
.about-visual i { font-size: 80px; margin-bottom: 20px; opacity: 0.9; }
.about-visual h3 { font-size: 24px; font-weight: 700; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 12px;
}
.about-badge i { font-size: 32px; color: var(--accent); }
.about-badge h4 { font-size: 20px; font-weight: 800; color: var(--dark); }
.about-badge p { font-size: 12px; color: var(--gray-500); }
.about-content .section-title { text-align: left; }
.about-content p { margin-bottom: 16px; color: var(--gray-700); }
.about-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-checklist div { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--dark); }
.about-checklist i { color: var(--success); font-size: 18px; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 70px; height: 70px;
  background: var(--gradient-soft);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 20px;
}
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray-500); }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stars { color: #fbbf24; margin-bottom: 16px; }
.stars i { margin-right: 2px; }
.testimonial p { color: var(--gray-700); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.testimonial-author h4 { font-size: 15px; font-weight: 700; color: var(--dark); }
.testimonial-author p { font-size: 13px; color: var(--gray-500); font-style: normal; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info h2, .contact-form-wrap h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.contact-info > p { color: var(--gray-500); margin-bottom: 32px; }
.info-card {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: var(--transition);
}
.info-card:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); }
.info-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.info-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.info-card p { font-size: 14px; color: var(--gray-500); line-height: 1.5; }

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============ FORMS ============ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--dark); margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30,64,175,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; font-size: 13px; color: var(--gray-500); }
.form-check input { margin-top: 3px; accent-color: var(--primary); }

/* ============ APPLY PAGE ============ */
.apply-wrapper { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.apply-info {
  background: var(--gradient);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}
.apply-info h2 { font-size: 28px; font-weight: 800; margin-bottom: 30px; }
.step { display: flex; gap: 16px; margin-bottom: 24px; }
.step-num {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.step p { font-size: 13px; opacity: 0.9; }
.apply-help { margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); }
.apply-help h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.apply-help p { font-size: 14px; opacity: 0.9; margin-bottom: 16px; }
.apply-help .btn { margin-bottom: 10px; }

.apply-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.apply-form-wrap h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }

/* ============ MAP ============ */
.map-container { width: 100%; }
.map-container iframe { display: block; width: 100%; }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: var(--gray-300); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-text h1 { color: var(--white); }
.footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gradient); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--accent); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); padding-left: 5px; }
.contact-list li { display: flex; gap: 12px; font-size: 14px; align-items: flex-start; }
.contact-list i { color: var(--accent); margin-top: 4px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 0 0 15px rgba(37,211,102,0); }
}

/* ============ UTILITIES ============ */
.hide-mobile { display: inline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .hero-content, .about-grid, .contact-grid, .apply-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-info { position: static; }
}

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .menu-toggle { display: block; }
  .nav { 
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.open { max-height: 400px; }
  .nav-list { flex-direction: column; padding: 20px; gap: 4px; }
  .nav-list a { display: block; padding: 12px 16px; }
  .nav-cta { display: none; }
  .hero { padding: 50px 0 70px; }
  .hero-title { font-size: 32px; }
  .hero-stats { gap: 24px; }
  .stat h3 { font-size: 24px; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap, .apply-form-wrap, .apply-info { padding: 24px; }
  .about-badge { position: static; margin-top: 20px; display: inline-flex; }
  .about-checklist { grid-template-columns: 1fr; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-left, .top-right { justify-content: center; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
}