/* ==========================================================================
   LUCKY SOLUTIONS - STYLESHEET
   Overseas Education Consultancy & International Courier Services
   ========================================================================== */

/* --- Custom Properties / Design Tokens --- */
:root {
  /* Brand Colors - Primary Study Mode */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-glow: rgba(37, 99, 235, 0.25);
  
  /* Brand Colors - Courier Track */
  --courier: #d97706;
  --courier-hover: #b45309;
  --courier-light: #fffbeb;
  --courier-glow: rgba(217, 119, 6, 0.25);

  /* Secondary Accents */
  --accent-teal: #0d9488;
  --accent-purple: #7c3aed;
  --accent-rose: #e11d48;
  
  /* Neutrals & Surfaces */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-dark: rgba(15, 23, 42, 0.9);
  
  /* Text */
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders & Dividers */
  --border-subtle: #e2e8f0;
  --border-focus: #3b82f6;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 0 35px rgba(37, 99, 235, 0.18);
  --shadow-courier-glow: 0 0 35px rgba(245, 158, 11, 0.2);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', var(--font-sans);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1240px;
  --header-height: 80px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

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

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Layout Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-courier {
  background: var(--courier-light);
  color: var(--courier);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.badge-dual {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(217, 119, 6, 0.12));
  color: #1e3a8a;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Gradient Text */
.gradient-text-blue {
  background: linear-gradient(135deg, #1d4ed8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-orange {
  background: linear-gradient(135deg, #d97706, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.btn-courier {
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-courier:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.45);
}

.btn-outline {
  background: #ffffff;
  color: var(--text-main);
  border: 1.5px solid var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.08rem;
}

/* --- Top Notice / Credential Bar --- */
.top-notice-bar {
  background: #0f172a;
  color: #94a3b8;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 60;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.top-bar-left .gov-tag {
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(96, 165, 250, 0.3);
  letter-spacing: 0.04em;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-right a {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-bar-right a:hover {
  color: #38bdf8;
}

.top-notice-bar .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.8s infinite;
  display: inline-block;
}

/* --- Sleek Modern Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.6rem;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Streamlined Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: #334155;
  position: relative;
  padding: 0.4rem 0.2rem;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-badge {
  font-size: 0.68rem;
  background: var(--courier-light);
  color: var(--courier);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  margin-left: 0.25rem;
  border: 1px solid rgba(217, 119, 6, 0.25);
  vertical-align: middle;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.86rem;
  color: #1e293b;
  transition: all var(--transition-fast);
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.call-text-short {
  display: none;
}

.header-call-pill:hover {
  border-color: #22c55e;
  background: #f0fdf4;
  color: #15803d;
  transform: translateY(-1px);
}

.header-call-pill .call-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

/* Mobile Drawer (Desktop Hidden) */
.mobile-drawer {
  display: none;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--text-main);
  font-size: 1.5rem;
}

/* --- Hero Section with Dual-Track Switcher --- */
.hero-section {
  padding: 3.5rem 0 5rem;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 45%),
              radial-gradient(circle at bottom left, rgba(217, 119, 6, 0.08), transparent 45%),
              #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-track-switcher {
  display: flex;
  justify-content: center;
  margin-bottom: 2.75rem;
}

.switcher-card {
  display: inline-flex;
  background: #f1f5f9;
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow: var(--shadow-sm);
  gap: 0.35rem;
}

.switcher-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.switcher-tab.active[data-track="abroad"] {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.switcher-tab.active[data-track="courier"] {
  background: #ffffff;
  color: var(--courier);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.switcher-tab.active[data-track="all"] {
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.3);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-badge-tag {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.25);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4.5vw, 3.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* Hero Key Stats Bar */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h4 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.stat-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero Visual Showcase */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  aspect-ratio: 16 / 11;
  background: #e2e8f0;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-wrap:hover img {
  transform: scale(1.03);
}

/* Floating Badges on Hero Visual */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top-left {
  top: -15px;
  left: -20px;
}

.floating-badge.badge-bottom-right {
  bottom: -20px;
  right: -15px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.floating-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.floating-badge-icon.blue {
  background: var(--primary-light);
  color: var(--primary);
}

.floating-badge-icon.gold {
  background: var(--courier-light);
  color: var(--courier);
}

.floating-badge-content strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.2;
}

.floating-badge-content span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Interactive Track View Modes --- */
/* By default, study abroad view is active */
.track-panel {
  display: none;
  animation: fadeIn 0.35s ease forwards;
}

.track-panel.active {
  display: block;
}

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

/* --- Quick Interactive Tool Section (Calculator & Finder) --- */
.quick-tools-section {
  background: #f1f5f9;
  position: relative;
  padding: 4.5rem 0;
}

.tools-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.tool-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.tool-card.tool-courier::before {
  background: linear-gradient(90deg, #d97706, #f97316);
}

.tool-card.tool-study::before {
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.tool-icon.orange {
  background: var(--courier-light);
  color: var(--courier);
}

.tool-icon.blue {
  background: var(--primary-light);
  color: var(--primary);
}

.tool-header h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.tool-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Calculator Form Elements */
.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
}

.form-label span.note {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form-select, .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background-color: #ffffff;
  color: var(--text-main);
  transition: all var(--transition-fast);
  outline: none;
}

.form-select:focus, .form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-select.courier-focus:focus, .form-input.courier-focus:focus {
  border-color: var(--courier);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.range-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.range-slider {
  flex: 1;
  accent-color: var(--courier);
  cursor: pointer;
  height: 6px;
}

.range-val-badge {
  background: var(--courier-light);
  color: var(--courier);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  min-width: 65px;
  text-align: center;
}

/* Calc Result Preview Box */
.calc-result-box {
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px dashed #cbd5e1;
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.calc-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #cbd5e1;
  flex-wrap: wrap;
}

.calc-status-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.calc-status-block .calc-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-price {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: #b45309;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.calc-price small {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.calc-transit-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(6, 95, 70, 0.08);
}

.calc-perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.calc-perks-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-perks-list li svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Study Finder Steps */
.study-finder-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quiz-pill-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.quiz-pill-btn {
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  background: #f8fafc;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.quiz-pill-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.quiz-pill-btn.selected {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.finder-result-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.finder-result-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #166534;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.finder-result-details {
  font-size: 0.85rem;
  color: #1e3a8a;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

/* --- Study Abroad Destinations Section --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.destination-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.4);
}

.dest-top-banner {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.dest-flag-chip {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.dest-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.dest-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.dest-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.85rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
}

.dest-spec-item strong {
  display: block;
  color: var(--text-main);
  font-size: 0.88rem;
}

.dest-spec-item span {
  color: var(--text-muted);
}

.dest-btn-wrap {
  margin-top: auto;
}

/* --- Courier Services Breakdown Section --- */
.courier-section {
  background: #ffffff;
  position: relative;
}

.courier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.courier-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.courier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 119, 6, 0.35);
}

.courier-card.featured {
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
  border: 2px solid #f59e0b;
}

.courier-card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.courier-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--courier-light);
  color: var(--courier);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.35rem;
}

.courier-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.courier-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.courier-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #334155;
  margin-bottom: 1.75rem;
}

.courier-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.courier-features li svg {
  color: #d97706;
  flex-shrink: 0;
}

/* Courier Trust Banner */
.carrier-logos-bar {
  margin-top: 3.5rem;
  background: #f8fafc;
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.carrier-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.carrier-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.carrier-chip {
  font-size: 1.15rem;
  font-weight: 800;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Interactive Checklist Section --- */
.checklist-section {
  background: radial-gradient(circle at center, #f8fafc 0%, #edf2f7 100%);
  position: relative;
}

.checklist-wrapper {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  padding: 2.75rem 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.checklist-progress-bar-wrap {
  margin-bottom: 2rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.progress-track {
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #10b981);
  width: 0%;
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.checklist-column h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.check-item:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-xs);
}

.check-item input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
}

.check-item-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.3;
}

.check-item-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.check-item.completed {
  background: #f0fdf4;
  border-color: #86efac;
}

.check-item.completed .check-item-text strong {
  text-decoration: line-through;
  color: #166534;
}

/* --- Student Success Stories & Testimonials --- */
.testimonials-section {
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.testi-card {
  background: #f8fafc;
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all var(--transition-normal);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.testi-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 2.5rem;
  color: #cbd5e1;
  line-height: 1;
  font-family: serif;
}

.testi-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testi-user-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.testi-avatar.courier-avatar {
  background: linear-gradient(135deg, #d97706, #ea580c);
}

.testi-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.testi-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testi-tag {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: #e0f2fe;
  color: #0369a1;
}

.testi-tag.courier {
  background: #fef3c7;
  color: #b45309;
}

/* --- FAQ Accordion --- */
.faq-section {
  background: #f8fafc;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  background: none;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.35rem;
  font-weight: 300;
  transition: transform var(--transition-normal);
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding-bottom: 1.35rem;
}

/* --- Contact & Consultation Booking Section --- */
.contact-section {
  background: #ffffff;
  position: relative;
}

/* Row 1: Credentials (Founder + UDYAM MSME) 50/50 Grid */
.contact-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.founder-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all var(--transition-normal);
}

.founder-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.founder-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af, #d97706);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.45rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.28);
}

.founder-meta h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.founder-meta p.founder-role {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.founder-contacts {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.founder-contacts a {
  color: var(--text-main);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #cbd5e1;
}

.founder-contacts a:hover {
  color: var(--primary);
}

.udyam-badge-card {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all var(--transition-normal);
}

.udyam-badge-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #93c5fd;
}

.udyam-emblem {
  width: 56px;
  height: 56px;
  background: #1e40af;
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.udyam-info strong {
  display: block;
  font-size: 1.05rem;
  color: #1e3a8a;
  margin-bottom: 0.25rem;
}

.udyam-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.udyam-info code,
.msme-badge-text {
  font-family: var(--font-heading);
  background: #dbeafe;
  color: #1d4ed8;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-block;
  border: 1px solid #bfdbfe;
}

/* Row 2: Locations Stack (Left) + Form (Right) Balanced 1fr 1.15fr Grid */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.25rem;
  align-items: stretch;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  justify-content: space-between;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  transition: all var(--transition-fast);
}

.contact-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: var(--shadow-xs);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-icon-box.orange {
  background: var(--courier-light);
  color: var(--courier);
}

.contact-card-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.contact-card-text p, .contact-card-text a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-card-text a:hover {
  color: var(--primary);
}

.contact-form-wrap {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form-wrap form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Launching Soon Badge & Estimator Header */
.tool-heading-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.tool-heading-row h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.status-pill-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1.2;
}

/* --- Footer --- */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

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

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Floating Sticky Quick Actions --- */
.floating-actions-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.floating-whatsapp-btn {
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-bounce);
  position: relative;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp-btn .tooltip {
  position: absolute;
  right: 68px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1000;
}

.floating-whatsapp-btn:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

/* --- Modals --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform var(--transition-bounce);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

.modal-header {
  margin-bottom: 1.75rem;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.modal-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #ffffff;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 120;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notice .toast-icon {
  color: #22c55e;
  font-size: 1.2rem;
}

/* --- Responsive Media Queries --- */

/* Laptops & Tablets Landscape (961px - 1140px) */
@media (max-width: 1140px) {
  .nav-menu {
    gap: 0.85rem;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.35rem 0.2rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-call-pill {
    padding: 0.32rem 0.65rem;
    font-size: 0.78rem;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .header-actions .btn {
    padding: 0.38rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .brand-logo-img {
    height: 38px;
  }
}

/* Tablets (Surface Pro, iPad, Large Tablets: 841px - 1040px) */
@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 2rem;
    align-items: center;
  }

  .hero-visual-card {
    max-width: 100%;
    margin: 0;
  }

  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    padding-top: 1.25rem;
  }

  .stat-item {
    padding: 0.65rem 0.5rem;
  }

  .stat-item h4 {
    font-size: 1.45rem;
  }

  .stat-item p {
    font-size: 0.76rem;
  }

  .tools-container {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .courier-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-credentials-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Medium Tablets & Large Mobiles (769px - 840px) */
@media (max-width: 840px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero-visual-card {
    max-width: 540px;
    margin: 0 auto;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  /* Layout & Spacing */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-title-wrap {
    margin-bottom: 1.75rem;
  }

  .section-title {
    font-size: clamp(1.55rem, 6.5vw, 2.15rem);
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  /* Global Button Wrapping Fix for Mobile */
  .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
    line-height: 1.35;
  }

  /* Top Notice Bar Mobile */
  .top-notice-bar {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
  }

  .top-bar-content {
    justify-content: center;
    gap: 0.4rem;
  }

  .top-bar-left {
    justify-content: center;
    text-align: center;
    gap: 0.45rem;
  }

  .top-bar-right {
    display: none;
  }

  .admissions-notice {
    font-size: 0.74rem;
    display: inline-block;
  }

  /* Header & Mobile Toggle */
  .header-menu-desktop,
  .header-actions .btn {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: #f1f5f9;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-main);
  }

  .header-container {
    height: 60px;
  }

  .brand-logo-img {
    height: 34px;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-call-pill {
    padding: 0.28rem 0.55rem;
    font-size: 0.75rem;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    gap: 0.35rem;
  }

  .header-call-pill .call-dot {
    width: 6px;
    height: 6px;
  }

  /* Mobile Drawer Menu (Nested inside header at top: 100%) */
  .mobile-drawer {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid var(--border-subtle);
    padding: 1.25rem 1.5rem 1.75rem;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.15);
    flex-direction: column;
    gap: 0.85rem;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition-normal), opacity var(--transition-fast), visibility var(--transition-fast);
    z-index: 55;
  }

  .mobile-drawer.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 2.25rem 0 3.25rem;
  }

  .hero-track-switcher {
    width: 100%;
    margin-bottom: 1.75rem;
  }

  .switcher-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 0.35rem;
    gap: 0.35rem;
    background: #f1f5f9;
    border: 1px solid var(--border-subtle);
  }

  .switcher-tab {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    border-radius: var(--radius-md);
    text-align: center;
  }

  .hero-badge-row {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.65rem);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-top: 1.5rem;
  }

  .stat-item {
    text-align: center;
    background: #f8fafc;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
  }

  .floating-badge {
    display: none;
  }

  .hero-visual-card {
    max-width: 100%;
    margin: 0 auto;
  }

  /* Destinations 1-Column Grid on Mobile */
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dest-top-banner {
    height: 140px;
  }

  /* Quick Tools Section Mobile */
  .quick-tools-section {
    padding: 3.5rem 0;
  }

  .tools-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tool-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .tool-header {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .tool-icon {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }

  .tool-header h3 {
    font-size: 1.25rem;
  }

  .quiz-pill-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
  }

  .quiz-pill-btn {
    padding: 0.5rem 0.25rem;
    font-size: 0.78rem;
  }

  .calc-result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .calc-result-box {
    padding: 1rem;
  }

  .finder-result-box {
    padding: 1rem;
  }

  /* Courier Section Mobile */
  .courier-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .courier-card {
    padding: 1.75rem 1.25rem;
  }

  /* Checklist Mobile */
  .checklist-wrapper {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .checklist-column h4 {
    font-size: 1.05rem;
  }

  .check-item {
    padding: 0.65rem 0.85rem;
    gap: 0.65rem;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  /* Contact & Founder Mobile */
  .contact-credentials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .founder-card {
    padding: 1.35rem 1.25rem;
    gap: 1rem;
    border-radius: var(--radius-lg);
  }

  .founder-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .founder-contacts {
    flex-direction: column;
    gap: 0.35rem;
  }

  .udyam-badge-card {
    padding: 1.35rem 1.25rem;
    gap: 1rem;
    border-radius: var(--radius-lg);
  }

  .udyam-info code {
    font-size: 0.82rem;
    word-break: break-all;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-card {
    padding: 1.15rem 1.25rem;
    gap: 1rem;
    border-radius: var(--radius-lg);
  }

  .contact-form-wrap {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Floating Sticky Actions on Mobile */
  .floating-actions-bar {
    bottom: 16px;
    right: 14px;
    gap: 0.5rem;
  }

  .floating-whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.55rem;
  }

  .back-to-top-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  /* Modals Mobile */
  .modal-overlay {
    padding: 1rem;
  }

  .modal-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
    max-height: 94vh;
  }

  .modal-header h3 {
    font-size: 1.25rem;
  }
}

/* Extra Small Mobile (Samsung Galaxy A51, iPhone SE, etc. <= 380px) */
@media (max-width: 380px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .brand-logo-img {
    height: 30px;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .header-call-pill {
    padding: 0.22rem 0.42rem;
    font-size: 0.71rem;
    gap: 0.25rem;
  }

  .mobile-toggle {
    width: 34px;
    height: 34px;
    font-size: 1.15rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-cta-group .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .calc-transit-pill {
    font-size: 0.74rem;
    padding: 0.25rem 0.6rem;
  }
}

/* Ultra Compact Devices (<= 340px) */
@media (max-width: 340px) {
  .call-text-full {
    display: none;
  }

  .call-text-short {
    display: inline;
  }

  .header-call-pill {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}

