/* ============================================================
   HANSH NURSING CARE — STYLE.CSS
   ============================================================ */

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --secondary: #1e3a8a;
  --accent: #10b981;
  --text: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(14, 165, 233, 0.12);
  --shadow-lg: 0 8px 40px rgba(14, 165, 233, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
}

section, footer {
  overflow-x: hidden;
}

img { max-width: 100%; }
a { text-decoration: none; transition: all .3s; }

.section-pad { padding: 90px 0; }

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 10px; }
.section-header h2 { font-size: 2rem; font-weight: 800; color: var(--secondary); margin: 10px 0 12px; }
.section-header p { color: var(--text-light); max-width: 520px; margin: 0 auto; }
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
  color: var(--primary-dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ---- CUSTOM NAVBAR TOGGLER (MORPHING HAMBURGER-TO-X) ---- */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 36px;
  box-shadow: none !important;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.08);
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar-toggler .toggler-icon {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--primary-dark);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  margin: 0 auto;
}
/* Animation states: Morph to X when active */
.navbar-toggler:not(.collapsed) .top-bar {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar-toggler:not(.collapsed) .middle-bar {
  opacity: 0;
  transform: translateX(-15px);
}
.navbar-toggler:not(.collapsed) .bottom-bar {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: all .3s;
}
#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.12);
}

.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
}
.logo-icon i {
  animation: logoPulse 2.2s infinite ease-in-out;
}
.logo-img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}
.logo-img:hover {
  transform: scale(1.05);
}
@keyframes logoPulse {
  0% { transform: scale(1); }
  14% { transform: scale(1.18); }
  28% { transform: scale(1); }
  42% { transform: scale(1.18); }
  70% { transform: scale(1); }
}
.logo-text { display: block; font-size: 1.1rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.logo-sub { display: block; font-size: .7rem; color: var(--text-light); font-weight: 500; }

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all .3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: rgba(14,165,233,.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.12);
  transition: all .3s;
}
.header-socials a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-appointment {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  box-shadow: 0 4px 15px rgba(14,165,233,.35);
  transition: all .3s;
}
.btn-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14,165,233,.45);
}

/* ============================================================
   MOBILE OFFCANVAS NAV
   ============================================================ */
.mobile-nav-drawer {
  width: min(88vw, 380px);
  background:
    linear-gradient(180deg, rgba(8, 17, 32, 0.98), rgba(15, 23, 42, 0.96)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 40%);
  color: #fff;
  border-right: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 18px 0 50px rgba(2, 6, 23, 0.42);
}
.mobile-nav-header {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}
.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255,255,255,.95);
  padding: 4px;
}
.mobile-brand h5 {
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
}
.mobile-brand small {
  color: rgba(226, 232, 240, 0.72);
  font-weight: 500;
}
.mobile-nav-close {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, .2));
}
.mobile-nav-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav-list {
  gap: 8px;
}
.mobile-nav-list .nav-link {
  color: #e2e8f0 !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 16px !important;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.mobile-nav-list .nav-link:hover,
.mobile-nav-list .nav-link.active {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.14), rgba(30, 58, 138, 0.28));
  color: #fff !important;
  border-color: rgba(56, 189, 248, 0.28);
  transform: translateX(4px);
}
.mobile-nav-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.mobile-nav-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.18);
}
.mobile-nav-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2px;
  border-radius: 18px;
  padding: 14px 18px !important;
}
.offcanvas-backdrop.show {
  opacity: 1;
  background: rgba(2, 6, 23, 0.68);
  backdrop-filter: blur(3px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, #164e63 50%, var(--primary-dark) 100%);
  background-image:
    linear-gradient(135deg, rgba(30,58,138,.92) 0%, rgba(22,78,99,.9) 50%, rgba(2,132,199,.88) 100%),
    url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}
.hero-overlay { display: none; }

.hero-content { padding: 0; }
.hero-row {
  min-height: 100vh;
  padding: 100px 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
  text-align: left;
}
.text-highlight { color: #38bdf8; }
.hero-desc {
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
  max-width: 650px;
  margin-bottom: 14px;
  letter-spacing: normal;
  word-spacing: normal;
}
.hero-trust-line {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  max-width: 650px;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: normal;
  word-spacing: normal;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badges span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.hero-badges span i { color: #4ade80; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-hero-primary {
  background: white;
  color: var(--primary-dark) !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  display: inline-flex; align-items: center;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,.6);
  color: white !important;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex; align-items: center;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.15); border-color: white; }

/* ============================================================
   HERO RIGHT INFO CARDS
   ============================================================ */
.hero-right { display: flex; flex-direction: column; justify-content: center; gap: 20px; }

.hero-info-cards { display: flex; flex-direction: column; gap: 16px; }
.hero-info-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: all .3s;
}
.hero-info-card:hover {
  background: rgba(255,255,255,.2);
  transform: translateX(6px);
}
.hero-info-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white;
  box-shadow: 0 4px 15px rgba(14,165,233,.4);
}
.hero-info-card strong { display: block; color: white; font-weight: 700; font-size: .95rem; }
.hero-info-card span { color: rgba(255,255,255,.7); font-size: .82rem; }

