/* ==========================================================================
   ALVIN MEDCARE - HIGH-CONVERTING GOOGLE ADS LANDING PAGE STYLES
   Optimized for High Performance, Mobile Responsiveness & CRO
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0F52BA;
  --primary-dark: #0A3A82;
  --primary-light: #2563EB;
  --secondary: #0D9488;
  --secondary-dark: #0F766E;
  --secondary-light: #14B8A6;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --success: #10B981;
  --danger: #EF4444;
  
  --dark: #0F172A;
  --dark-light: #1E293B;
  --gray-900: #0F172A;
  --gray-800: #1E293B;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748B;
  --gray-400: #94A3B8;
  --gray-300: #CBD5E1;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --white: #FFFFFF;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-glow: 0 0 25px rgba(15, 82, 186, 0.35);
  --shadow-glow-green: 0 0 25px rgba(16, 185, 129, 0.4);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* iOS Safari fix — body alone is insufficient */
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container-fluid {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

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

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(15, 82, 186, 0.08);
  border: 1px solid rgba(15, 82, 186, 0.2);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-badge.green {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--secondary-dark);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  font-weight: 400;
}

/* Gradients and Special Accents */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-pattern {
  background-color: var(--gray-50);
  background-image: radial-gradient(rgba(15, 82, 186, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1D4ED8 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 82, 186, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0A3A82 0%, #1E40AF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 82, 186, 0.45);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BA59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-viber {
  background: #7360F2;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(115, 96, 242, 0.35);
}

.btn-viber:hover {
  background: #5E48E8;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115, 96, 242, 0.5);
}

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

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

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-pulse {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOP NOTIFICATION BAR & HEADER
   ========================================================================== */
.top-ticker-bar {
  background: var(--dark);
  color: var(--gray-300);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  padding: 0.12rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.72rem;
}

.badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #34D399;
  border-radius: 50%;
  animation: live-blink 1.2s infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

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

.ticker-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-300);
  transition: var(--transition-fast);
}

.ticker-contact-item:hover {
  color: var(--white);
}

/* Main Navigation Header (Compact & Crisp) */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition-normal);
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-text-backup {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text-backup span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  position: relative;
  padding: 0.35rem 0;
}

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

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

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

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

.header-phone-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  color: var(--dark);
}

.header-phone-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 82, 186, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header-phone-text span {
  font-size: 0.65rem;
  color: var(--gray-500);
  font-weight: 600;
}

.header-phone-text strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
}

.nav-toggle-btn {
  display: none;
  background: none;
  font-size: 1.35rem;
  color: var(--dark);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION - CRO GOOGLE ADS OPTIMIZED
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 3.5rem 0 4.5rem 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 82, 186, 0.12) 0%, rgba(15, 82, 186, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, rgba(13, 148, 136, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(15, 82, 186, 0.08);
  border: 1px solid rgba(15, 82, 186, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-usps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

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

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
}

.usp-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Social Proof in Hero */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.patient-avatars {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.avatar-img:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  margin-left: -12px;
}

.proof-text strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
}

.proof-text span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.stars {
  color: #F59E0B;
  font-size: 0.85rem;
}

/* ==========================================================================
   HERO LEAD CAPTURE FORM (CRO OPTIMIZED)
   ========================================================================== */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 20px 40px -15px rgba(15, 82, 186, 0.15), 0 0 0 1px rgba(15, 82, 186, 0.08);
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.form-tag {
  display: inline-block;
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}

.form-label span.req {
  color: var(--danger);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: var(--gray-400);
  font-size: 1rem;
  pointer-events: none;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 82, 186, 0.15);
}

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

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.5rem;
}

.phone-group {
  display: flex;
  gap: 0.5rem;
}

.country-code-select {
  width: 110px;
  padding: 0.75rem 0.5rem;
  font-size: 0.85rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  font-weight: 600;
}

.phone-input {
  flex: 1;
  padding-left: 2.6rem; /* must match .form-control so icon doesn't overlap text */
}

.file-upload-box {
  border: 1.5px dashed var(--gray-300);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.file-upload-box:hover {
  border-color: var(--primary);
  background: rgba(15, 82, 186, 0.03);
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-text {
  font-size: 0.8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.file-upload-text strong {
  color: var(--primary);
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--gray-500);
}

.form-security-note i {
  color: var(--success);
}

/* ==========================================================================
   HOSPITAL LOGOS & ACCREDITATIONS BAR
   ========================================================================== */
.hospitals-bar {
  background: var(--white);
  padding: 2.25rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.hospitals-bar-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

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

.hospitals-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  align-items: center;
}

@media (max-width: 1100px) {
  .hospitals-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

@media (max-width: 768px) {
  .hospitals-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hospitals-grid-5 {
    grid-template-columns: 1fr;
  }
}

.hospital-partner-box {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
}

.hospital-partner-box:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 82, 186, 0.12);
}

.hosp-logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  transition: var(--transition-fast);
}

