/* ==========================================================================
   mustuds Travel & Logistics Agent - Executive Blue & Crisp White Stylesheet
   ========================================================================== */

:root {
  /* Brand Palette - Executive Corporate Blue & Crisp White */
  --primary: #0052CC;
  --primary-dark: #0747A6;
  --primary-deep: #091E42;
  --primary-light: #EBF3FF;
  --primary-subtle: #DEEBFF;
  --accent-cyan: #00A3BF;
  --accent-glow: rgba(0, 82, 204, 0.15);
  
  /* Neutral Palette */
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1F5F9;
  --border-light: #E2E8F0;
  --border-strong: #CBD5E1;
  
  /* Typography Colors */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  --text-white: #FFFFFF;
  
  /* Status Colors */
  --success: #059669;
  --success-bg: #ECFDF5;
  --warning: #D97706;
  --danger: #DC2626;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 14px rgba(9, 30, 66, 0.08);
  --shadow-lg: 0 10px 30px rgba(9, 30, 66, 0.12);
  --shadow-xl: 0 20px 45px rgba(9, 30, 66, 0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   TOP CONCIERGE NOTIFICATION BAR
   ========================================================================== */
.top-bar {
  background-color: var(--primary-deep);
  color: #CBD5E1;
  font-size: 0.825rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10B981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

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

.top-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.top-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.top-pill-wa i {
  color: #25D366;
  font-size: 0.88rem;
}

.top-pill-phone i {
  color: #38BDF8;
  font-size: 0.82rem;
}

.top-bar-link {
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s ease;
}

.top-bar-link:hover {
  color: var(--bg-white);
}

.divider {
  color: rgba(255, 255, 255, 0.15);
}

.currency-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 0 0.75rem;
  height: 38px;
  border-radius: 9999px;
  color: var(--primary);
  font-size: 0.8rem;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.currency-dropdown:hover {
  background: #E8EEF8;
  border-color: rgba(0, 82, 204, 0.35);
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.08);
}

.currency-dropdown i {
  font-size: 0.78rem;
  color: var(--primary);
  opacity: 0.9;
}

.currency-dropdown select {
  background: transparent;
  border: none;
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.currency-dropdown select option {
  background-color: var(--bg-white);
  color: var(--text-main);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  padding: 0.85rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.65rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 8px rgba(0, 82, 204, 0.2);
  border: 1.5px solid rgba(0, 82, 204, 0.12);
  transition: transform var(--transition-normal);
  background-color: var(--bg-white);
}

.brand-logo:hover .logo-img {
  transform: scale(1.06);
}

.logo-badge {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 82, 204, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-actions .btn {
  height: 38px;
  padding: 0 1.15rem;
  font-size: 0.835rem;
  font-weight: 600;
  border-radius: 9999px;
  letter-spacing: 0.15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.nav-actions .btn i {
  font-size: 0.82rem;
  transition: transform 0.2s ease;
}

.nav-actions .btn:hover i {
  transform: scale(1.08);
}

.nav-actions .btn-outline {
  background: #FFFFFF;
  color: var(--primary-deep);
  border: 1.5px solid #D0DCEE;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav-actions .btn-outline:hover {
  background: #F0F5FF;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 82, 204, 0.12);
}

.nav-actions .btn-primary {
  background: linear-gradient(135deg, #0052CC 0%, #003E99 100%);
  color: #FFFFFF;
  border: 1.5px solid transparent;
  box-shadow: 0 3px 10px rgba(0, 82, 204, 0.25);
}

.nav-actions .btn-primary:hover {
  background: linear-gradient(135deg, #0047B3 0%, #003380 100%);
  box-shadow: 0 5px 16px rgba(0, 82, 204, 0.35);
  transform: translateY(-1px);
  color: #FFFFFF;
}

.mobile-toggle {
  display: none;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  font-size: 1rem;
  color: var(--primary-deep);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-toggle:hover {
  background: #E8EEF8;
  border-color: var(--primary);
  color: var(--primary);
}

/* ==========================================================================
   BUTTONS & UI COMPONENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.925rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.825rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--bg-white);
  box-shadow: 0 6px 16px rgba(0, 82, 204, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary-deep);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-light);
  border-color: var(--border-strong);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--bg-white);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HERO & LEGAL HEADER SECTIONS (WHITE IN BLUE)
   ========================================================================== */
.hero-section, .legal-header {
  position: relative;
  background: linear-gradient(135deg, #091E42 0%, #0747A6 60%, #0052CC 100%);
  color: var(--bg-white);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  text-align: center;
}

.legal-header {
  padding: 4.5rem 0 3.5rem;
}

.hero-bg-overlay, .legal-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 184, 217, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
}

.hero-badge, .legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #E2E8F0;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title, .legal-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--bg-white);
  margin-bottom: 1.35rem;
}

.legal-header h1 {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}

.legal-updated {
  color: #CBD5E1;
  font-size: 0.95rem;
}

.highlight-blue {
  color: #79F2C0;
  text-shadow: 0 0 20px rgba(121, 242, 192, 0.2);
}

.hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.65;
  color: #E2E8F0;
  max-width: 820px;
  margin: 0 auto 2.25rem;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Trust Stats Bar */
.trust-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #79F2C0;
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: #CBD5E1;
  font-weight: 500;
}

/* ==========================================================================
   DISPATCHER SECTION (TABBED QUICK AGENT)
   ========================================================================== */
.dispatcher-section {
  position: relative;
  margin-top: -2.5rem;
  z-index: 10;
  padding-bottom: 3rem;
}

.dispatcher-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.dispatcher-tabs {
  display: flex;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.15rem 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--primary);
  background: rgba(0, 82, 204, 0.04);
}

.tab-btn.active {
  color: var(--primary);
  background: var(--bg-white);
  border-bottom: 3px solid var(--primary);
}

.dispatcher-content {
  padding: 1.75rem 2rem;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.form-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.input-group label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.input-group label i {
  color: var(--primary);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 1rem;
}

.guarantee-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.guarantee-text i {
  color: var(--success);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.25;
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

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

/* ==========================================================================
   DETAILED SERVICE PILLARS
   ========================================================================== */
.services-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-subtle);
}

.pillar-card.highlight-card {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow: var(--shadow-md);
}

.pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

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

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

.bg-navy {
  background: var(--primary-deep);
  color: var(--bg-white);
}

.pillar-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.badge-featured {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 0.65rem;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.pillar-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pillar-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
}

.pillar-features li i {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.pillar-action {
  margin-top: auto;
}

/* ==========================================================================
   LUGGAGE DEEP DIVE STEPS
   ========================================================================== */
.luggage-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.luggage-step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.luggage-step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.step-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.luggage-step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.luggage-step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.luggage-callout-banner {
  background: var(--primary-deep);
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.callout-text h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.callout-text p {
  color: #CBD5E1;
  font-size: 0.95rem;
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.comparison-table-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 2px solid var(--border-light);
}

.feature-col {
  width: 32%;
  background: var(--bg-light);
  color: var(--text-main);
}

.ota-col {
  width: 34%;
  background: #FEF2F2;
  color: #991B1B;
}

.mustuds-col {
  width: 34%;
  background: var(--primary-light);
  color: var(--primary-dark);
}

.comparison-table td {
  padding: 1.15rem 1.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.feature-name {
  background: var(--bg-light);
  color: var(--text-main);
}

.ota-cell {
  background: #FFFBFB;
  color: var(--text-muted);
}

.mustuds-cell {
  background: #F8FBFF;
  color: var(--primary-deep);
  font-weight: 500;
}

.text-danger { color: var(--danger); }
.text-success { color: var(--success); }

/* ==========================================================================
   ESTIMATOR SECTION
   ========================================================================== */
.estimator-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.calc-group {
  margin-bottom: 1.5rem;
}

.calc-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.calc-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pill {
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.pill:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.pill.active {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 82, 204, 0.25);
}

.range-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.range-wrapper input[type="range"] {
  flex-grow: 1;
  height: 6px;
  background: var(--border-strong);
  border-radius: var(--radius-full);
  outline: none;
  accent-color: var(--primary);
}

.range-val {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  min-width: 90px;
  text-align: center;
}

.calc-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.925rem;
  font-family: var(--font-sans);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  outline: none;
}

/* Quote Card */
.quote-card {
  background: var(--bg-white);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2.25rem;
}

.quote-header {
  margin-bottom: 1.25rem;
}

.quote-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.quote-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.quote-amount-box {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.quote-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-right: 0.25rem;
}

.quote-price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.quote-subtext {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.quote-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border-light);
}

.quote-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.4;
  text-align: center;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-accordion-box {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--primary-subtle);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  transition: all 0.2s ease;
}

.faq-question i {
  color: var(--primary);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  background: var(--bg-white);
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-light);
}

.faq-answer p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-more-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.faq-more-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Dedicated FAQ Page */
.faq-category {
  margin-bottom: 3rem;
}

.faq-cat-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.faq-cat-title i {
  color: var(--primary);
}

.faq-cta-banner {
  background: var(--primary-deep);
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.faq-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.faq-cta-text p {
  color: #CBD5E1;
  font-size: 0.95rem;
}

/* ==========================================================================
   LEGAL PAGES STYLES (Terms & Privacy)
   ========================================================================== */
.legal-content-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.legal-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 6rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.legal-toc h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-toc ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal-toc a {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.legal-toc a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.legal-body {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.legal-body section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-body section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-list {
  list-style: disc;
  margin: 1rem 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-list li {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-contact-callout {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.legal-contact-callout h4 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.legal-contact-callout p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-main);
}

/* Legal Header Meta Badges */
.legal-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.legal-meta span i {
  color: #38BDF8;
}

/* Sidebar navigation */
.sidebar-box {
  margin-bottom: 1.5rem;
}

.sidebar-box h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--bg-light);
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 700;
  padding-left: 1rem;
}

.sidebar-support-card {
  background: linear-gradient(135deg, #091E42 0%, #0052CC 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-support-card .support-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #38BDF8;
  margin-bottom: 0.75rem;
}

.sidebar-support-card h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.sidebar-support-card p {
  color: #CBD5E1;
  font-size: 0.82rem;
  margin-bottom: 1.1rem;
  line-height: 1.4;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/* About Us Custom Components */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.about-value-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-value-card:hover {
  border-color: #BFDBFE;
  transform: translateY(-2px);
}

.about-value-card strong {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.about-value-card span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
}

.about-hubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.about-hub-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-sm);
}

.about-hub-card h4 {
  color: var(--primary-deep);
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.about-hub-card h4 i {
  color: var(--primary);
}

.about-hub-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.45;
}

.about-contact-card {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.about-contact-card h2 {
  color: var(--primary);
  margin-top: 0;
  font-size: 1.35rem;
}

.about-contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* ==========================================================================
   COOKIE CONSENT BOX (RIGHT FLOATING RECTANGLE)
   ========================================================================== */
.cookie-banner-box {
  position: fixed;
  bottom: 2rem;
  right: 6.5rem;
  width: 360px;
  max-width: calc(100vw - 3rem);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(9, 30, 66, 0.18), 0 2px 8px rgba(9, 30, 66, 0.08);
  z-index: 1800;
  padding: 1.5rem;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner-box.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.cookie-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cookie-title-group {
  display: flex;
  flex-direction: column;
}

.cookie-title-group h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.2;
}

.cookie-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-close-btn {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.cookie-close-btn:hover {
  color: var(--text-main);
}

.cookie-text {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.15rem;
}

.cookie-text a {
  font-weight: 600;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

/* ==========================================================================
   REVIEWS & CONTACT
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.reviewer-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-deep);
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.c-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

.c-method strong {
  display: block;
  font-size: 0.925rem;
  color: var(--primary-deep);
}

.c-method p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-form-wrapper {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.main-inquiry-form h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 0.25rem;
}

.form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

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

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.inquiry-msg {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  display: none;
}

.inquiry-msg.success {
  display: block;
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid #A7F3D0;
}

.inquiry-msg.error {
  display: block;
  background: #FEF2F2;
  color: var(--danger);
  border: 1px solid #FECACA;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--primary-deep);
  color: #CBD5E1;
  padding-top: 4.5rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-col .brand-name {
  color: var(--bg-white);
}

.footer-text {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 1rem 0 1.25rem;
  color: #94A3B8;
}

.footer-badges {
  display: flex;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: #CBD5E1;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-badges i {
  color: #79F2C0;
}

.footer-affiliation {
  margin-top: 1rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-affiliation i {
  color: #38BDF8;
  font-size: 0.95rem;
}

.footer-affiliation a {
  color: #38BDF8;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-affiliation a:hover {
  color: #FFFFFF;
}

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

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  color: #94A3B8;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--bg-white);
  padding-left: 3px;
}

.footer-col p {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col p i {
  color: var(--primary);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.825rem;
  color: #64748B;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #64748B;
}

.footer-legal a:hover {
  color: #CBD5E1;
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 66, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.modal-dialog {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

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

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.2;
}

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

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1500;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--bg-white);
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--primary-deep);
  color: var(--bg-white);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-md);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS, MOBILE & SMALL PHONES)
   ========================================================================== */

/* Global Mobile Fixes */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
}

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

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-title, .legal-header h1 { font-size: 2.25rem; }
  .services-pillars-grid { grid-template-columns: 1fr; }
  .trust-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .luggage-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .estimator-wrapper { grid-template-columns: 1fr; }
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .review-card {
    flex: 0 0 320px;
    min-width: 280px;
    scroll-snap-align: start;
  }
  .contact-box { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .legal-container { grid-template-columns: 1fr; }
  .cookie-banner-box { right: 1.5rem; bottom: 6.5rem; }
}

/* Mobile & Small Tablets (max-width: 900px) */
@media (max-width: 900px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar .brand-logo {
    gap: 0;
    flex-shrink: 0;
  }

  .navbar .brand-text {
    display: none !important;
  }

  .navbar .logo-img {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 15px 30px rgba(0, 30, 66, 0.14);
    border-top: 1px solid var(--border-light);
    border-bottom: 3px solid var(--primary);
    display: none;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
    animation: slideDownMenu 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-deep);
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
  }

  .nav-links .nav-link:hover, .nav-links .nav-link.active {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.25rem;
  }

  .nav-links .nav-link::after {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: var(--primary-deep);
    font-size: 1.3rem;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: background 0.2s ease;
  }

  .mobile-toggle:hover {
    background: #E4E8EE;
  }

  /* Legal & About Us Tablet Responsive */
  .legal-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .legal-sidebar {
    position: static;
    padding: 1.25rem;
  }

  .sidebar-box {
    margin-bottom: 1rem;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .sidebar-nav a {
    font-size: 0.82rem;
    padding: 0.4rem 0.75rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    border-left: 1px solid var(--border-light);
  }

  .sidebar-nav a:hover,
  .sidebar-nav a.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    padding-left: 0.75rem;
  }

  .legal-body {
    padding: 2rem 1.5rem;
  }
}

/* Standard Mobile Phones (max-width: 768px) */
@media (max-width: 768px) {
  /* Top Bar */
  .top-bar {
    padding: 0.45rem 0;
    font-size: 0.76rem;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }

  .top-bar-left {
    justify-content: center;
    font-size: 0.74rem;
  }

  .top-bar-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

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

  .top-bar-link {
    padding: 0.15rem 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
  }

  .currency-dropdown select {
    font-size: 0.75rem;
    padding: 0.15rem 0.35rem;
  }

  /* Navbar Branding - only show logo on mobile top nav to avoid interfering with currency */
  .navbar .brand-logo {
    gap: 0;
    flex-shrink: 0;
  }

  .navbar .brand-text {
    display: none !important;
  }

  .navbar .logo-img {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .currency-dropdown {
    height: 34px;
    padding: 0 0.55rem;
  }

  .nav-actions .btn {
    height: 34px;
    padding: 0 0.85rem;
    font-size: 0.78rem;
  }

  .mobile-toggle {
    width: 34px;
    height: 34px;
  }

  /* Hero Section */
  .hero-section {
    padding: 3rem 0 2rem;
  }

  .hero-title, .legal-header h1 {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  /* Quick Agent Dispatcher */
  .dispatcher-box {
    margin-top: 1.75rem;
    border-radius: var(--radius-md);
  }

  .dispatcher-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .dispatcher-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    padding: 0.85rem 1rem;
    font-size: 0.84rem;
    flex-shrink: 0;
  }

  .dispatcher-content {
    padding: 1rem 0.75rem;
  }

  .form-grid-4, .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .form-group, .input-group {
    margin-bottom: 0.45rem;
  }

  .form-group label, .input-group label {
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .form-group input,
  .form-group select,
  .form-group textarea,
  .input-group input,
  .input-group select {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    padding: 0.5rem 0.65rem;
    border-radius: var(--radius-sm);
    min-height: 38px;
    width: 100%;
  }

  .main-inquiry-form h3 {
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
  }

  .main-inquiry-form .form-sub {
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
  }

  .contact-box {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
  }

  .contact-info h2 {
    font-size: 1.35rem;
    margin-bottom: 0.45rem;
    line-height: 1.25;
  }

  .contact-info p {
    font-size: 0.82rem;
    margin-bottom: 1rem;
    line-height: 1.45;
  }

  /* Connect With Personal Travel: 2 Horizontal Columns */
  .contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 0.5rem;
    margin-bottom: 0.5rem;
  }

  .c-method {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    background: var(--bg-light);
    padding: 0.75rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
  }

  .c-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
  }

  .c-method strong {
    font-size: 0.74rem;
    line-height: 1.25;
    margin-bottom: 0.1rem;
  }

  .c-method p {
    font-size: 0.72rem;
    line-height: 1.3;
    word-break: break-word;
  }

  .contact-info, .contact-form-wrapper {
    padding: 1.15rem 0.85rem;
  }

  /* Trust Stats */
  .trust-stats-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .stat-card {
    padding: 0.75rem;
  }

  /* Service Pillars */
  .pillar-card {
    padding: 1.5rem 1.25rem;
  }

  .pillar-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .pillar-actions {
    flex-direction: column;
    width: 100%;
  }

  .pillar-actions .btn {
    width: 100%;
  }

  /* Luggage Steps */
  .luggage-steps-grid {
    grid-template-columns: 1fr;
  }

  /* Comparison Matrix */
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    margin: 0 -0.5rem;
  }

  .comparison-table {
    min-width: 620px;
    font-size: 0.82rem;
  }

  .comparison-table th, .comparison-table td {
    padding: 0.75rem 0.65rem;
  }

  /* Estimator Calculator */
  .calc-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .calc-pills .pill {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
    text-align: center;
    justify-content: center;
  }

  .estimator-right {
    padding: 1.5rem 1.25rem;
  }

  .quote-amount-box .quote-price {
    font-size: 2.2rem;
  }

  /* Reviews: Horizontal Swipeable Cards on Mobile */
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.85rem;
    padding: 0.5rem 0.25rem 1rem;
    scrollbar-width: none;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 85%;
    min-width: 265px;
    max-width: 320px;
    scroll-snap-align: center;
    padding: 1.25rem 1.1rem;
    border-radius: var(--radius-md);
  }

  .review-text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  /* Footer: Horizontal Multi-Column Layout on Mobile */
  .footer {
    padding: 2.5rem 0 1.25rem;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.85rem;
    padding-bottom: 1.75rem;
  }

  .footer-col.brand-col {
    grid-column: span 2;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-col h4 {
    font-size: 0.92rem;
    margin-bottom: 0.65rem;
  }

  .footer-col ul {
    gap: 0.45rem;
  }

  .footer-col ul a,
  .footer-col p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .footer-badges {
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.72rem;
  }

  .footer-bottom {
    padding: 1rem 0;
  }

  .footer-bottom-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.76rem;
    text-align: left;
  }

  .footer-legal {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    font-size: 0.76rem;
  }

  /* Modal */
  .modal-backdrop {
    padding: 0.5rem;
  }

  .modal-dialog {
    padding: 1.5rem 1.15rem;
    max-height: 90vh;
    border-radius: var(--radius-md);
  }

  .modal-header {
    gap: 0.75rem;
    margin-bottom: 1.15rem;
    padding-bottom: 0.9rem;
  }

  .modal-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

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

  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions .btn {
    width: 100%;
  }

  /* Floating Widgets */
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }

  .whatsapp-tooltip {
    display: none !important;
  }

  .cookie-banner-box {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 4.85rem;
    width: auto;
    max-width: none;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  /* Legal & About Pages on Mobile */
  .legal-content-section, .legal-main {
    padding: 1.25rem 0 2.5rem;
  }

  .legal-container {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    max-width: 100%;
    padding: 0 0.25rem;
    min-width: 0;
  }

  .legal-header {
    padding: 1.5rem 0 1.25rem;
  }

  .legal-header h1 {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
  }

  .legal-header p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .legal-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.35rem;
  }

  .legal-meta {
    gap: 0.3rem;
    margin-top: 0.6rem;
  }

  .legal-meta span {
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
    gap: 0.25rem;
  }

  /* Compact Top Sidebar & Support Card */
  .legal-sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.75rem 0.85rem;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    box-sizing: border-box;
  }

  .sidebar-box {
    margin-bottom: 0.5rem;
  }

  .sidebar-box h3 {
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
    color: var(--primary-deep);
  }

  .sidebar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .sidebar-nav a {
    font-size: 0.72rem;
    padding: 0.25rem 0.55rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    border-left: 1px solid var(--border-light);
    color: var(--text-muted);
    font-weight: 600;
  }

  .sidebar-nav a:hover,
  .sidebar-nav a.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    padding-left: 0.55rem;
  }

  /* Top Card with WhatsApp - Small & Compact */
  .sidebar-support-card {
    background: linear-gradient(135deg, #091E42 0%, #0052CC 100%);
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    box-sizing: border-box;
  }

  .support-header-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .sidebar-support-card .support-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38BDF8;
    flex-shrink: 0;
    margin: 0;
  }

  .support-text-compact h4 {
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
  }

  .support-text-compact p {
    color: #CBD5E1;
    font-size: 0.7rem;
    margin: 0;
    line-height: 1.2;
  }

  .support-actions-compact {
    display: flex;
    gap: 0.35rem;
    width: 100%;
  }

  .support-actions-compact .btn {
    flex: 1;
    padding: 0.35rem 0.5rem;
    font-size: 0.72rem;
    border-radius: 4px;
    justify-content: center;
    text-align: center;
  }

  .support-actions-compact .btn-outline {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
  }

  /* Main Body Card */
  .legal-body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1rem 0.85rem;
    border-radius: var(--radius-sm);
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    box-sizing: border-box;
  }

  .legal-body section {
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
    min-width: 0;
    max-width: 100%;
  }

  .legal-body h2 {
    font-size: 1.02rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--primary-deep);
  }

  .legal-body p {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    color: #475569;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .legal-body ul {
    padding-left: 1.1rem;
    margin: 0.35rem 0 0.65rem;
  }

  .legal-body li {
    font-size: 0.78rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
    color: #475569;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Values Grid */
  .about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin: 0.65rem 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-value-card {
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about-value-card strong {
    font-size: 0.82rem;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary);
  }

  .about-value-card span {
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--text-muted);
  }

  /* Hubs Grid */
  .about-hubs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin: 0.65rem 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-hub-card {
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-left: 3px solid var(--primary);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about-hub-card h4 {
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
    color: var(--primary-deep);
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .about-hub-card p {
    font-size: 0.74rem;
    line-height: 1.3;
    margin: 0;
    color: var(--text-muted);
  }

  /* Comparison Matrix Table - Strict 100% Fit */
  .comparison-table-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    margin: 0.65rem 0;
    box-sizing: border-box;
  }

  .comparison-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 0.72rem;
  }

  .comparison-table th {
    padding: 0.45rem 0.35rem;
    font-size: 0.7rem;
    background: #091E42;
    color: #FFFFFF;
    line-height: 1.2;
    text-align: left;
    word-break: break-word;
  }

  .comparison-table td {
    padding: 0.4rem 0.35rem;
    font-size: 0.7rem;
    line-height: 1.3;
    vertical-align: top;
    border-bottom: 1px solid #E2E8F0;
    word-break: break-word;
  }

  /* Bottom Connect With Us Card - Small & Compact */
  .about-contact-card {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    padding: 0.75rem 0.85rem;
    border-radius: 6px;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about-contact-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
  }

  .contact-icon-badge {
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
  }

  .about-contact-header h2 {
    font-size: 0.95rem;
    color: var(--primary);
    margin: 0 0 0.15rem 0;
  }

  .about-contact-header p {
    font-size: 0.74rem;
    margin: 0;
    color: #475569;
    line-height: 1.25;
  }

  .about-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.5rem;
    width: 100%;
  }

  .about-contact-actions .btn {
    width: 100%;
    padding: 0.45rem 0.65rem;
    font-size: 0.74rem;
    border-radius: 4px;
    justify-content: center;
    text-align: center;
  }
}

/* Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .footer-col.brand-col .brand-name {
    font-size: 1.05rem;
  }

  .footer-col.brand-col .brand-tagline {
    font-size: 0.62rem;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .hero-title, .legal-header h1 {
    font-size: 1.15rem;
  }

  .legal-body {
    padding: 0.85rem 0.65rem;
  }

  .legal-body h2 {
    font-size: 0.95rem;
  }

  .legal-body p, .legal-body li {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .about-value-card, .about-hub-card {
    padding: 0.55rem 0.65rem;
  }

  .calc-pills {
    grid-template-columns: 1fr;
  }

  .faq-cta-btn {
    flex-direction: column;
    width: 100%;
  }

  .faq-cta-btn .btn {
    width: 100%;
  }
}