.btn-book-popup {
  position: relative;
  background: white;
  color: var(--primary-dark) !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  box-shadow: 0 10px 28px rgba(3, 105, 161, .22);
  transition: all .3s;
  overflow: hidden;
  width: min(100%, 760px);
  margin-top: 8px;
  align-self: center;
  border: 1px solid rgba(14,165,233,.14);
}
.btn-book-popup:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(3, 105, 161, .28); }

/* ============================================================
   APPOINTMENT MODAL — PREMIUM
   ============================================================ */

/* Modal dialog animation */
.modal.fade .modal-dialog {
  transform: translateY(60px) scale(.97);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  opacity: 0;
}
.modal.show .modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.appt-modal {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(14,165,233,.22), 0 8px 32px rgba(0,0,0,.18);
}

.appt-modal-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #0369a1 60%, #0ea5e9 100%);
  padding: 26px 32px;
  border: none;
  position: relative;
  overflow: hidden;
}
.appt-modal-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.appt-modal-header::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 20%;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

.appt-modal-title { display: flex; align-items: center; gap: 16px; flex: 1; position: relative; z-index: 1; }
.appt-modal-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white; flex-shrink: 0;
  animation: iconPulse 2.5s ease-in-out infinite;
}
@keyframes iconPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.appt-modal-title h5 { color: white; font-weight: 800; margin: 0; font-size: 1.2rem; }
.appt-modal-title span {
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  display: flex; align-items: center; gap: 5px;
  margin-top: 3px;
}
.appt-modal-title span::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}

.appt-modal-body {
  padding: 30px 32px;
  background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
}

.appt-modal-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.appt-modal-badges span {
  background: white;
  color: var(--primary-dark);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 2px 10px rgba(14,165,233,.12);
  border: 1px solid #e0f2fe;
  animation: badgeFadeIn .5s ease both;
}
.appt-modal-badges span:nth-child(1) { animation-delay: .1s; }
.appt-modal-badges span:nth-child(2) { animation-delay: .2s; }
.appt-modal-badges span:nth-child(3) { animation-delay: .3s; }
@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.appt-modal-badges span i { color: var(--primary); }

/* Floating label input wrap */
.appt-input-wrap { position: relative; }
.appt-input-wrap i {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  z-index: 5;
  font-size: .9rem;
  transition: color .3s;
}
.appt-input-wrap i.top-icon { top: 16px; transform: none; }
.appt-input-wrap .form-control,
.appt-input-wrap .form-select {
  padding-left: 42px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: .9rem;
  background: white;
  transition: all .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  height: 50px;
}
.appt-input-wrap textarea.form-control { height: auto; padding-top: 14px; }
.appt-input-wrap .form-control:focus,
.appt-input-wrap .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14,165,233,.1), 0 2px 8px rgba(0,0,0,.04);
  background: #f0f9ff;
  outline: none;
}
.appt-input-wrap:focus-within i { color: var(--secondary); }
.appt-input-wrap textarea { padding-left: 42px !important; }

