/* ==========================================================================
   GLOBAL ATTESTATION - HIGH CONVERTING GOOGLE ADS LANDING PAGE STYLESHEET
   Brand Colors:
   Primary Dark Green: #225041
   Dark Slate: #0f172a / #1e293b
   Gold Accent: #dfba69 / #c59b3f
   WhatsApp Green: #25d366 / #1ebd5a
   Backgrounds: #ffffff / #f8fafc / #f0f7f4
   ========================================================================== */

:root {
  --primary: #225041;
  --primary-light: #2d6754;
  --primary-dark: #183b2f;
  --primary-subtle: #f0f7f4;
  --primary-gradient: linear-gradient(135deg, #183b2f 0%, #225041 50%, #2d6754 100%);
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --accent-gold: #dfba69;
  --accent-gold-dark: #b8923d;
  --accent-gold-light: #fef9ed;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebd5a;
  --whatsapp-dark: #128c7e;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-gold: 0 10px 25px -5px rgba(223, 186, 105, 0.4);
  --shadow-green: 0 10px 25px -5px rgba(34, 80, 65, 0.3);
  --shadow-whatsapp: 0 10px 25px -5px rgba(37, 211, 102, 0.45);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container-max: 1240px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ================= UTILITIES & HELPERS ================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--accent-gold); }
.text-blue { color: var(--primary-light); }
.text-green { color: var(--whatsapp); }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-gold {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.badge-blue {
  background-color: var(--primary-subtle);
  color: var(--primary);
  border: 1px solid #c7ded6;
}

.badge-green {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* Section Common Headers - Compact to prevent empty space */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.25rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Compact spacing between sections to satisfy "donot want any unwanted blank spaces" */
.section-block {
  padding: 3.5rem 0;
  position: relative;
}

.section-block.bg-white {
  background-color: #ffffff;
}

.section-block.bg-slate {
  background-color: #f1f5f9;
}

.section-block.bg-dark {
  background-color: var(--secondary);
  color: #ffffff;
}

/* ================= 1. TOP URGENCY / ANNOUNCEMENT BAR ================= */
.top-notice-bar {
  background-color: #225041;
  color: #ffffff;
  font-size: 0.82rem;
  padding: 0.48rem 1rem;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.notice-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.notice-link {
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.25rem;
}

/* ================= 2. MAIN HEADER ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #225041;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 650;
  color: #ffffff !important;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  position: relative;
  padding: 0.45rem 0.65rem;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-sm);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.65rem;
  width: 0%;
  height: 2.5px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.14);
}

.nav-link:hover::after {
  width: calc(100% - 1.3rem);
}

.header-actions {
  display: flex;
  align-items: center;
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp-header:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.wa-btn-text {
  font-size: 0.9rem;
  font-weight: 750;
}

.btn-quote-header:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

/* ================= 2. HERO SECTION (HIGH CONVERTING DUAL COLUMN) ================= */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 38, 30, 0.93) 0%, rgba(24, 60, 48, 0.88) 50%, rgba(15, 38, 30, 0.95) 100%),
              url('../assets/hero-bg.jpg') center center / cover no-repeat;
  padding: 3rem 0 3.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.25rem;
  align-items: flex-start;
}

/* Hero Left Column */
.hero-content {
  padding-right: 0.5rem;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.hero-badge-wrap .badge-gold {
  background: rgba(254, 243, 199, 0.15);
  color: #fde68a;
  border: 1px solid rgba(253, 230, 138, 0.4);
  backdrop-filter: blur(4px);
}

.hero-badge-wrap .badge-green {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(134, 239, 172, 0.4);
  backdrop-filter: blur(4px);
}

.hero-h1 {
  font-size: 2.5rem;
  font-weight: 850;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}

.hero-h1 .highlight-blue,
.hero-h1 .highlight-green {
  color: #dfba69;
  background: none;
  -webkit-text-fill-color: #dfba69;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.55;
  margin-bottom: 1.35rem;
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 750;
}

/* Hero Bullet Points - Clean, Scannable 3-5 Word Grid with Dark Background Glassmorphism */
.hero-bullets-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.9rem;
  margin-bottom: 1.4rem;
}

.hero-bullet-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.hero-bullet-card:hover {
  border-color: #dfba69;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.hero-bullet-ico {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-bullet-text {
  font-size: 0.86rem;
  font-weight: 750;
  color: #ffffff;
  line-height: 1.25;
}

/* Hero CTA Dual Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 750;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  font-weight: 750;
  transition: all 0.25s ease;
}

.btn-cta-call:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Trust Bar & Guarantee */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  flex-wrap: wrap;
}

