/* ==========================================================================
   ZIVA COURIER SERVICE - MODERN RESPONSIVE STYLESHEET
   Legal Entity: M/s Ziva Courier Service (Franchise Code: QF1415)
   Trade Name: DTDC International Govindpura
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand & Theme Colors */
  --primary-navy: #0b2545;
  --primary-blue: #0056b3;
  --primary-accent: #0f62fe;
  --secondary-blue: #e8f1fd;
  
  /* Conversion Action Colors */
  --call-blue: #0d59c6;
  --call-blue-hover: #0a4498;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #20ba59;
  --whatsapp-dark: #128C7E;
  
  /* Neutral Color Palette */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  
  /* Accents */
  --accent-amber: #f59e0b;
  --accent-amber-light: #fef3c7;
  --accent-teal: #0d9488;
  --accent-teal-light: #ccfbf1;
  --accent-blue-light: #dbeafe;
  --accent-indigo-light: #e0e7ff;
  
  /* Typography */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-cta: 0 8px 20px -4px rgba(15, 98, 254, 0.35);
  --shadow-wa: 0 8px 20px -4px rgba(37, 211, 102, 0.4);
  
  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles (Mobile First & Overflow Resilient)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-bottom: 0;
  touch-action: pan-y;
  -webkit-font-smoothing: antialiased;
}

/* Text Wrapping Guard - Prevents Text Cutting on Mobile & Tablet */
h1, h2, h3, h4, h5, h6, p, span, a, strong, div, li, label, td, th {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Container & Utility Grid
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 12px;
}

/* Section Headings */
.section-header {
  margin-bottom: 32px;
}

.section-tag {
  display: inline-block;
  background: var(--secondary-blue);
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  border: 1px solid rgba(0, 86, 179, 0.15);
}

.section-title {
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  touch-action: manipulation;
  max-width: 100%;
}

.btn:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1.04rem;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

.btn-call {
  background-color: var(--call-blue);
  color: #ffffff;
  box-shadow: var(--shadow-cta);
}