/* Row stagger animation */
#apptForm .row > div {
  animation: fieldSlideIn .4s ease both;
}
#apptForm .row > div:nth-child(1) { animation-delay: .05s; }
#apptForm .row > div:nth-child(2) { animation-delay: .1s; }
#apptForm .row > div:nth-child(3) { animation-delay: .15s; }
#apptForm .row > div:nth-child(4) { animation-delay: .2s; }
#apptForm .row > div:nth-child(5) { animation-delay: .25s; }
#apptForm .row > div:nth-child(6) { animation-delay: .3s; }
@keyframes fieldSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Remove old appt-card styles since we use modal now */
.appt-card { display: none; }

/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 15px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  border: none;
  box-shadow: 0 6px 20px rgba(14,165,233,.4);
  transition: all .3s;
  position: relative;
  overflow: hidden;
  letter-spacing: .3px;
}
.btn-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s ease;
}
.btn-submit:hover::before { left: 100%; }
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(14,165,233,.5);
  color: white;
}
.btn-submit:active { transform: translateY(0); }

/* Footer note inside modal */
.appt-footer-note {
  text-align: center;
  color: var(--text-light);
  font-size: .78rem;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}
.appt-footer-note i { color: var(--primary); }

/* Premium modal backdrop */
.modal-backdrop.show { backdrop-filter: blur(4px); background: rgba(10,20,50,.65); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -5%;
  width: 250px; height: 250px;
  background: rgba(56, 189, 248, 0.08);
  border-radius: 50%;
}