.trust-rating-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.google-stars {
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.95rem;
}

.rating-text {
  font-size: 0.84rem;
  font-weight: 750;
  color: #ffffff;
}

.rating-sub {
  font-size: 0.74rem;
  color: #cbd5e1;
  display: block;
  font-weight: 500;
}

.trust-embassy-stamp {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
}

.stamp-mini-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.stamp-mini-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
}

/* ================= HERO RIGHT COLUMN: HIGH CONVERTING LEAD FORM ================= */
.hero-form-wrapper {
  position: relative;
  z-index: 25;
}

.hero-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(34, 80, 65, 0.25);
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(34, 80, 65, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 25;
}

.form-header {
  background: linear-gradient(135deg, #183b2f 0%, #225041 100%);
  color: #ffffff;
  padding: 1.2rem 1.4rem;
  text-align: left;
  position: relative;
}

.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fef08a;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.form-header-title {
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.form-header-desc {
  font-size: 0.8rem;
  color: #e2e8f0;
}

.form-body {
  padding: 1.25rem 1.4rem;
}

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

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

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}

.form-label span.req {
  color: #ef4444;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  color: var(--text-main);
  background: #f8fafc;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 80, 65, 0.15);
}

/* Mandatory Validation Error Feedback */
.form-input.input-error,
.form-select.input-error,
.phone-code-select.input-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
  animation: inputShake 0.3s ease-in-out;
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.form-error-banner {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  margin-top: 0.65rem;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.35;
}

.form-error-banner.visible {
  display: flex;
}

.form-error-banner svg {
  flex-shrink: 0;
  color: #dc2626;
}

.phone-input-wrap {
  display: flex;
  gap: 0.4rem;
}

.phone-code-select {
  width: 105px;
  flex-shrink: 0;
  padding: 0.65rem 0.4rem;
  font-size: 0.85rem;
  background: #f1f5f9;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-weight: 600;
  outline: none;
}

.speed-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.65rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #f8fafc;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  transition: all 0.2s ease;
}

.radio-card:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-subtle);
  color: var(--primary-dark);
}

.service-speed-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #f0fdf4;
  border: 1.5px solid #225041;
  border-radius: var(--radius-md);
  padding: 0.65rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 750;
  color: #225041;
}

.service-speed-badge svg {
  color: #225041;
  flex-shrink: 0;
}

.btn-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.42);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.65rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.55);
}

.form-privacy-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  line-height: 1.35;
  white-space: nowrap;
}

.form-privacy-note svg {
  flex-shrink: 0;
}

/* ================= 4. AUTHORITY LOGOS & RECOGNITIONS BAR ================= */
.authority-bar {
  background: #ffffff;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}

.authority-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.authority-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.authority-logos-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.auth-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
}

.auth-badge-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ================= 5. QUICK STATS COUNTER STRIP ================= */
.stats-strip {
  background: var(--secondary);
  color: #ffffff;
  padding: 1.6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-num {
  font-size: 2rem;
  font-weight: 850;
  color: var(--accent-gold);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* ================= 6. KEYWORD FOCUSED SERVICES TABS & CARDS ================= */
.services-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.service-tab-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.service-tab-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 750;
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.service-tab-btn:hover {
  border-color: #225041;
  color: #225041;
}

.service-tab-btn.active {
  background-color: #225041 !important;
  border-color: #225041 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(34, 80, 65, 0.35);
}

.service-tab-panel {
  display: none;
}

.service-tab-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

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

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card.is-hidden {
  display: none !important;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #225041;
  box-shadow: 0 16px 32px rgba(34, 80, 65, 0.14);
}

.service-card-media {
  position: relative;
  width: 100%;
  height: 185px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f261e;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-card-media .card-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 38, 30, 0.92);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.service-card-content {
  padding: 1.25rem 1.35rem 0 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 0.45rem;
}

.service-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.service-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
}

.service-feature-item svg {
  color: #225041;
  flex-shrink: 0;
}

.service-card-footer {
  padding: 0 1.35rem 1.35rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-card-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  font-weight: 750;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-card-whatsapp:hover {
  background-color: var(--whatsapp);
  color: #ffffff;
  border-color: var(--whatsapp);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-card-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f7f4;
  color: #225041;
  border: 1.5px solid #225041;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  font-weight: 750;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-card-quote:hover {
  background-color: #225041;
  color: #ffffff;
  border-color: #225041;
  box-shadow: 0 4px 14px rgba(34, 80, 65, 0.3);
}

/* Locations Banner (Based on globalattestation.in) */
.locations-banner {
  background: linear-gradient(135deg, #f0f7f4 0%, #e8f4ef 100%);
  border: 1.5px solid #c7ded6;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.locations-banner-left {
  flex: 1;
}

.locations-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.locations-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.locations-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #c7ded6;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.locations-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.locations-banner-right {
  flex-shrink: 0;
}

/* MOFA Advisory Comparison Card (What is MOFA & Visiting MOFA Directly) */
.mofa-advisory-section {
  margin-top: 2.5rem;
}

.mofa-advisory-card {
  background: #ffffff;
  border: 1.5px solid #c7ded6;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  position: relative;
  overflow: hidden;
}

.mofa-advisory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #225041 0%, #16a34a 100%);
}

.mofa-advisory-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mofa-col-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.mofa-col-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.mofa-col-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mofa-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.mofa-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
}