.btn-call:hover {
  background-color: var(--call-blue-hover);
  box-shadow: 0 10px 22px -3px rgba(13, 89, 198, 0.45);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: var(--shadow-wa);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  box-shadow: 0 10px 22px -3px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-submit {
  background-color: #22bf5b;
  color: #ffffff;
  padding: 13px 20px;
  font-size: 1rem;
  box-shadow: var(--shadow-wa);
}

.btn-whatsapp-submit:hover {
  background-color: #1ea850;
}

.btn-primary {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #081a33;
}

.btn-maps {
  background-color: #4285F4;
  color: #ffffff;
}

.btn-maps:hover {
  background-color: #3367d6;
}

.btn-outline {
  background-color: #ffffff;
  color: var(--primary-navy);
  border-color: var(--border-medium);
}

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

.btn-outline-nav {
  background-color: transparent;
  color: var(--primary-navy);
  border: 1px solid var(--border-medium);
  padding: 8px 14px;
  font-size: 0.88rem;
}

.btn-outline-nav:hover {
  background-color: var(--secondary-blue);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* --------------------------------------------------------------------------
   5. Announcement Bar & Header
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #0b2545 0%, #133a6b 100%);
  color: #ffffff;
  padding: 7px 12px;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-pill {
  background-color: #25D366;
  color: #0b2545;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.announcement-text {
  opacity: 0.95;
  line-height: 1.4;
}

.announcement-text strong {
  color: #ffffff;
}

/* Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(11, 37, 69, 0.06);
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  gap: 10px;
  width: 100%;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0; /* Allows flex item to properly shrink without pushing right container out */
  flex: 1 1 auto;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0b2545 0%, #0056b3 100%);
  color: #ffffff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 6px rgba(11, 37, 69, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.brand-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.header-code-pill {
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffffff;
  background-color: #b45309;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-subtitle-row {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.header-dtdc-pill {
  font-weight: 800;
  font-size: 0.78rem;
  color: #0056b3;
  background-color: #e0edff;
  border: 1px solid #bfdbfe;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.header-loc-dot {
  color: #94a3b8;
  font-size: 0.7rem;
}

.header-loc-text {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-call-btn {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  background-color: var(--call-blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(13, 89, 198, 0.3);
}

.header-call-btn:hover {
  background-color: var(--call-blue-hover);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f1f6fd 100%);
  padding: 40px 0 52px;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  max-width: 100%;
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: 0;
  width: min(450px, 100%);
  height: 350px;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: #e6f7ed;
  color: #117a37;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid #b7ebc9;
}

.hero-entity-tag {
  display: inline-flex;
  align-items: center;
  background-color: #e8f1fd;
  color: #0b2545;
  font-size: 0.8rem;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  border: 1px solid #bfdbfe;
}

.hero-entity-tag strong {
  color: #0056b3;
}

/* Highlight Strip */
.hero-dual-highlight-box {
  background: #ffffff;
  border: 1.5px solid #bfdbfe;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.08);
  max-width: 100%;
}

.highlight-box-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.highlight-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.highlight-title {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-top: 2px;
  line-height: 1.3;
}

.highlight-divider-bar {
  width: 1px;
  height: 32px;
  background-color: #cbd5e1;
  flex-shrink: 0;
}

.badge-mini {
  display: inline-block;
  background-color: #0056b3;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 3px;
  letter-spacing: 0.3px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-title {
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--primary-navy);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.text-highlight {
  color: var(--call-blue);
  position: relative;
  display: inline-block;
}

.hero-supporting-text {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 600px;
}

.hero-supporting-text strong {
  color: var(--text-dark);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trust-pills {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Quick Enquiry Widget */
.hero-widget {
  position: relative;
  width: 100%;
}

.widget-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 86, 179, 0.15);
  position: relative;
  width: 100%;
}

.widget-header {
  margin-bottom: 18px;
}

.widget-tag {
  display: inline-block;
  background-color: var(--accent-blue-light);
  color: var(--primary-blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
}

.widget-subtitle {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  font-family: var(--font-family);
  font-size: 0.92rem;
  padding: 10px 12px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  background-color: #fafbfc;
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.12);
}

.form-row {
  display: flex;
  gap: 12px;
}

.col-half {
  flex: 1;
  min-width: 0;
}

.form-footer-note {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. Trust & Business Identity Card
   -------------------------------------------------------------------------- */
.trust-identity-section {
  padding: 48px 0;
  background-color: var(--bg-surface);
}

.trust-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid #e2e8f0;
  box-shadow: var(--shadow-lg);
  padding: 32px 28px;
  position: relative;
}

.badge-authorized {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e8f1fd;
  color: #0056b3;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid #c7dcf9;
}

.trust-heading {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.trust-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 850px;
  margin-bottom: 24px;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.identity-item {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
}

.identity-item:hover {
  background-color: #ffffff;
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.identity-item.highlight-border {
  border-color: #93c5fd;
  background: #f0f7ff;
}

.identity-item.highlight-franchise {
  border-color: #fed7aa;
  background: #fffbeb;
}

.identity-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.identity-icon.icon-entity {
  background-color: #e0edff;
  color: #0056b3;
}

.identity-icon.icon-code {
  background-color: #fef3c7;
  color: #b45309;
}

.identity-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.identity-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.identity-value {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2px;
  line-height: 1.35;
}

.franchise-badge {
  display: inline-block;
  background-color: #b45309;
  color: #ffffff;
  font-size: 1rem;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.8px;
}

.identity-grid-sub {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.identity-sub-box {
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.86rem;
}

.identity-sub-box strong {
  display: block;
  color: var(--primary-navy);
  margin-bottom: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.identity-sub-box p {
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 0;
}

.identity-notice {
  background-color: #f1f5f9;
  border-left: 4px solid #0b2545;
  border-radius: 0 8px 8px 0;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   8. Services Section
   -------------------------------------------------------------------------- */
.services-section {
  padding: 56px 0;
  background-color: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #93c5fd;
}

.service-card.highlight-card {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  position: relative;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-box.bg-blue {
  background-color: var(--accent-blue-light);
  color: var(--call-blue);
}

.service-icon-box.bg-indigo {
  background-color: var(--accent-indigo-light);
  color: #4f46e5;
}

.service-icon-box.bg-teal {
  background-color: var(--accent-teal-light);
  color: var(--accent-teal);
}

.service-icon-box.bg-amber {
  background-color: var(--accent-amber-light);
  color: #b45309;
}

.service-badge {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  background-color: #f1f5f9;
  color: var(--text-muted);
}

.service-badge-popular {
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
  background-color: #e0e7ff;
  color: #4338ca;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.service-text {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-features {
  margin-bottom: 20px;
  margin-top: auto;
}

.service-features li {
  font-size: 0.86rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 7px;
  position: relative;
  padding-left: 18px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--whatsapp-green);
  font-weight: 800;
}

.service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-blue);
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  transition: var(--transition);
}

.service-action-link:hover {
  color: var(--call-blue-hover);
  gap: 11px;
}

/* --------------------------------------------------------------------------
   9. Why Contact Us Section
   -------------------------------------------------------------------------- */
.why-us-section {
  padding: 56px 0;
  background-color: #ffffff;
}

.why-us-box {
  background: linear-gradient(180deg, #f8fafc 0%, #edf4fc 100%);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid #dbeafe;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #e8f1fd;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.mid-cta-banner {
  background: #0b2545;
  color: #ffffff;
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.mid-cta-text h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.mid-cta-text p {
  font-size: 0.88rem;
  opacity: 0.85;
}

.mid-cta-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   10. Process Steps Section
   -------------------------------------------------------------------------- */
.process-section {
  padding: 52px 0;
  background-color: #f8fafc;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--call-blue);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

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

/* --------------------------------------------------------------------------
   11. Contact Section & Map
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 56px 0;
  background-color: #ffffff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.contact-info-panel {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 30px;
}

.contact-heading {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--primary-navy);
  margin-top: 8px;
  margin-bottom: 4px;
}

.contact-subheading {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.badge-code-inline {
  background-color: #0b2545;
  color: #ffffff;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-phone {
  background-color: #e8f1fd;
  color: var(--call-blue);
}

.icon-whatsapp {
  background-color: #dcfce7;
  color: #16a34a;
}

.icon-location {
  background-color: #fee2e2;
  color: #dc2626;
}

.icon-time {
  background-color: #fef3c7;
  color: #b45309;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-info-text .label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
}

.contact-info-text .value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 2px;
}

.contact-info-text .link-value {
  color: var(--call-blue);
  transition: var(--transition);
}

.contact-info-text .link-value:hover {
  text-decoration: underline;
}

.contact-info-text .hint {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 2px;
}

.contact-info-text .address-text {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-info-text .time-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-flex {
  flex: 1 1 180px;
}

/* Map panel */
.contact-map-panel {
  position: sticky;
  top: 80px;
}

.map-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.map-card-header {
  padding: 16px 18px;
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border-light);
}

.map-card-header h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.map-card-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.map-visual-container {
  width: 100%;
  background-color: #eaeaea;
}

.map-visual-container iframe {
  display: block;
}

.map-card-footer {
  padding: 16px 18px;
  background-color: #ffffff;
}

.map-info-item {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   12. FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 52px 0;
  background-color: #f8fafc;
  border-top: 1px solid var(--border-light);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item[open] {
  border-color: #93c5fd;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 18px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  padding: 4px 9px;
  border-radius: 6px;
  color: #93c5fd;
}

.footer-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #ffffff;
  position: relative;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-list li {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 10px;
  line-height: 1.45;
}

.footer-contact-list a {
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.legal-link-btn {
  background: none;
  border: none;
  color: #93c5fd;
  font-family: var(--font-family);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 4px;
  transition: var(--transition);
}

.legal-link-btn:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: underline;
}

.divider-dot {
  color: #64748b;
  font-size: 0.75rem;
}

/* Modal Dialogs */
.policy-modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 650px;
  width: 90vw;
  margin: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  background: transparent;
}

.policy-modal::backdrop {
  background: rgba(11, 37, 69, 0.7);
  backdrop-filter: blur(4px);
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: var(--primary-navy);
  color: #ffffff;
}

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

.modal-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
  opacity: 0.8;
  transition: var(--transition);
}

.modal-close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.modal-body h4 {
  font-size: 1rem;
  color: var(--primary-navy);
  margin-top: 14px;
  margin-bottom: 5px;
  font-weight: 700;
}

.modal-body ul {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 10px;
}

.modal-body ul li {
  margin-bottom: 5px;
}

.compliance-disclaimer {
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 16px;
}

.compliance-disclaimer strong {
  color: #f1f5f9;
}

.copyright-row {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.developer-credit {
  font-size: 0.8rem;
  color: #94a3b8;
}

.developer-credit a {
  color: #93c5fd;
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}

.developer-credit a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   14. Storefront & Outlet Photo Gallery Section
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 64px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.gallery-card {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-accent);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #e2e8f0;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.03);
}

.gallery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 37, 69, 0.9);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25D366;
}

.gallery-content {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.gallery-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Service Card Booking & Transit Note */
.service-disclaimer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(0, 86, 179, 0.05);
  border-left: 3px solid var(--primary-blue);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  margin: 12px 0 8px;
  line-height: 1.4;
}

.service-extra-note {
  font-size: 0.76rem;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 500;
}

.gallery-footer-bar {
  margin-top: 32px;
  background: var(--secondary-blue);
  border: 1px solid rgba(0, 86, 179, 0.2);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.gallery-footer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 300px;
}

.gallery-footer-info svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.gallery-footer-info p {
  font-size: 0.92rem;
  color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   15. Policy & Standalone Pages Styling
   -------------------------------------------------------------------------- */
.policy-page-main {
  padding: 48px 0 80px;
  min-height: 70vh;
}

.policy-card-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  margin-top: 24px;
}

.policy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.policy-breadcrumb a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: underline;
}

.policy-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.policy-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 12px 18px;
  background: var(--bg-main);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-blue);
  font-size: 0.88rem;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.policy-body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #334155;
}

.policy-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-light);
}