.stat-card {
  padding: 20px 10px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.stat-card:hover {
  transform: translateY(-8px);
}
.stat-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin: 0 auto 14px;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: statIconFloat 3.5s ease-in-out infinite;
}
.col-6:nth-child(even) .stat-icon {
  animation-delay: 1.75s;
}
.stat-card:hover .stat-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
  animation-play-state: paused; /* Pause floating on hover */
}
@keyframes statIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s;
}
.stat-card:hover .stat-num {
  transform: scale(1.05);
}
.stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: #38bdf8;
  display: inline-block;
  transition: transform 0.3s;
}
.stat-card:hover .stat-plus {
  transform: scale(1.1) rotate(5deg);
}
.stat-label {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  margin-top: 6px;
  font-weight: 500;
  transition: color 0.3s;
}
.stat-card:hover .stat-label {
  color: white;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .35s;
  height: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img-wrap { position: relative; overflow: hidden; height: 200px; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,165,233,.85), transparent);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: all .35s;
}
.service-card:hover .service-overlay { opacity: 1; }
.service-overlay i { font-size: 2rem; color: white; }
.service-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.service-body h5 { font-weight: 700; color: var(--secondary); margin-bottom: 8px; font-size: 1rem; }
.service-body p { color: var(--text-light); font-size: .88rem; line-height: 1.6; flex: 1; }
.btn-service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: .85rem;
  padding: 0;
  margin-top: 14px;
  display: inline-flex; align-items: center;
}
.btn-service-link:hover { color: var(--secondary); letter-spacing: .3px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--bg-light); }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}
.about-badge-float {
  position: absolute;
  bottom: 24px; right: -10px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.about-badge-float i { font-size: 2rem; color: #f59e0b; }
.about-badge-float strong { display: block; font-size: 1.2rem; font-weight: 800; color: var(--secondary); }
.about-badge-float span { font-size: .8rem; color: var(--text-light); }

.about-title { font-size: 2rem; font-weight: 800; color: var(--secondary); line-height: 1.3; margin: 12px 0 18px; }
.about-desc { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.about-list { list-style: none; padding: 0; }
.about-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  color: var(--text);
  font-size: .93rem;
  border-bottom: 1px solid #f1f5f9;
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

.btn-primary-main {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 15px rgba(14,165,233,.35);
  display: inline-flex; align-items: center;
  transition: all .3s;
}
.btn-primary-main:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(14,165,233,.45); }
.btn-outline-main {
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex; align-items: center;
  transition: all .3s;
}
.btn-outline-main:hover { background: var(--primary); color: white !important; }

/* ============================================================
   EQUIPMENT
   ============================================================ */
.equipment-section { background: white; }
.equip-card {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all .3s;
  cursor: pointer;
}
.equip-card:hover {
  border-color: var(--primary);
  background: #f0f9ff;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.equip-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white;
  margin: 0 auto 14px;
}
.equip-card h6 { font-weight: 700; color: var(--secondary); margin-bottom: 6px; font-size: .92rem; }
.equip-card p { color: var(--text-light); font-size: .8rem; margin: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-section { background: var(--bg-light); }
.hiw-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: all .3s;
}
.hiw-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hiw-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: #e0f2fe;
  line-height: 1;
  margin-bottom: -10px;
}
.hiw-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(14,165,233,.3);
}
.hiw-card h5 { font-weight: 700; color: var(--secondary); margin-bottom: 12px; }
.hiw-card p { color: var(--text-light); font-size: .88rem; line-height: 1.7; }
.hiw-arrow {
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.2rem;
  z-index: 2;
  background: white;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

/* ============================================================
   SAFETY
   ============================================================ */
.safety-section { background: white; }
.safety-img-wrap { position: relative; display: inline-block; }
.safety-img {
  border-radius: var(--radius);
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}
.safety-section h2 { font-size: 2rem; font-weight: 800; color: var(--secondary); }
.safety-card {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex; align-items: flex-start; gap: 14px;
  border-left: 3px solid var(--primary);
  transition: all .3s;
}
.safety-card:hover { background: #f0f9ff; transform: translateX(4px); }
.safety-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
}
.safety-card h6 { font-weight: 700; color: var(--secondary); margin-bottom: 4px; font-size: .92rem; }
.safety-card p { color: var(--text-light); font-size: .82rem; line-height: 1.5; margin: 0; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, #0c1c4a 40%, #0f4c81 100%);
  background-image:
    linear-gradient(135deg, rgba(30,58,138,.96), rgba(14,165,233,.9)),
    url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1200&q=80');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
}
.cta-overlay { display: none; }
.cta-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.cta-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-content h2 span { color: #38bdf8; }
.cta-content p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 480px; margin: 0 auto 32px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-outline {
  border: 2px solid rgba(255,255,255,.7);
  color: white !important;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  transition: all .3s;
  display: inline-flex; align-items: center;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.15); border-color: white; }
.btn-cta-solid {
  background: white;
  color: var(--primary-dark) !important;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: all .3s;
  display: inline-flex; align-items: center;
}
.btn-cta-solid:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }

/* ============================================================
   LOCATIONS
   ============================================================ */
.location-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .35s;
  height: 100%;
}
.location-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.location-img-wrap { position: relative; height: 180px; overflow: hidden; }
.location-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.location-card:hover .location-img-wrap img { transform: scale(1.1); }
.location-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,58,138,.7), transparent);
  display: flex; align-items: flex-end; padding: 16px;
}
.location-overlay i { font-size: 1.4rem; color: white; }
.location-body { padding: 20px; text-align: center; }
.location-city-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 10px; display: block; }
.location-body h5 { font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.location-body p { color: var(--text-light); font-size: .85rem; line-height: 1.6; }
.btn-location {
  background: var(--bg-light);
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  margin-top: 12px;
  transition: all .3s;
}
.btn-location:hover { background: var(--primary); color: white !important; }

.location-spot-card {
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(14,165,233,.12);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
  padding: 22px 20px 24px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.location-spot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,165,233,.04), transparent 42%);
  pointer-events: none;
}
.location-spot-image {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin: 0 auto 16px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(30,58,138,.08));
  box-shadow: 0 12px 30px rgba(14,165,233,.12);
}
.location-spot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.location-spot-body {
  position: relative;
  z-index: 1;
}
.location-spot-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 10px 22px rgba(14,165,233,.25);
}
.location-spot-icon i { font-size: 1rem; }
.location-spot-body h5 {
  font-weight: 800;
  color: var(--secondary);
  font-size: 1.08rem;
  letter-spacing: .2px;
  margin-bottom: 8px;
}
.location-spot-body p {
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.7;
  min-height: 60px;
  margin-bottom: 14px;
}
.location-spot-card .btn-location {
  background: linear-gradient(135deg, #eef6ff, #f8fbff);
  border-color: rgba(14,165,233,.2);
  color: var(--primary-dark) !important;
  padding: 10px 24px;
  font-weight: 700;
}
.location-spot-card .btn-location:hover {
  background: var(--primary);
  color: white !important;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-light); }
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  height: 100%;
}
.contact-info-card h5 { font-weight: 700; color: var(--secondary); }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.contact-item strong { display: block; font-size: .82rem; color: var(--text-light); margin-bottom: 4px; font-weight: 600; }
.contact-item a, .contact-item span {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-size: .9rem;
  line-height: 1.6;
}
.contact-item a:hover { color: var(--primary); }

