/* =========================================
   CSS VARIABLES — COLORS & FONTS
========================================= */
:root {
  --font-primary: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --fs-xs:   11px;
  --fs-sm:   13px;
  --fs-base: 14px;
  --fs-md:   15px;
  --fs-lg:   16px;
  --fs-xl:   18px;
  --fs-2xl:  22px;
  --fs-3xl:  26px;
  --fs-4xl:  32px;
  --fs-5xl:  40px;
  --fs-hero: 42px;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-xbold:   800;

  --clr-primary:       #0ABAB5;
  --clr-primary-dark:  #009692;
  --clr-primary-light: #E6FAF9;
  --clr-primary-bg:    #F0FAFA;
  --clr-secondary:     #FF7043;
  --clr-accent-green:  #4CAF82;
  --clr-dark:          #1A2B4A;
  --clr-dark-2:        #2C3E6B;
  --clr-text:          #333D4D;
  --clr-text-muted:    #6B7280;
  --clr-text-light:    #9CA3AF;
  --clr-white:         #FFFFFF;
  --clr-bg:            #F8FBFB;
  --clr-bg-grey:       #F4F6F9;
  --clr-border:        #E5E7EB;
  --clr-border-light:  #EFF1F4;
  --clr-teal-banner:   #007B7B;
  --clr-teal-dark:     #006666;
  --clr-stat-bg:       #0D6E6E;
  --clr-star:          #FFC107;

  --section-py:    70px;
  --container-max: 1200px;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
}

/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-primary); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   UTILITY
========================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
/* .badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--clr-primary);
  border-radius: 50%;
} */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  font-family: var(--font-primary);
  font-weight: var(--fw-semi);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.btn-primary {
  color: var(--clr-white);
  background: linear-gradient(90deg, #114255 0%, #2D8CA5 100%);
  box-shadow: 0 4px 15px rgba(244,132,95,0.35);
}
.btn-primary:hover { background: var(--clr-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
}
.btn-outline:hover { background: var(--clr-primary); color: var(--clr-white); }
.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
}
.btn-white:hover { background: var(--clr-primary-light); }

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

.section-title {
  font-family: var(--font-primary);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--clr-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--clr-text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lg);
  line-height: 1.5;
  text-align: center;
}