.mofa-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.mofa-challenges-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.mofa-challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #475569;
  font-weight: 500;
}

.mofa-challenge-item .challenge-icon-neg {
  color: #dc2626;
  font-weight: 800;
  flex-shrink: 0;
}

.mofa-solution-box {
  background: #f0f7f4;
  border-left: 3px solid var(--primary);
  padding: 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: #1e3a2f;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .locations-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .locations-banner-right {
    width: 100%;
  }
  .locations-banner-right .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .mofa-advisory-card {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.5rem;
  }
}

/* ================= 7. STEP-BY-STEP QATAR ATTESTATION PROCESS ================= */
.process-timeline-wrap {
  position: relative;
  margin-top: 1.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.process-step-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.step-number-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 850;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(34, 80, 65, 0.3);
}

.step-card-icon {
  min-width: 44px;
  width: fit-content;
  height: 44px;
  padding: 0 0.5rem;
  border-radius: var(--radius-md);
  background: #f0f7f4;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  margin-top: 0.4rem;
  white-space: nowrap;
}

.step-icon-flags {
  gap: 3px;
  font-size: 1.15rem;
}

.step-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 0.45rem;
}

.step-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.48;
}

.step-time-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 750;
  color: #225041;
  background: #e2ede8;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

/* ================= 8. INTERACTIVE COST & TIME ESTIMATOR (HIGH CONVERTING TOOL) ================= */
.calculator-box {
  background: #ffffff;
  border: 2px solid #c7ded6;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(34, 80, 65, 0.08);
  padding: 2rem 2.2rem;
  max-width: 960px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.calc-selectors {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 750;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.calc-result-card {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(223, 186, 105, 0.3);
}

.calc-result-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.calc-result-timeline {
  font-size: 1.8rem;
  font-weight: 850;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.calc-result-timeline span {
  color: #4ade80;
}

.calc-result-detail {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 1.2rem;
}

.btn-calc-whatsapp {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  font-weight: 750;
  box-shadow: var(--shadow-whatsapp);
  transition: all 0.2s ease;
}

.btn-calc-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}

/* ================= 9. DOCUMENT CHECKLIST ACCORDION / TABS ================= */
.docs-checklist-wrap {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.doc-cat-box {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.1rem;
}

.doc-cat-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border-color);
}

.doc-cat-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary);
}

.doc-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #334155;
  font-weight: 550;
  line-height: 1.4;
}

.doc-item svg {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================= 10. WHY CHOOSE GLOBAL ATTESTATION ================= */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.why-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.why-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.48;
}

/* ================= 11. MID-PAGE HIGH-IMPACT CONVERSION BANNER ================= */
.mid-cta-banner {
  background: linear-gradient(135deg, #183b2f 0%, #225041 60%, #2d6754 100%);
  color: #ffffff;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.mid-cta-content {
  max-width: 650px;
}

.mid-cta-title {
  font-size: 1.85rem;
  font-weight: 850;
  line-height: 1.22;
  margin-bottom: 0.5rem;
}

.mid-cta-subtitle {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.mid-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn-mid-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.btn-mid-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.btn-mid-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: var(--secondary);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 800;
  transition: all 0.2s ease;
}

.btn-mid-call:hover {
  background-color: #f8fafc;
  color: var(--primary);
  transform: translateY(-2px);
}

/* ================= 12. CLIENT REVIEWS & CORPORATE TRUST ================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.review-rating-stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
  font-size: 0.85rem;
}

.verified-badge {
  font-size: 0.68rem;
  font-weight: 750;
  color: #166534;
  background: #dcfce7;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.review-text {
  font-size: 0.86rem;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}

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

.author-name {
  font-size: 0.86rem;
  font-weight: 750;
  color: var(--secondary);
}

.author-detail {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Corporate Clients Logo Carousel / Strip */
.corporate-strip {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.corp-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
}

.corp-logos-wrap {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.corp-logo-img {
  height: 28px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: all 0.2s ease;
}

.corp-logo-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ================= 13. FAQ ACCORDION SECTION (GOOGLE ADS QUALITY BOOST) ================= */
.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(34, 80, 65, 0.08);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  font-size: 0.98rem;
  font-weight: 750;
  color: var(--secondary);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--primary-subtle);
}