.contact-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-social-links a {
  flex: 1 1 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: var(--secondary);
  font-weight: 600;
  font-size: .9rem;
  transition: all .3s;
}
.contact-social-links a:hover {
  border-color: var(--primary);
  background: #f0f9ff;
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.contact-social-links a i { font-size: 1rem; }

.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form-card h5 { font-weight: 700; color: var(--secondary); }
.contact-form-card .form-control {
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: all .3s;
  font-size: .9rem;
}
.contact-form-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}

.btn-whatsapp {
  background: #25d366;
  color: white !important;
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  transition: all .3s;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.map-wrap iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0f172a; color: rgba(255,255,255,.7); }
.footer-top { padding: 70px 0 50px; }
.footer-brand p { font-size: .88rem; line-height: 1.8; }
.footer-heading {
  color: white;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(14,165,233,.4);
  display: inline-block;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: all .3s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links li a:hover { color: var(--primary); padding-left: 4px; }
.footer-links li a::before { content: '>'; color: var(--primary); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  font-size: .88rem;
}
.footer-contact li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a, .footer-contact li span { color: rgba(255,255,255,.6); }
.footer-contact li a:hover { color: var(--primary); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all .3s;
}
.footer-socials a:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: .84rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom p { margin: 0; }
.footer-bottom i { font-size: .8rem; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btn {
  position: fixed;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: all .3s;
  z-index: 999;
  border: none;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12) !important; }
.float-whatsapp { 
  background: #25d366; 
  color: white; 
  bottom: 140px; 
  right: 24px; 
  animation: floatPulse 2s infinite; 
}
.float-call { 
  background: var(--primary); 
  color: white; 
  bottom: 80px; 
  right: 24px; 
  animation: callPulse 2s infinite 0.5s; 
}

@keyframes floatPulse {
  0% { box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes callPulse {
  0% { box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 0 rgba(14, 165, 233, 0.45); }
  70% { box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 12px rgba(14, 165, 233, 0); }
  100% { box-shadow: 0 4px 20px rgba(0,0,0,.25), 0 0 0 0 rgba(14, 165, 233, 0); }
}
.float-scroll {
  background: var(--secondary);
  color: white;
  bottom: 24px; right: 24px;
  opacity: 0; pointer-events: none;
  transition: all .3s;
}
.float-scroll.visible { opacity: 1; pointer-events: all; }
.float-tooltip {
  position: absolute;
  right: 62px;
  background: rgba(0,0,0,.8);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ============================================================
   TOAST
   ============================================================ */
#toast-wrap {
  position: fixed;
  top: 80px; right: 20px;
  z-index: 9999;
  animation: slideIn .4s ease;
}
.toast-msg {
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .9rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  max-width: 360px;
}
.toast-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.toast-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .about-badge-float { right: 10px; }
  .hiw-arrow { display: none; }
  .hero-section { background-attachment: scroll; }
}

@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  .section-header h2 { font-size: 1.5rem; }
  .hero-title { font-size: 1.95rem; }
  .about-img { height: 320px; }
  .safety-img { height: 300px; }
  .stat-num { font-size: 2rem; }
  .appt-card-body { padding: 18px; }
  .contact-info-card, .contact-form-card { padding: 18px; }
  .cta-section { padding: 66px 0; }

  /* Navbar mobile */
  #mainNav {
    padding: 10px 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(14,165,233,0.08);
  }
  .navbar-brand {
    max-width: 62%;
  }
  .navbar-brand .logo-icon { width: 38px; height: 38px; font-size: 1rem; }
  .navbar-brand .logo-text { font-size: 1rem; }
  .navbar-brand .logo-sub { font-size: 0.65rem; }

  /* Hero mobile */
  .hero-section {
    background-attachment: scroll;
    min-height: auto;
    padding: 0;
    position: relative;
  }
  .hero-row {
    min-height: auto !important;
    padding: 88px 0 42px;
  }
  .hero-container { padding: 0 14px; }
  .hero-content { padding: 0 6px !important; }
  .hero-right { margin-top: 24px; gap: 14px; }
  .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 28%),
      radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.08), transparent 24%);
    pointer-events: none;
  }
  
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: flex-start;
  }
  .hero-badges span {
    font-size: 0.75rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
  }
  .hero-desc { font-size: 16px; line-height: 1.7; max-width: 100%; text-align: left; }
  .hero-trust-line { font-size: 15px; line-height: 1.7; max-width: 100%; text-align: left; }
  .hero-info-cards { gap: 10px; }
  .hero-info-card {
    padding: 14px 14px;
    gap: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
  }
  .hero-info-icon { width: 42px; height: 42px; font-size: 1rem; flex-shrink: 0; }
  .hero-info-card strong { font-size: .86rem; }
  .hero-info-card span { font-size: .74rem; }
  .btn-book-popup {
    padding: 14px 20px;
    font-size: .9rem;
    margin-top: 4px;
    width: 100%;
  }
  
  .hero-btns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
  }
  .hero-btns .btn {
    padding: 12px 16px !important;
    font-size: 0.88rem !important;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    width: 100%;
    margin-top: 0 !important;
  }

  /* Services Horizontal Slider on Mobile */
  #services .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 16px 28px;
    margin-left: -20px;
    margin-right: -20px;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
  }
  #services .row::-webkit-scrollbar {
    display: none;
  }
  #services .col-12 {
    width: 284px;
    flex: 0 0 284px;
    scroll-snap-align: center;
    padding: 0;
  }
  .service-card {
    height: 100%;
    margin-bottom: 0;
    border-radius: 20px;
  }
  .swipe-hint {
    animation: swipeAnim 2s infinite ease-in-out;
  }
  @keyframes swipeAnim {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-4px); }
  }

  /* Touch tactile feedback */
  .btn:active,
  .service-card:active,
  .equip-card:active,
  .location-spot-card:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
  }
  .header-actions { gap: 10px; }
  .header-socials a { width: 34px; height: 34px; }

  /* Stats mobile */
  .stats-section { padding: 38px 0; }
  .stat-card { padding: 16px 8px; }
  .stat-icon { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 10px; }

  /* Appointment modal mobile */
  .appt-modal { border-radius: 16px; }
  .appt-modal-header { padding: 18px 18px; }
  .appt-modal-icon { width: 46px; height: 46px; font-size: 1.2rem; }
  .appt-modal-title h5 { font-size: 1rem; }
  .appt-modal-body { padding: 18px 14px; }
  .appt-modal-badges { gap: 6px; }
  .appt-modal-badges span { padding: 6px 12px; font-size: .72rem; }
  .appt-input-wrap .form-control,
  .appt-input-wrap .form-select {
    height: 46px;
    font-size: .88rem;
    border-radius: 14px;
  }
  .btn-submit { padding: 13px; font-size: .9rem; }

  /* Section headers mobile */
  .section-header h2 { font-size: 1.55rem; }
  /* Service cards mobile */
  .service-img-wrap { height: 170px; }
  .location-spot-card { padding: 18px 16px 20px; border-radius: 22px; }
  .location-spot-image { width: 96px; height: 96px; }
  .location-spot-body p { min-height: auto; }

  /* Contact mobile */
  .map-wrap { margin-top: 16px !important; }

  /* Floating buttons mobile */
  .float-whatsapp { bottom: 130px; right: 16px; width: 46px; height: 46px; font-size: 1.15rem; }
  .float-call { bottom: 76px; right: 16px; width: 46px; height: 46px; font-size: 1.15rem; }
  .float-scroll { bottom: 20px; right: 16px; width: 40px; height: 40px; font-size: 1rem; }
  .float-tooltip { display: none; }

  /* Footer mobile */
  .footer-top { padding: 40px 0 30px; }
  .footer-heading { font-size: .88rem; }
}