.policy-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 20px 0 8px;
}

.policy-body p {
  margin-bottom: 16px;
}

.policy-body ul, .policy-body ol {
  margin: 12px 0 20px 24px;
  list-style: disc;
}

.policy-body li {
  margin-bottom: 8px;
}

.policy-contact-box {
  background: var(--secondary-blue);
  border: 1px solid rgba(0, 86, 179, 0.2);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 36px;
}

.policy-contact-box h3 {
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.policy-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-weight: 700;
  color: var(--primary-blue);
}

/* --------------------------------------------------------------------------
   16. MOBILE FIXED BOTTOM CTA BAR
   -------------------------------------------------------------------------- */
.mobile-fixed-bottom-bar {
  display: none;
}

/* --------------------------------------------------------------------------
   17. MASTER RESPONSIVE MEDIA QUERIES (TABLET & MOBILE OPTIMIZED)
   -------------------------------------------------------------------------- */

/* TABLET LANDSCAPE & MEDIUM SCREENS (<= 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-dual-highlight-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .highlight-divider-bar {
    width: 100%;
    height: 1px;
  }

  .identity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

/* TABLET PORTRAIT (<= 992px) */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-map-panel {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .gallery-footer-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .gallery-footer-info {
    justify-content: center;
    text-align: center;
  }

  .gallery-footer-bar .btn-maps {
    width: 100%;
  }

  .mid-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .mid-cta-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* MOBILE PHONES & SMALL TABLETS (<= 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  .hide-mobile {
    display: none !important;
  }

  .mobile-fixed-bottom-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.16);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .bottom-bar-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 56px;
  }

  .mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.96rem;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0.2px;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.15s ease;
  }

  .mobile-cta-call {
    background-color: var(--call-blue);
    color: #ffffff;
  }

  .mobile-cta-call:active {
    background-color: var(--call-blue-hover);
  }

  .mobile-cta-whatsapp {
    background-color: var(--whatsapp-green);
    color: #ffffff;
  }

  .mobile-cta-whatsapp:active {
    background-color: var(--whatsapp-green-hover);
  }

  .mobile-cta-divider {
    width: 2px;
    background-color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
  }

  .mobile-cta-icon {
    flex-shrink: 0;
  }

  .hero-section {
    padding: 24px 0 32px;
  }

  .hero-badge-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hero-badge, .hero-entity-tag {
    font-size: 0.76rem;
    padding: 4px 10px;
    max-width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.94rem;
  }

  .hero-trust-pills {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .identity-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .identity-grid-sub {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-card {
    padding: 20px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
  }

  .feature-item {
    padding: 16px 14px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-card {
    padding: 18px 16px;
  }

  .why-us-box {
    padding: 22px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-img-wrapper {
    height: 270px;
  }

  .contact-info-panel {
    padding: 20px 16px;
  }

  .contact-detail-card {
    padding: 12px;
  }

  .contact-actions-row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-actions-row .btn {
    width: 100%;
  }

  .mid-cta-buttons {
    flex-direction: column;
  }

  .mid-cta-buttons .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-card-container {
    padding: 24px 16px;
  }
}

/* SMARTPHONES (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .announcement-bar {
    font-size: 0.74rem;
    padding: 6px 10px;
    line-height: 1.4;
  }

  .header-container {
    padding: 8px 12px;
    gap: 8px;
  }

  .brand-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .brand-logo-icon svg {
    width: 18px;
    height: 18px;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .header-code-pill {
    font-size: 0.62rem;
    padding: 1px 4px;
  }

  .header-dtdc-pill {
    font-size: 0.7rem;
    padding: 1px 5px;
    white-space: normal;
  }

  .header-loc-text,
  .header-loc-dot {
    display: none;
  }

  .header-call-btn {
    padding: 7px 11px;
    font-size: 0.82rem;
    gap: 5px;
  }

  .header-call-btn svg {
    width: 15px;
    height: 15px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .widget-card {
    padding: 18px 14px;
  }

  .widget-title {
    font-size: 1.15rem;
  }

  .btn-whatsapp-submit {
    padding: 11px 14px;
    font-size: 0.92rem;
  }

  .faq-question {
    padding: 14px 14px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 14px 14px;
    font-size: 0.86rem;
  }

  .footer-legal-links {
    font-size: 0.78rem;
    gap: 6px 8px;
  }
}

/* VERY SMALL SCREENS (<= 360px) */
@media (max-width: 360px) {
  .header-container {
    padding: 6px 8px;
    gap: 6px;
  }

  .brand-title {
    font-size: 0.88rem;
  }

  .header-call-btn {
    padding: 6px 8px;
    font-size: 0.76rem;
  }

  .btn {
    padding: 9px 12px;
    font-size: 0.86rem;
  }
}