.hospital-partner-box:hover .hosp-logo-circle {
  transform: scale(1.08);
}

.hosp-info-box {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hosp-info-box strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.hosp-tag {
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hosp-tag.jci {
  color: var(--primary);
}

.hosp-tag.nabh {
  color: #059669;
}

/* ==========================================================================
   METRICS & IMPACT COUNTERS
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1E293B 100%);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

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

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  position: relative;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-number span.plus {
  color: #38BDF8;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-300);
  font-weight: 500;
}

/* ==========================================================================
   TRUSTED BY 2500+ PROFESSIONAL CUSTOMERS & GLOBAL PATIENTS
   ========================================================================== */
.trusted-customers-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 1024px) {
  .trusted-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.trusted-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .trusted-features-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.trusted-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: var(--transition-fast);
}

.trusted-feature-item:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 82, 186, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.feature-text-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.feature-text-content p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.trusted-card-visual {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.visual-img-container {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.trusted-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge-float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.exp-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #38BDF8;
  line-height: 1;
  font-family: var(--font-heading);
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

.trusted-stats-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.25rem 1rem;
  background: var(--white);
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-highlight {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  font-family: var(--font-heading);
}

.mini-stat span {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 600;
  margin-top: 0.2rem;
}

.mini-divider {
  width: 1px;
  height: 35px;
  background: var(--gray-200);
}

/* ==========================================================================
   TREATMENTS & CLINICAL SPECIALTIES
   ========================================================================== */
.treatments-section {
  background: var(--white);
}

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

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

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

.treatment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.treatment-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: 0 15px 30px -10px rgba(15, 82, 186, 0.18);
}

.treatment-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.treatment-card:hover .treatment-card-img {
  transform: scale(1.06);
}

.treatment-savings-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #10B981;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.treatment-icon-float {
  position: absolute;
  bottom: -20px;
  left: 1.5rem;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(15, 82, 186, 0.3);
}

.treatment-card-body {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.treatment-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.treatment-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.treatment-highlights {
  margin-bottom: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.highlight-item i {
  color: var(--primary);
  font-size: 0.8rem;
}

.treatment-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-est-box {
  display: flex;
  flex-direction: column;
}

.price-est-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  font-weight: 600;
}

.price-est-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-card-inquire {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(15, 82, 186, 0.08);
  color: var(--primary);
  font-weight: 700;
  border: 1px solid rgba(15, 82, 186, 0.2);
}

.btn-card-inquire:hover {
  background: var(--primary);
  color: var(--white);
}

/* ==========================================================================
   TREATMENT COST COMPARISON TABLE / CALCULATOR
   ========================================================================== */
.cost-calculator-section {
  background: var(--gray-50);
}

.cost-table-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

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

.comparison-table th {
  background: var(--dark);
  color: var(--white);
  padding: 1.25rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-table th.col-india {
  background: var(--primary);
  color: var(--white);
}

.comparison-table td {
  padding: 1.15rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
  color: var(--gray-700);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background-color: rgba(15, 82, 186, 0.02);
}

.comparison-table td.col-india {
  background-color: rgba(15, 82, 186, 0.05);
  font-weight: 800;
  color: var(--primary);
}

.cost-saving-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
}

.calc-action-bar {
  padding: 1.5rem 2rem;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.calc-action-text strong {
  display: block;
  font-size: 1.1rem;
}

.calc-action-text span {
  font-size: 0.875rem;
  color: var(--gray-300);
}

/* ==========================================================================
   CONCIERGE SERVICES (360 PATIENT SUPPORT)
   ========================================================================== */
.services-section {
  background: var(--white);
}

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

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

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

.service-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-normal);
  position: relative;
}

.service-box:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 30px -10px rgba(15, 82, 186, 0.12);
  transform: translateY(-4px);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-fast);
}