@media (max-width: 575px) {
  .navbar-brand { max-width: 70%; }
  .navbar-brand .logo-wrap { gap: 8px; }
  .navbar-brand .logo-img { height: 38px !important; }
  .hero-badges {
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 6px !important;
  }
  .hero-badges span {
    font-size: 0.72rem !important;
    padding: 5px 10px !important;
  }
  .hero-btns {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .hero-btns .btn {
    width: 100% !important;
    text-align: center;
    justify-content: center;
    padding: 12px 20px !important;
  }
  .header-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; margin-top: 10px; }
  .header-socials { justify-content: center; }
  .about-badge-float { display: none; }

  /* Extra small screens */
  .hero-title { font-size: 1.55rem; }
  .btn-hero-primary, .btn-hero-outline { padding: 12px 22px; font-size: .92rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .equip-card { padding: 18px 10px; }
  .equip-icon { width: 52px; height: 52px; font-size: 1.2rem; }
  .hiw-card { padding: 24px 16px; }
  .modal-dialog { margin: 8px; }
  .float-whatsapp { bottom: 122px; right: 14px; }
  .float-call { bottom: 68px; right: 14px; }
  .float-scroll { bottom: 16px; right: 14px; }
}

/* ============================================================
   TEAM / LEADERSHIP
   ============================================================ */
.team-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 165, 233, 0.12) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary) !important;
}
.team-avatar {
  background: rgba(14, 165, 233, 0.08);
  border: 2px solid rgba(14, 165, 233, 0.15);
  transition: all 0.3s ease;
}
.team-card:hover .team-avatar {
  background: var(--primary);
  color: white !important;
  transform: scale(1.05);
}