/* =========================================
   NAVBAR
========================================= */
nav {
  background: var(--clr-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: fixed;
  top: 0;
  border-bottom-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  z-index: 100;
  width: 100%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  max-width: 90%;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  color: var(--clr-dark);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    transition: color 0.2s;
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 15px;
    line-height: 1.5;
    color: #114458;
}
.call_btn {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-base);
  line-height: 1.5;
  color: #034A7B;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links a:hover,
.nav-links a.active { color: var(--clr-primary); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #114458;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu (hidden on desktop) */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--clr-white);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.mobile-menu.open {
  max-height: 500px;
  padding: 16px 24px 24px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-primary);
  font-weight: var(--fw-semi);
  font-size: var(--fs-md);
  color: #114458;
  border-bottom: 1px solid var(--clr-border-light);
}
.mobile-menu a:last-child { border-bottom: none; color: #fff;}
.mobile-menu a:hover { color: var(--clr-primary); }
.mobile-cta-btn {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}
.mobile-menu a.call_btn {
    display: flex;
    align-items: center;
}
.mobile-menu a.call_btn img{filter: invert();}
/* First section offset for fixed nav */
nav + * { padding-top: 150px !important; }

/* =========================================
   HERO
========================================= */
.hero {
  background: linear-gradient(90deg, #034A7B 0%, #00A2A9 100%);
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  background: url(images/wave.png) no-repeat center / 100% 100%;
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 54px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10,186,181,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero-left { padding-bottom: 60px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,186,181,0.2);
  border: 1px solid rgba(10,186,181,0.4);
  color: #52B788;
  font-size: var(--fs-lg);
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-badge span {
    color: var(--clr-white);
    width: 6.1019768714904785px;
    height: 6.1019768714904785px;
    border-radius: 3.05px;
    opacity: 0.57;
    background: #52B788;
}
.hero-title {
  color: var(--clr-white);
  margin-bottom: 14px;
  font-family: var(--font-primary);
  font-weight: var(--fw-xbold);
  font-size: 38px;
  line-height: 60px;
  letter-spacing: -1.5px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #74C69D 0%, #52B788 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  max-width: 440px;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 17px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-btn-sm { font-size: var(--fs-sm);}
.btn-primary.hero-btn-sm { font-size: var(--fs-sm); border: 0.8px solid #FFFFFF4D;background: #FFFFFF4D!important;}
.hero-stats { display: flex; gap: 32px; }
.hero-stat-item {
  text-align: left;
  min-width: 140px;
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.2);
}
.hero-stat-num {
  font-family: var(--font-primary);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: 1;
}
.hero-stats .hero-card-icon.green { background: rgba(255,255,255,0.2); }
.hero-stat-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 1rem;
}
.hero-img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.hero-card {
  position: absolute;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-card-icon.green { background: #E8F5E9; }
.hero-card-icon img { width: 21px; }
.hero-card-text { font-family: var(--font-primary); }
.hero-card-num { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--clr-dark); line-height: 1; }
.hero-card-label { font-size: 10px; color: var(--clr-text-muted); }
.hero-card.card-left { left: -20px; top: 60px; }
.hero-card.card-right { right: -10px; top: 120px; }

.star-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 30px; right: -10px;
}
.stars { color: #f4845f; font-size: 25px; line-height: 25px; }
.star-text { font-family: var(--font-primary); font-size: 10px; color: var(--clr-text-muted); }
.star-text strong { display: block; color: var(--clr-dark); font-size: var(--fs-sm); }
.img-placeholder {
  background: linear-gradient(135deg, #e0e7ef 0%, #c8d8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}

/* =========================================
   ABOUT
========================================= */
.about-section {
  padding: 100px 0;
  background: #fff;
}
.about-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 2rem;
}
.about-image {
  flex: 1;
  position: relative;
}
.about-image img {
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border-radius: 30px;
  display: block;
}
.rating-card {
  position: absolute;
  top: -15px; left: -20px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 2;
}
.rating-card .stars { color: #ffb400; font-size: 20px; margin-bottom: 10px; }
.rating-card h3 { color: #034A7B; font-weight: 700; font-size: 20px; line-height: 1.4; }
.rating-card p { color: #777; font-weight: 400; font-size: 12px; line-height: 1.3; }
.experience-card {
  position: absolute;
  right: -20px; bottom: 30px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.experience-card h2 { color: #0d4f84; font-weight: 700; font-size: 30px; line-height: 1.2; }
.experience-card p { color: #777; }
.about-content { flex: 1; }
.about-content .btn { flex: auto; justify-content: center; }

.tag {
  display: inline-block;
  background: #e9f9fc;
  color: #00A2A9;
  padding: 7px 22px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-content h2 {
  color: #0d4f84;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 41px;
  line-height: 1.25;
}
.about-content p { color: #555; font-weight: 400; font-size: 16px; line-height: 1.625; }
.info-boxes { display: flex; gap: 20px; margin-top: 35px; }
.info-box {
  flex: 1;
  background: #f5fbfd;
  border: 1px solid #d8edf3;
  border-radius: 15px;
  padding: 20px;
  color: #0d4f84;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.43;
}
.btn-group { display: flex; gap: 20px; margin-top: 35px; }
.btn-group a { display: flex; white-space: nowrap; align-items: center; gap: 1rem; }
.primary-btn {
  padding: 16px 35px;
  background: linear-gradient(90deg, #0d4f84, #00b6c7);
  color: white;
  border-radius: 50px;
  font-weight: 600;
}
.outline-btn {
  padding: 16px 35px;
  border: 2px solid #00b6c7;
  color: #0d4f84;
  border-radius: 50px;
  font-weight: 600;
}

/* =========================================
   SERVICES
========================================= */
.services-section { padding: 100px 0; }
.section-title {
  margin-top: 0;
  color: #034A7B;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 41px;
  line-height: 1.5;
  text-align: center;
}
.section-title span { color: #65c99b; }
.tab_icns {
  width: 61px; height: 61px;
  border-radius: 31px;
  border: 2px solid #479E9B;
  padding: 10px 11px;
  flex-shrink: 0;
}
.tab_icns img { object-fit: none; }
.section-desc {
  max-width: 800px;
  margin: 20px auto 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
}
.service-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ccc;
}
.tab-btn {
  flex: 1;
  border: 1px solid #e4e4e4;
  background: #fff;
  height: 100px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 22px;
  transition: 0.3s;
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.5;
  color: #214A75;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}
.tab-btn.active { background: #edf8fc; border-color: #4fc3d9; }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}
.service-content { display: flex; align-items: center; gap: 60px; }
.service-text, .service-image { flex: 1; }
.service-image img { width: 100%; border-radius: 24px; display: block; }
.service-text h3 { color: #0b4d83; font-family: var(--font-primary); font-weight: 700; font-size: 35px; line-height: 1.4; }
.service-text h3 span { color: #65c99b; }
.service-text p { margin: 25px 0; font-size: 18px; line-height: 1.6; font-variant: small-caps; text-transform: uppercase; }
.feature-list { display: flex; flex-wrap: wrap; gap: 15px; }
.feature {
  width: fit-content;
  padding: 15px;
  border: 1px solid #ececec;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.16);
}
.btn-primary {
  padding: 16px 35px;
  background: linear-gradient(90deg, #0b4d83, #00b6c7);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
}
.btn-outline {
  padding: 16px 35px;
  border: 2px solid #00b6c7;
  color: #0b4d83;
  text-decoration: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
}

/* =========================================
   CARE SECTION
========================================= */
.care-section { padding: 80px 0; }
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 50px;
}
.section-top h2 { color: #1d4574; font-family: var(--font-primary); font-weight: 700; font-size: 33px; line-height: 1.5; }
.right-content { max-width: 420px; display: flex; flex-direction: column; align-items: flex-end; }
.right-content p { color: #5b6777; margin-bottom: 25px; font-size: 15px; line-height: 1.74; text-align: justify; }
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #479E9B;
  color: #fff;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 600;
}
.care-grid { display: grid; grid-template-columns: 280px 1fr; gap: 15px; }
.featured-card {
  background: #1f4c80;
  border-radius: 24px;
  padding: 35px 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.icon-circle { display: flex; align-items: center; justify-content: center; margin: auto; }
.featured-card h3 { font-weight: 700; font-size: 25px; line-height: 1.55; text-align: center; }
.divider { width: 70px; height: 3px; background: #17d4c0; display: block; margin: 25px auto; }
.featured-card p { color: #fff; font-family: var(--font-body); font-weight: 400; font-size: 12px; line-height: 1.55; text-align: center; }
.ecg-line { width: 100%; }
.ecg-line img { width: 100%; }
.cards-wrapper { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.care-card {
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 20px;
  padding: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  transition: 0.3s;
  position: relative;
}
.care-card:hover { transform: translateY(-4px); }
.care-card > img { width: 105px; height: 105px; border-radius: 50%; object-fit: cover; }
.content { flex: 1; }
.content h4 { color: #1f4574; margin-bottom: 4px; font-weight: 700; font-size: 14px; line-height: 1.74; }
.content p { color: #666D6C; font-family: var(--font-body); font-weight: 400; font-size: 9px; line-height: 1.74; }
.care-card button {
  width: 28px; height: 28px;
  border: none;
  border-radius: 50%;
  background: #58b8ae;
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 1rem; bottom: 1rem;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.care-card button img { width: 12px; }

/* =========================================
   STATS BANNER
========================================= */
.stats-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(15,61,79,0.9) 0%, rgba(26,95,122,0.9) 41%), url(images/bg_impact.png) center/cover no-repeat;
}
.stats-banner-header { text-align: center; margin-bottom: 48px; }
.stats-badge {
  background: #fff;
  color: #1A5D78;
  padding: 5px 26px;
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 16px;
  display: inline-flex;
}
.stats-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 33px;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.8px;
  text-align: center;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: var(--fw-xbold);
  color: var(--clr-white);
  line-height: 1;
}
.stat-label {
  margin-top: 8px;
  font-family: var(--font-primary);
  font-weight: var(--fw-semi);
  font-size: var(--fs-lg);
  line-height: 1.5;
  text-align: center;
  color: #74C69D;
}
.stat-label span {
  display: block;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.55);
  font-size: var(--fs-sm);
  line-height: 1.5;
  text-align: center;
}

/* =========================================
   PROCESS
========================================= */
.process-section { padding: var(--section-py) 0; background: var(--clr-white); }
.process-header { margin-bottom: 48px; }
.steps_wrapper {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  position: relative;
}
.step_card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.step_card:hover { transform: translateY(-8px); }
.step_number {
  position: absolute;
  top: 15px; left: 15px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #034A7B 0%, #00A2A9 100%);
  color: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
  z-index: 2;
}
.step_image { height: 180px; }
.step_image img { width: 100%; height: 100%; object-fit: cover; }
.step_content { padding: 25px; }
.step_icon { margin-bottom: 15px; }
.step_icon img {
    width: 25px;
    height: auto;
}
.step_content h3 { margin-bottom: 10px; color: #034A7B; font-family: var(--font-primary); font-weight: 700; font-size: 17px; line-height: 1.5; }
.step_content p { color: #6A7282; font-family: var(--font-primary); font-weight: 400; font-size: 14px; line-height: 1.625; }
.process-cta { text-align: center; margin-top: 40px; }
.process-cta-btn { font-size: var(--fs-md); }

/* =========================================
   CONTACT / CALLBACK
========================================= */
.call_away_section {
  padding: 80px 20px;
  background: #eef8fb;
  font-family: var(--font-primary);
}
.call_away_container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.call_away_left {
  background: url('images/call-away-bg.jpg') center/cover no-repeat;
  position: relative;
  min-height: 700px;
}
.call_away_overlay {
    width: 100%;
    height: 100%;
    padding: 60px;
    background: linear-gradient(160deg, rgba(3, 74, 123, 0.92) 8%, rgba(0, 162, 169, 0.85) 92%), url(images/just_call_bg.jpg);
    color: #fff;
    background-position: center;
}
.call_away_badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,0.18);
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 25px;
}
.call_away_title { margin-bottom: 20px; font-weight: 700; font-size: 34px; line-height: 1.25; }
.call_away_text { opacity: 0.95; margin-bottom: 40px; font-weight: 400; font-size: 16px; line-height: 1.625; }
.call_away_contact_list { display: flex; flex-direction: column; gap: 20px; list-style: none; padding: 0; font-style: normal; }
.call_away_contact { display: flex; align-items: center; gap: 18px; }
.call_away_contact span { font-weight: 400; font-size: 14px; line-height: 1.43; }
.call_away_icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.call_away_stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 55px;
}
.call_away_stat_box {
  padding: 12px 15px;
  text-align: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
}
.call_away_stat_box h3 { margin-bottom: 8px; font-weight: 900; font-size: 18px; line-height: 1.55; text-align: center; }
.call_away_stat_box p { opacity: 0.9; font-weight: 400; font-size: 12px; line-height: 1.33; text-align: center; }
.call_away_right { padding: 60px; }
.call_away_form_title { font-size: 44px; color: #123d74; margin-bottom: 10px; }
.call_away_form_text { color: #7b7b7b; margin-bottom: 35px; }
.call_away_form { display: flex; flex-direction: column; gap: 22px; }
.call_away_input_group { display: flex; flex-direction: column; }
.call_away_input_group label {
  margin-bottom: 10px;
  color: #123d74;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.call_away_input_group input {
  height: 46px;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 0 20px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  font-family: var(--font-body);
}
.call_away_input_group input:focus { border-color: #009ed8; }
.call_away_btn {
  margin-top: 15px;
  height: 64px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(90deg, #034A7B 0%, #00A2A9 100%);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.call_away_btn:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0,145,180,0.35); }

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials-section { padding: var(--section-py) 0; }
.testimonial-banner {
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 36px;
    text-align: center;
    color: var(--clr-white);
    background: linear-gradient(135deg, rgba(3, 74, 123, 0.85) 0%, rgba(0, 162, 169, 0.75) 100%), url(images/test_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.testimonial-banner-stars { color: rgba(255,255,255,0.9); font-size: 46px; margin-bottom: 12px; line-height: 1; }
.testimonial-banner-text { margin-bottom: 6px; font-family: var(--font-primary); font-weight: 700; font-size: 24px; line-height: 1.33; }
.testimonial-banner-sub { opacity: 0.8; font-family: var(--font-primary); font-weight: 400; font-size: var(--fs-lg); line-height: 1.5; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--clr-border-light);
  box-shadow: 0 1px 2px rgba(0,0,0,0.10);
}
.tc-stars {
    color: #00A2A9;
    margin-bottom: 12px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 13.62px;
    line-height: 19.45px;
    letter-spacing: 0px;
    text-align: justify;
}
.tc-text {
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    font-family: Poppins;
    font-weight: 400;
    font-style: Italic;
    font-size: 13.62px;
    line-height: 22.13px;
    letter-spacing: 0px;
    text-align: justify;
}
.tc-author { display: flex; align-items: center; gap: 10px; }
.tc-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--clr-primary-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  font-size: var(--fs-md);
  flex-shrink: 0;
}
.tc-name { font-family: var(--font-primary); font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--clr-dark); }
.tc-role { font-size: 11px; color: var(--clr-text-muted); }

/* =========================================
   WHY CHOOSE US
========================================= */
.why-section {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, rgba(3, 74, 123, 0.96) 0%, rgba(0, 162, 169, 0.92) 100%), url(images/why_choose_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
}
.why-badge {
  display: block;
  margin: 0 auto 16px;
  width: fit-content;
  background: #fff;
  color: #1A5D78;
  padding: 5px 26px;
  border: 1px solid rgba(255,255,255,0.25);
}
.why-sub { margin-bottom: 40px; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.why-card {
  padding: 28px 24px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
  background: rgba(255,255,255,0.2);
}
.why-card:hover { border-color: var(--clr-primary); box-shadow: var(--shadow-md); }
.why-card-icon { font-size: 32px; margin-bottom: 14px; }
.why-card-title { color: #fff; margin-bottom: 8px; font-family: var(--font-primary); font-weight: 700; font-size: 17px; line-height: 1.5; }
.why-card-desc { color: rgba(255,255,255,0.7); font-family: var(--font-primary); font-weight: 400; font-size: 14px; line-height: 1.625; }
.why-bottom-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  padding: 36px 32px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(10,186,181,0.18);
}
.why-stat { text-align: center; }
.why-stat-num { color: #fff; font-family: var(--font-primary); font-weight: 900; font-size: 31px; line-height: 1.5; text-align: center; }
.why-stat-label { color: #fff; margin-top: 4px; font-family: var(--font-primary); font-weight: 400; font-size: 14px; line-height: 1.43; text-align: center; }

/* =========================================
   FAQ
========================================= */
.faq-section { padding: var(--section-py) 0; background: #F4FAFA; }
.faq-sub { margin-bottom: 40px; }
.faq-list { max-width: 800px; margin: 0 auto 36px; }
.faq-item {
  background: #fff;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  color: #1A5F7A;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-lg);
  line-height: 1.4;
}
.faq-question .faq-icon {
  width: 32px; height: 32px;
  background: #E8F8F2;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-primary);
  font-size: var(--fs-lg);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open { background: #F8FFFE; }
.faq-item.open .faq-icon { background: #1A5F7A; color: var(--clr-white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner { padding: 0 22px 18px; color: var(--clr-text-muted); font-family: var(--font-primary); font-weight: 400; font-size: var(--fs-md); line-height: 1.7; }
.faq-cta { text-align: center; }

/* =========================================
   3 CITIES
========================================= */
.cities-section { padding: var(--section-py) 0; background: var(--clr-white); }
.three_city_card_wrapper {
  max-width: 1200px;
  margin: 3rem auto auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.three_city_card_item {
  flex: 1;
  min-width: 320px;
  background: #fff;
  border: 1px solid rgba(149,157,165,0.2);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: 0.35s;
}
.three_city_card_image { padding: 1rem 1rem 0; }
.three_city_card_item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.three_city_card_image img { width: 100%; height: 175px; object-fit: cover; border-radius: 1rem; }
.three_city_card_icon {
  width: 99px; height: 96px;
  background: #fff;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  margin: -46px auto 5px;
  position: relative;
  z-index: 2;
}
.three_city_card_icon img { width: 80px; background: #fff; border: 4px solid #4db7b4; border-radius: 50%; object-fit: scale-down; padding: 0.5rem; }
.three_city_card_content { padding: 0 30px 35px; }
.three_city_card_content h3 { color: #1f4f82; margin-bottom: 18px; font-family: var(--font-primary); font-weight: 600; font-size: 32px; text-align: center; line-height: normal; }
.three_city_card_content p { color: #6A7282; font-family: var(--font-primary); font-weight: 500; font-size: 12px; line-height: 2.33; text-align: center; margin-bottom: 0; }
.three_city_card_button {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 35px;
  border-radius: 50px;
  background: #f4fbff;
  color: #0c8fb5;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #dce8ef;
  transition: 0.3s;
}
.three_city_card_button:hover { background: linear-gradient(90deg,#0b5b98,#09b7c5); color: #fff; }

/* =========================================
   ABOVE FOOTER CTA
========================================= */
.three_cities_section { background: #034A7B; padding: 70px 20px 0; }
.three_cities_container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.three_cities_left { flex: 1; }
.three_cities_left h2 { color: #034A7B; margin-bottom: 12px; font-family: var(--font-primary); font-weight: 700; font-size: 24px; line-height: 1.5; }
.three_cities_left p { color: #5A8090; font-family: var(--font-body); font-weight: 400; font-size: 15px; line-height: 1.5; }
.three_cities_right { display: flex; align-items: center; gap: 20px; }
.three_cities_right a { text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.three_cities_btn_white {
  padding: 18px 40px;
  background: #fff;
  border-radius: 50px;
  color: #0098c3;
  font-weight: 600;
  border: 1px solid #ddd;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.three_cities_btn_gradient {
  padding: 18px 35px;
  border-radius: 50px;
  background: linear-gradient(90deg,#0d5b96,#00b8c5);
  color: #fff;
  font-weight: 600;
}

/* =========================================
   FOOTER
========================================= */
.footer_section { background: #034A7B; color: #fff; padding: 70px 20px 25px; }
.footer_container { max-width: 1200px; margin: auto; display: flex; justify-content: space-between; gap: 50px; flex-wrap: wrap; }
.footer_column { flex: 1; min-width: 220px; }
.footer_logo { margin-bottom: 20px; }
.footer_about p { color: #b8d1e6; margin-bottom: 25px; font-family: var(--font-primary); font-weight: 400; font-size: 14px; line-height: 1.75; }
.footer_social { display: flex; gap: 12px; }
.footer_social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 8px;
  display: flex; justify-content: center; align-items: center;
  text-decoration: none;
}
.footer_column h4 { margin-bottom: 20px; font-family: var(--font-primary); font-weight: 600; font-size: 14px; line-height: 1.5; letter-spacing: 0.5px; }
.footer_column ul { list-style: none; padding: 0; }
.footer_column ul li {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer_column ul li a { color: #AFBABB; text-decoration: none; transition: 0.3s; font-size: 14px; line-height: 1.5; }
.footer_column ul li a:hover { color: #fff; }
.footer_badge {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  font-size: 14px;
}
.footer_bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer_bottom p { color: rgba(255,255,255,0.5); font-family: var(--font-body); font-weight: 400; font-size: 12px; line-height: 1.33; }
.footer_links { display: flex; gap: 25px; flex-wrap: wrap;position: static; }
.footer_links a { color: rgba(255,255,255,0.4); text-decoration: none; font-family: var(--font-body); font-weight: 500; font-size: 12px; line-height: 1.33; }
.footer_links a:hover { color: #fff; }
.why-sub{color: #fff;}
/* =========================================
   RESPONSIVE — TABLET (max 1200px)
========================================= */
@media (max-width: 1200px) {
  .cards-wrapper { grid-template-columns: repeat(2,1fr); }
  .steps_wrapper { grid-template-columns: repeat(2,1fr); }
}

/* =========================================
   RESPONSIVE — TABLET (max 992px)
========================================= */
@media (max-width: 992px) {
  .stat-label span{font-size: 12px;}
  .stat-item{    padding: 30px 8px;}
  .stat-label{font-size: 11px;}
  .stat-item{min-width: 50%;}
  .stat-num{font-size: 30px;}
  .footer_logo{height: auto;}
  .services-section{padding: 40px 0;}
  .service-image img{height: auto;}
  .btn-group a{justify-content: center;}
  .tab-btn{white-space: nowrap;}
  .about-section .container { flex-direction: column; }
  .about-content h2 { font-size: 35px; }
  .info-boxes, .btn-group { flex-direction: column; }
  .section-top { flex-direction: column; }
  .care-grid { grid-template-columns: 1fr; }
  .cards-wrapper { grid-template-columns: 1fr; }
  .section-top h2 { font-size: 32px; }
  .call_away_container { grid-template-columns: 1fr; }
  .call_away_left { min-height: auto; }
  .call_away_overlay, .call_away_right { padding: 40px; }
  .call_away_title { font-size: 34px; }
  .call_away_form_title { font-size: 34px; }
  .three_cities_container { flex-direction: column; text-align: center; }
  .three_cities_right { justify-content: center; flex-wrap: wrap; }
  .three_city_card_wrapper { justify-content: center; }
  .three_city_card_item { max-width: 400px; }
  .footer_container { gap: 40px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .why-bottom-stats { grid-template-columns: repeat(2,1fr); }
}

/* =========================================
   RESPONSIVE — MOBILE (max 767px)
========================================= */
@media (max-width: 767px) {
  .hero-badge{font-size: 14px;}
  .hero-title{font-size: 32px;line-height: 50px;}
  .stats-banner-header{margin-bottom: 20px;}
  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-inner { padding: 7px 23px; }
  .logo img { width: auto; height: 65px;}
  .about-image img{height: auto;}

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding-bottom: 20px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-stat-item { min-width: auto; }

  /* About */
  .about-image { margin-bottom: 20px; }
  .rating-card { left: 0; }
  .experience-card { right: 0; }

  /* Services */
  .service-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .service-content { flex-direction: column; gap: 24px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Process */
  .steps_wrapper { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-bottom-stats { grid-template-columns: 1fr 1fr; overflow-x: auto; }

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

  /* Cities */
  .three_city_card_item { min-width: 100%; }
  .three_city_card_content h3 { font-size: 28px; }

  /* CTA */
  .three_cities_right { flex-direction: column; width: 100%; }
  .three_cities_btn_white, .three_cities_btn_gradient { width: 100%; text-align: center; justify-content: center; }

  /* Footer */
  .footer_bottom { flex-direction: column; text-align: center; }
  .footer_links { justify-content: center; }

  /* Contact */
  .call_away_overlay, .call_away_right { padding: 25px; }
  .call_away_stats { grid-template-columns: 1fr 1fr; }
  .call_away_title { font-size: 28px; }
  .call_away_form_title { font-size: 28px; }
  .call_away_text { font-size: 16px; }

  /* Typography */
  .section-title { font-size: 28px; line-height: 1.35; }
  .stats-title { font-size: 26px; }
}