.service-box:hover .service-icon-wrap {
  background: var(--primary);
  color: var(--white);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.service-text {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==========================================================================
   4-STEP PATIENT JOURNEY ROADMAP
   ========================================================================== */
.roadmap-section {
  background: var(--gray-50);
}

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

@media (max-width: 992px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

.roadmap-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

.step-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(15, 82, 186, 0.3);
}

.roadmap-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.roadmap-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ==========================================================================
   TESTIMONIALS & SOCIAL PROOF
   ========================================================================== */
.testimonials-section {
  background: var(--white);
}

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

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

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

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  background: var(--white);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 2rem;
  color: rgba(15, 82, 186, 0.2);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}

.patient-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.patient-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.patient-details p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.patient-country-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

/* ==========================================================================
   ACCORDION FAQ SECTION (GOOGLE ADS QUALITY BOOST)
   ========================================================================== */
.faq-section {
  background: var(--gray-50);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ==========================================================================
   FINAL HIGH-CONVERTING CTA BANNER
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0B3C88 100%);
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.cta-banner-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER & LEGAL COMPLIANCE
   ========================================================================== */
.main-footer {
  background: #0B1120;
  color: var(--gray-400);
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.footer-brand p {
  margin: 1.25rem 0 1.5rem 0;
  line-height: 1.6;
}

.footer-logo-badge {
  background: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.social-icon-btn.viber:hover {
  background: #7360F2;
  border-color: #7360F2;
}

.text-viber {
  color: #7360F2 !important;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-info li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-contact-info i {
  color: var(--primary-light);
  margin-top: 0.2rem;
}

.footer-legal-disclaimer {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--gray-500);
}

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

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

.footer-legal-links a:hover {
  color: var(--white);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & MOBILE STICKY BOTTOM BAR
   ========================================================================== */
.floating-contact-widget,
.floating-whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .floating-contact-widget,
  .floating-whatsapp-widget {
    bottom: 80px; /* Position above sticky mobile bar */
    right: 15px;
  }
}

.floating-buttons-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-bubble-popup,
.whatsapp-bubble-popup {
  background: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  border: 1px solid var(--gray-200);
  animation: float-bubble 3s ease-in-out infinite;
}

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

.whatsapp-float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  background: #20BA59;
}

.viber-float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #7360F2;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(115, 96, 242, 0.5);
  transition: var(--transition-fast);
  text-decoration: none;
}

.viber-float-btn:hover {
  transform: scale(1.08);
  background: #5E48E8;
  color: var(--white);
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  padding: 0.5rem 0.5rem;
  border-top: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.1fr;
    gap: 0.35rem;
  }
  
  body {
    padding-bottom: 65px; /* Prevent footer clipping */
  }
}

.mobile-sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  text-decoration: none;
}

.mobile-sticky-btn i {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.mobile-sticky-btn.call {
  background: var(--gray-100);
  color: var(--dark);
}

.mobile-sticky-btn.whatsapp {
  background: #25D366;
  color: var(--white);
}

.mobile-sticky-btn.viber {
  background: #7360F2;
  color: var(--white);
}

.mobile-sticky-btn.quote {
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   MODAL POPUPS (APPOINTMENT & PRIVACY)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

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

.modal-backdrop.active .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gray-100);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--gray-200);
  color: var(--dark);
}

/* Form Success State */
.form-success-message {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem auto;
}

/* ==========================================================================
   MISSING UTILITY CLASSES
   ========================================================================== */
.text-primary { color: var(--primary) !important; }
.text-primary-light { color: var(--primary-light) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }

.accreditation-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  background: rgba(15, 82, 186, 0.08);
  border: 1px solid rgba(15, 82, 186, 0.2);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ==========================================================================
   MOBILE NAVIGATION (HAMBURGER MENU)
   ========================================================================== */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: var(--gray-100);
  }

  .header-phone-box {
    display: none;
  }

  .main-header {
    position: sticky;
  }
}

/* ==========================================================================
   TICKER BAR MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  .top-ticker-bar {
    padding: 0.35rem 0;
  }

  .ticker-content {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }

  .ticker-right {
    gap: 0.85rem;
    flex-wrap: wrap;
  }

  /* Hide email on very small screens to reduce clutter */
  .ticker-right .ticker-contact-item:nth-child(2) {
    display: none;
  }
}

@media (max-width: 480px) {
  .ticker-left span {
    font-size: 0.72rem;
  }

  /* On very small screens, only show WhatsApp and phone */
  .ticker-right .ticker-contact-item:nth-child(4) {
    display: none;
  }
}

/* ==========================================================================
   HERO SECTION MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0 3rem 0;
  }

  .hero-title {
    font-size: 1.9rem;
    letter-spacing: -0.02em;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
  }

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

  .form-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .hero-form-card {
    padding: 1.25rem 1rem;
  }

  .country-code-select {
    width: 90px;
    font-size: 0.78rem;
    padding: 0.75rem 0.3rem;
  }
}

/* ==========================================================================
   COST CALCULATOR MOBILE
   ========================================================================== */