/* ============================================================
   MOBILE RESPONSIVENESS REDESIGN
   ============================================================ */

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 1050;
}
.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  gap: 8px;
}
.sticky-call {
  background: var(--primary);
  color: white;
}
.sticky-whatsapp {
  background: #25D366;
  color: white;
}
.sticky-btn:hover { color: white; opacity: 0.9; }

/* Hero Service List */
.hero-service-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 1.1rem;
}
.hero-service-list li {
  display: flex;
  align-items: center;
  color: #334155;
  font-weight: 500;
}

@media (max-width: 991px) {
  body { padding-bottom: 52px; /* Space for sticky bar */ }
  .section-pad { padding: 32px 16px; } /* Minimum 16px side padding, 32px vertical */
  
  /* Typography Adjustments */
  .hero-title { font-size: 36px !important; line-height: 1.25; }
  h2, .section-header h2 { font-size: 32px !important; }
  h3, h4 { font-size: 24px !important; }
  h5 { font-size: 22px !important; }
  p, .about-desc, .hero-desc { font-size: 16px !important; }
  .btn { font-size: 16px !important; }

  .hero-service-list {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 1rem;
  }
  
  /* Trust Badges */
  .mobile-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
  }
  .mobile-grid span {
    width: 100% !important;
    justify-content: flex-start !important;
    font-size: 13px !important;
    margin: 0 !important;
  }

  /* Full Width Buttons */
  .w-100-mobile {
    width: 100% !important;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }
  .hero-btns {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  
  /* Service & Location Cards */
  .service-card, .location-spot-card {
    margin-bottom: 16px;
    padding: 24px 16px;
  }
}