.faq-answer-body {
  display: none;
  padding: 0 1.25rem 1.1rem 1.25rem;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.55;
}

.faq-item.active .faq-answer-body {
  display: block;
}

/* ================= 14. DOHA OFFICE & CONTACT SECTION ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.office-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.flag-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.office-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
}

.office-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.office-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

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

.detail-text strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 750;
  color: var(--secondary);
}

.detail-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.contact-action-btns {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.contact-action-btns .btn-cta-whatsapp {
  font-size: 0.95rem;
  padding: 0.8rem 1.4rem;
}

.btn-contact-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background-color: var(--primary-subtle);
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 750;
  transition: all 0.25s ease;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-contact-call:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 80, 65, 0.25);
}

.map-card-wrap {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.map-card-header {
  padding: 1rem 1.4rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--secondary);
}

.map-badge {
  font-size: 0.72rem;
  font-weight: 750;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.map-iframe-box {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
}

/* ================= 15. FOOTER & LEGAL ================= */
.main-footer {
  background: #225041;
  color: #cbd5e1;
  padding: 3rem 0 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #94a3b8;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.footer-col-title {
  font-size: 0.94rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.9rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link-item a {
  font-size: 0.82rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-link-item a:hover {
  color: #ffffff;
}

.footer-logo {
  max-height: 48px;
  width: auto;
  margin-bottom: 0.85rem;
  display: block;
}

.footer-helpline {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}

.footer-helpline strong {
  color: #ffffff;
}

.footer-helpline a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-helpline a:hover {
  color: #ffffff;
}

.footer-address {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 0.65rem;
}

.footer-contact-links {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-contact-links strong {
  color: #ffffff;
}

.footer-contact-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-links a:hover {
  color: #ffffff;
}

.footer-bottom-wrap {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-copyright-line {
  font-size: 12px;
  color: #A1A1AA;
  line-height: 1.5;
}

.footer-disclaimer-line {
  font-size: 11px;
  color: #A1A1AA;
  line-height: 1.5;
  max-width: 920px;
  margin: 0 auto;
}

/* ================= 16. STICKY MOBILE CONVERSION BAR ================= */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  padding: 0.55rem 0.75rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  border-top: 1px solid var(--border-color);
}

.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 0.5rem;
}

.btn-mobile-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: var(--secondary);
  border-radius: var(--radius-md);
  padding: 0.45rem 0.2rem;
  font-size: 0.75rem;
  font-weight: 750;
  border: 1px solid var(--border-color);
}

.btn-mobile-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.45rem 0.2rem;
  font-size: 0.75rem;
  font-weight: 750;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.btn-mobile-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.45rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(34, 80, 65, 0.35);
}

/* Floating WhatsApp Button for Desktop - Hidden at top to prevent collision with hero form submit button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 850;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 750;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
}

.floating-whatsapp-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* ================= 17. SUCCESS MODAL & TOAST ================= */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.modal-content-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary);
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  font-size: 2rem;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 850;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1.4rem;
}

.btn-modal-action-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 0.65rem 2.2rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(34, 80, 65, 0.25);
  transition: all 0.2s ease;
}

.btn-modal-action-close:hover {
  background: #183a2f;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(34, 80, 65, 0.35);
}

/* ================= 18. RESPONSIVE MEDIA QUERIES ================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-h1 {
    font-size: 2.15rem;
  }
  
  .services-cards-grid,
  .why-us-grid,
  .reviews-grid,
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    font-size: 0.74rem;
    padding: 0.4rem 0.5rem;
  }
  
  .site-logo {
    height: 38px;
  }

  .logo-tagline {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .wa-btn-number {
    display: none;
  }

  .btn-whatsapp-header {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }
  
  .hero-h1 {
    font-size: 1.85rem;
  }

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

  .hero-cta-group .btn-cta-whatsapp,
  .hero-cta-group .btn-cta-call {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
  }

  .contact-action-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }

  .contact-action-btns .btn-cta-whatsapp,
  .contact-action-btns .btn-contact-call {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .services-cards-grid,
  .why-us-grid,
  .reviews-grid,
  .docs-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .mid-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .mid-cta-actions {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-whatsapp-btn {
    display: none;
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .section-title {
    font-size: 1.65rem;
  }
  
  .section-block {
    padding: 2.5rem 0;
  }
}