.calc-selector-bar {
  padding: 1.25rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 768px) {
  /* Override the inline-styled calc selector bar */
  .cost-table-card > div:first-child {
    padding: 1rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .cost-table-card > div:first-child select {
    min-width: 100% !important;
    width: 100% !important;
    display: block !important;
  }

  .cost-table-card > div:first-child label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    margin-right: 0 !important;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.85rem 0.65rem;
    font-size: 0.85rem;
  }

  .comparison-table th:nth-child(3),
  .comparison-table td:nth-child(3),
  .comparison-table th:nth-child(4),
  .comparison-table td:nth-child(4) {
    display: none;
  }

  .calc-action-bar {
    padding: 1.25rem 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .calc-action-text strong {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   SECTION TITLE MOBILE
   ========================================================================== */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.65rem;
  }

  .cta-banner-title {
    font-size: 1.75rem;
  }

  .cta-banner-desc {
    font-size: 1rem;
  }

  .cta-banner-section {
    padding: 3rem 0;
  }

  .cta-banner-buttons {
    gap: 0.75rem;
  }

  .cta-banner-buttons .btn-lg {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   TRUSTED SECTION MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  .trusted-right {
    order: -1; /* Show image first on mobile */
  }

  .visual-img-container {
    height: 260px;
  }

  .trusted-stats-box {
    padding: 1rem 0.75rem;
  }

  .stat-highlight {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   MODAL MOBILE
   ========================================================================== */
@media (max-width: 600px) {
  .modal-dialog {
    padding: 1.5rem 1.15rem;
    max-height: 95vh;
    border-radius: var(--radius-lg);
  }

  .modal-backdrop {
    padding: 0.75rem;
    align-items: flex-end;
  }

  .modal-dialog {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 92vh;
  }
}

/* ==========================================================================
   GENERAL MOBILE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }

  .stat-number {
    font-size: 2.1rem;
  }

  .contact-bubble-popup {
    display: none;
  }
}

/* ==========================================================================
   HERO ACTION BUTTONS (WhatsApp / Viber) - side by side
   ========================================================================== */
.hero-action-btns {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.hero-action-btns .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.92rem;
}

@media (max-width: 480px) {
  .hero-action-btns .btn {
    font-size: 0.82rem;
    padding: 0.7rem 0.75rem;
    gap: 0.4rem;
  }
}

/* ==========================================================================
   TRUST SECTION ACTION BUTTONS - side by side
   ========================================================================== */
.trust-action-btns {
  margin-top: 2rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .trust-action-btns {
    flex-wrap: nowrap;
  }

  .trust-action-btns .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.7rem 0.75rem;
    gap: 0.4rem;
  }
}

/* ==========================================================================
   CALC CONTACT BUTTONS - side by side
   ========================================================================== */
.calc-contact-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.calc-contact-btns .btn {
  flex: 1;
  justify-content: center;
}

@media (max-width: 480px) {
  .calc-contact-btns .btn {
    font-size: 0.85rem;
    padding: 0.7rem 0.75rem;
  }
}

/* ==========================================================================
   BUTTON SIZE REDUCTION ON MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  .btn-lg {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.92rem;
  }

  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 0.8rem 1.35rem;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   CTA BANNER BUTTONS - 2-column on mobile, not stacked
   ========================================================================== */
@media (max-width: 640px) {
  .cta-banner-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
  }

  .cta-banner-buttons .btn-lg {
    width: 100%;
    padding: 0.8rem 0.75rem;
    font-size: 0.88rem;
    justify-content: center;
    gap: 0.4rem;
  }

  /* Third button spans full width */
  .cta-banner-buttons .btn-lg:nth-child(3) {
    grid-column: 1 / -1;
  }

  .cta-banner-title {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   FOOTER COMPACT ON MOBILE - 2 column instead of 1
   ========================================================================== */
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .main-footer {
    padding: 2.5rem 0 1.5rem 0;
  }

  .footer-grid {
    margin-bottom: 2rem;
  }

  .footer-legal-disclaimer {
    font-size: 0.75rem;
    padding: 1rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 1.25rem;
  }

  .footer-legal-links {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-brand p {
    margin: 0.85rem 0 1rem 0;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   PHONE GROUP FIX ON SMALL SCREENS
   ========================================================================== */
@media (max-width: 380px) {
  .country-code-select {
    width: 80px;
    font-size: 0.75rem;
    padding: 0.75rem 0.2rem;
  }

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