/* Palette G variables */
:root{
  --bg-900: #0F0F0F;
  --bg-800: #1A1A1A;
  --accent: #3AB4FF;
  --accent-2:#77EFFF;
  --text:   #F5F5F5;
  --muted:  #CCCCCC;
  --border: #2D2D2D;
  --radius: 8px;
  --transition: 200ms ease;
  --max-width: 1200px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: var(--bg-900);
  color: var(--text);
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.header-inner{
  max-width:var(--max-width);
  margin:0 auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
}

/* LEFT: logo */
.site-logo{
  font-weight:800;
  color:var(--accent);
  padding:6px 10px;
  border-radius:6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent);
  border:1px solid transparent;
  order:1;
}

/* CENTER: nav - absolutely centered so it doesn't shift */
.site-nav{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  display:block;
  order:2;
}
.nav-list{
  display:flex;
  gap:22px;
  align-items:center;
  list-style:none;
  margin:0;
  padding:0;
}
.nav-list a, .dropdown-link{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  padding:8px 6px;
  border-radius:6px;
  transition: background var(--transition), color var(--transition);
}
.nav-list a:hover, .dropdown-link:hover{ background: rgba(255,255,255,0.03) }

/* Dropdown stable on hover */
.nav-item{ position:relative; }
.dropdown-menu{
  position:absolute;
  top:46px;
  left:0;
  min-width:220px;
  background:var(--bg-800);
  border-radius:8px;
  border:1px solid var(--border);
  padding:8px 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  opacity:0;
  visibility:hidden;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  z-index:1200;
}
.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}
.dropdown-menu li{ padding:6px 10px; }
.dropdown-menu a{ color:var(--muted); display:block; text-decoration:none; font-weight:500; }
.dropdown-menu a:hover{ color:var(--text); }

/* RIGHT: header-right */
.header-right{
  margin-left:auto;
  display:flex;
  gap:12px;
  align-items:center;
  order:3;
}

/* login button */
.login-btn{
  background:transparent;
  color:var(--accent);
  border:1px solid var(--accent);
  padding:8px 14px;
  border-radius:8px;
  font-weight:700;
  cursor:pointer;
  transition: all var(--transition);
}
.login-btn:hover{ background:var(--accent); color:#0F0F0F; box-shadow: 0 8px 30px rgba(58,180,255,0.08); }

/* HAMBURGER (MOBILE ONLY)
   Full 3-line symbol inside a square button */
.hamburger{
  width:48px;
  height:48px;
  display:none;             /* shown only on mobile via media query */
  align-items:center;
  justify-content:center;
  background:transparent;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.04);
  cursor:pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.hamburger:hover{ background: rgba(255,255,255,0.02); transform: translateY(-1px); }

/* three wide bars */
.hamburger-bars{ display:inline-block; width:22px; height:18px; position:relative; }
.bar{
  display:block;
  width:100%;
  height:2.5px;
  background:var(--text);
  border-radius:3px;
  position:absolute;
  left:0;
  transition: transform 220ms ease, opacity 220ms ease;
}
.bar1{ top:0; }
.bar2{ top:7.75px; } /* center */
.bar3{ bottom:0; }

/* When menu open we hide header hamburger (we also keep it accessible) */
.hamburger.hidden{ display:none !important; }

/* mobile menu center modal */
.mobile-menu{
  position:fixed;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%) scale(0.92);
  width:92%;
  max-width:520px;
  max-height:90vh;
  overflow:auto;
  background: linear-gradient(180deg,var(--bg-800), var(--bg-900));
  border-radius:12px;
  border:1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0,0,0,0.7);
  opacity:0;
  visibility:hidden;
  transition: transform 220ms ease, opacity 220ms ease, visibility 220ms;
  z-index:1400;
  padding:18px;
}
.mobile-menu.open{
  opacity:1;
  visibility:visible;
  transform: translate(-50%,-50%) scale(1);
}

/* mobile-top bar (close + logo) */
.mobile-top{ display:flex; align-items:center; justify-content:flex-end; gap:8px; margin-bottom:8px; }

/* CLOSE button styling (prominent, nice) */
.mobile-close{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:var(--text);
  width:44px;
  height:44px;
  border-radius:10px;
  font-size:20px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: background 140ms ease, transform 120ms ease;
}
.mobile-close:hover{ background: rgba(255,255,255,0.02); transform: translateY(-2px); }
.mobile-logo{ margin-left: auto; color:var(--accent); font-weight:800; }

/* mobile nav */
.mobile-nav-list{ list-style:none; padding:0; margin:6px 0 0; display:flex; flex-direction:column; gap:6px; }
.mobile-nav-list a, .mobile-sub-toggle{
  display:block;
  padding:12px 10px;
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  border-radius:8px;
}
.mobile-nav-list a:hover, .mobile-sub-toggle:hover{ background: rgba(255,255,255,0.03) }
.mobile-submenu{ display:none; padding-left:12px; margin-top:6px; }
.mobile-with-sub.open .mobile-submenu{ display:block; }

/* MAIN + HERO */
.main-content{ max-width:var(--max-width); margin:28px auto; padding:0 20px; }
.hero{ background: linear-gradient(135deg, rgba(58,180,255,0.06), rgba(119,239,255,0.02)); border: 1px solid var(--border); padding:40px; border-radius:12px; text-align:center; }
.hero h1{ margin:0 0 8px; font-size:32px; color:var(--text); }
.cta{ display:inline-block; padding:12px 22px; border-radius:10px; background:var(--accent); color:#0F0F0F; text-decoration:none; font-weight:700; }

/* FOOTER */
.site-footer{ border-top:1px solid var(--border); margin-top:44px; padding:28px 20px; color:var(--muted); }
.footer-inner{ max-width:var(--max-width); margin:0 auto; display:flex; gap:20px; align-items:flex-start; justify-content:space-between; }
.footer-links{ display:flex; gap:28px; }

/* RESPONSIVE RULES: show hamburger only on mobile, hide header nav */
@media (max-width:900px){
  .site-nav{ display:none; }   /* hide desktop nav on small screens */
  .hamburger{ display:flex; }  /* show hamburger on mobile */
  .login-btn{ display:none; }  /* login inside mobile menu */
  .header-inner{ padding:12px 12px; }
}
@media (max-width:480px){
  .mobile-menu{ max-width:420px; }
  .hero h1{ font-size:24px; }
}






/* =========================================
   MOBILE RESPONSIVE NAV (ONLY MOBILE)
   ========================================= */
@media (max-width: 900px) {

  /* full dark clean header */
  .site-header {
    background: #0F0F0F;
    border-bottom: none;
  }

  .header-inner {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* show hamburger, hide desktop nav */
  .site-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 10px;
    border: none;
  }

  .hamburger-bars .bar {
    background: #fff !important;
  }

  /* logo left */
  .site-logo {
    order: 1;
    font-size: 20px;
    padding: 6px 12px;
    border: none;
    background: none;
  }

  /* login hidden (in menu instead) */
  .login-btn {
    display: none !important;
  }

  /* =========================================
     MOBILE MENU (CENTER MODAL, DARK, CLEAN)
     ========================================= */
  .mobile-menu {
    background: rgba(0, 0, 0, 0.95) !important;
    border: none !important;
    box-shadow: 0 0 0 transparent !important;
    padding: 20px;
    width: 92%;
    max-width: 420px;
    border-radius: 14px;
  }

  /* top row inside mobile menu */
.mobile-top {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* close button left */
  gap: 12px;
}

/* close button left */
.mobile-close {
  order: 1;
  margin-right: 0;
}

/* logo right */
.mobile-logo {
  order: 2;
  margin-left: auto; /* pushes logo to right */
}


  /* =========================================
     MENU LIST ITEMS
     ========================================= */
  .mobile-nav-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-nav-list a,
  .mobile-sub-toggle {
    padding: 14px 12px;
    font-size: 16px;
    color: #fff !important;
    background: #111 !important;
    border-radius: 10px;
    border: none !important;
  }

  .mobile-submenu {
    background: none !important;
    padding-left: 14px;
    margin-top: 4px;
  }

  .mobile-submenu a {
    background: #181818 !important;
    padding: 12px;
    border-radius: 8px;
  }
}


/* Mobile Login Hover = Same as Desktop */
.mobile-login {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1px solid var(--accent) !important;
  text-align: center;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 700;
  display: block;
  margin-top: 8px;
  transition: all 200ms ease;
}

.mobile-login:hover {
  background: var(--accent) !important;
  color: #0F0F0F !important;
  box-shadow: 0 8px 30px rgba(58,180,255,0.15);
}







/* =========================
   HEALTH & CARE FOOTER
   ========================= */
.hc-footer {
  background: linear-gradient(180deg, #071226 0%, #071226 100%); /* deep navy */
  color: #dbeefa; /* soft pale */
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 48px 20px 20px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.hc-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
  align-items: start;
}

/* columns */
.hc-col { min-width: 0; }

.hc-logo-placeholder {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:110px;
  height:40px;
  font-weight:800;
  color:#071226;
  background: linear-gradient(90deg, #d4f3ff 0%, #3ab4ff 100%);
  border-radius:8px;
  letter-spacing:0.6px;
  margin-bottom:16px;
}

/* description */
.hc-desc {
  color: rgba(219,238,250,0.9);
  line-height:1.6;
  font-size:15px;
  margin:0 0 6px 0;
  max-width: 340px;
}

/* titles */
.hc-title {
  font-size:24px;
  margin: 0 0 14px 0;
  color: #ffffff;
  font-weight:700;
}

/* links lists */
.hc-links-list,
.hc-services-list {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.hc-links-list a,
.hc-services-list a {
  color: rgba(219,238,250,0.92);
  text-decoration:none;
  font-weight:500;
  transition: color 160ms ease, transform 160ms;
}
.hc-links-list a:hover,
.hc-services-list a:hover {
  color: var(--accent);
  transform: translateX(6px);
}

/* newsletter */
.hc-newsletter {
  margin-top:18px;
  display:flex;
  gap:8px;
  align-items:center;
}
.hc-newsletter input[type="email"]{
  flex:1;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  outline:none;
}
.hc-newsletter input::placeholder{ color: rgba(255,255,255,0.4); font-weight:500; }
.hc-newsletter .hc-send{
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #071226;
  border:none;
  padding:10px 12px;
  border-radius:8px;
  cursor:pointer;
  font-weight:700;
}

/* social buttons */
.hc-social { margin-top:12px; display:flex; gap:10px; }
.hc-social-btn{
  display:inline-flex;
  width:38px;
  height:38px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.04);
  color: #fff;
  text-decoration:none;
  font-weight:700;
  border: 1px solid rgba(255,255,255,0.03);
  transition: background 160ms ease, transform 120ms ease;
}
.hc-social-btn:hover{
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color:#071226;
  transform: translateY(-4px);
}

/* bottom bar */
.hc-footer-bottom {
  max-width:1200px;
  margin: 22px auto 0;
  padding-top:18px;
  border-top: 1px solid rgba(255,255,255,0.03);
  text-align:center;
  color: rgba(219,238,250,0.7);
  font-size:14px;
}

/* small screen: stack columns */
@media (max-width:900px){
  .hc-footer {
    padding: 28px 16px 18px;
  }
  .hc-footer-inner {
    grid-template-columns: 1fr;
  }
  .hc-logo-placeholder{
    width:100px;
    height:36px;
  }
  .hc-desc { max-width: none; }
  .hc-newsletter { flex-direction: column; align-items: stretch; }
  .hc-newsletter .hc-send { width: 56px; align-self: flex-end; margin-top:8px; }
  .hc-social { justify-content: flex-start; }
  .hc-footer-bottom { padding-top:12px; font-size:13px; }
}

/* utility for screen-reader-only labels (used earlier) */
.sr-only {
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}


.hc-col-about img {
  width: 100px;      /* adjust size here */
  height: auto;
  display: block;
  margin-bottom: 16px;
}


.site-logo img {
  width: 100px;     /* adjust as you like */
  height: auto;
  display: block;
}



.hc-social-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}




/* =========================
   HERO - Animated (Palette G)
   ========================= */
.hero-animated { padding: 48px 20px; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
}

/* LEFT copy */
.hero-copy { padding-right: 8px; }
.hero-kicker {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.hero-title {
  font-size: 40px;
  margin: 0 0 12px;
  line-height: 1.02;
  color: var(--text);
  font-weight: 800;
}
.hero-title .neon {
  color: var(--accent);
  text-shadow: 0 4px 28px rgba(58,180,255,0.12);
}

/* sub */
.hero-sub { color: var(--muted); margin-bottom: 18px; max-width: 640px; }

/* CTAs */
.hero-ctas { display:flex; gap:12px; align-items:center; margin-bottom:18px; }
.btn { display:inline-flex; align-items:center; justify-content:center; padding:10px 16px; border-radius:10px; cursor:pointer; font-weight:700; text-decoration:none; border:1px solid transparent; }
.btn-primary {
  background: var(--accent);
  color: #0F0F0F;
  box-shadow: 0 10px 30px rgba(58,180,255,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(58,180,255,0.16); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.04); }
.btn.small { padding:8px 12px; font-size:14px; border-radius:8px; }
.btn.outline { background:transparent; color:var(--text); border:1px solid rgba(255,255,255,0.06); }

/* Trust badges */
.hero-trust { display:flex; gap:18px; margin-top:10px; }
.trust-item { text-align:left; }
.trust-number { font-size:20px; font-weight:800; color:var(--accent); }
.trust-label { color:var(--muted); font-size:13px; margin-top:4px; }

/* RIGHT visual */
.hero-visual { display:flex; align-items:center; justify-content:center; }
.pulse-bg { position: relative; width:100%; display:flex; align-items:center; justify-content:center; }
.pulse-bg::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(58,180,255,0.08), transparent 40%);
  filter: blur(18px);
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%{ transform: translateY(0);}50%{transform: translateY(-8px);}100%{transform: translateY(0);} }

/* decorative heart SVG */
.heart-svg { width:92px; height:92px; color: var(--accent); position:absolute; top:-24px; right:-14px; z-index:1; opacity:0.9; transform: scale(1); animation:heartPulse 1.6s infinite; }
@keyframes heartPulse { 0%{ transform:scale(0.98);} 50%{transform:scale(1.06);}100%{transform:scale(0.98);} }

/* card */
.hero-card {
  position: relative;
  z-index: 2;
  width: 320px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.6);
  color: var(--text);
}
.card-head .card-title { font-weight:800; color:var(--text); font-size:16px; }
.card-sub { font-size:13px; color:var(--muted); margin-bottom:12px; }
.card-stats { display:flex; gap:12px; justify-content:space-between; color:var(--muted); margin-bottom:12px; }
.card-actions { display:flex; gap:10px; }

/* DRAWER booking (center modal slide up) */
.booking-drawer {
  position: fixed;
  left: 50%;
  top: 56%;
  transform: translate(-50%, 12%) scale(0.96);
  width: 92%;
  max-width: 420px;
  background: rgba(11,11,11,0.98);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  padding: 18px;
  z-index: 1600;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms;
}
.booking-drawer.open { opacity: 1; visibility: visible; transform: translate(-50%, -8%) scale(1); }

.drawer-inner h3 { margin: 0 0 12px; color: var(--text); }
.quick-book-form label { display:block; margin-bottom:10px; color:var(--muted); font-size:14px; }
.quick-book-form input, .quick-book-form select { width:100%; padding:10px; border-radius:8px; background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.04); color:var(--text); outline:none; }

.drawer-actions { display:flex; gap:10px; margin-top:8px; }
.drawer-close { position:absolute; right:12px; top:8px; background:transparent; border:none; color:var(--muted); }

/* booking success */
.booking-success { text-align:center; color:var(--text); padding:10px; }

/* responsive */
@media (max-width: 900px){
  .hero-inner { grid-template-columns: 1fr; gap:18px; padding-top: 12px; }
  .hero-visual { order: 2; }
  .hero-copy { order: 1; }
  .pulse-bg::before { width: 200px; height:200px; }
  .hero-card { width: 92%; margin: 0 auto; }
  .hero-title { font-size: 26px; }
}



/* Card Action Buttons */
.card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 180ms ease;
}

/* Primary small button (Book) */
.card-actions .btn.small {
  background: var(--accent);
  color: #0F0F0F;
  border: 1px solid var(--accent);
  box-shadow: 0 8px 24px rgba(58,180,255,0.12);
}

.card-actions .btn.small:hover {
  background: #0F0F0F;
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(58,180,255,0.12);
  transform: translateY(-2px);
}

/* Outline button (Chat) */
.card-actions .btn.outline.small {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text);
}

.card-actions .btn.outline.small:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}



/* =========================
   FOOTER BASE STYLE
========================= */
.hc-footer {
  background: #0d1b2a;
  color: #fff;
  padding: 50px 20px 30px;
  margin-top: 60px;
}

.hc-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Columns */
.hc-col {
  flex: 1;
  min-width: 250px;
}

.hc-col-about img {
  width: 120px;
  margin-bottom: 15px;
}

.hc-desc {
  margin-top: 10px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Titles */
.hc-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffd166;
}

/* Links */
.hc-links-list,
.hc-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-links-list li,
.hc-services-list li {
  margin-bottom: 8px;
}

.hc-links-list a,
.hc-services-list a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.3s;
}

.hc-links-list a:hover,
.hc-services-list a:hover {
  color: #ffd166;
  opacity: 1;
}

/* Newsletter */
.hc-newsletter {
  margin-top: 15px;
  display: flex;
  gap: 8px;
}

.hc-newsletter input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.hc-send {
  background: #ffd166;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

.hc-send:hover {
  background: #fff;
  color: #0d1b2a;
}

/* Social Icons */
.hc-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.hc-social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #142c44;
  border-radius: 8px;
  color: #fff;
  transition: 0.3s;
}

.hc-social-btn:hover {
  background: #ffd166;
  color: #0d1b2a;
}

/* Footer Bottom */
.hc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  opacity: 0.75;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hc-footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hc-col {
    max-width: 100%;
  }

  .hc-col-about img {
    margin: 0 auto 10px;
    display: block;
  }

  .hc-newsletter {
    flex-direction: column;
    width: 100%;
  }

  .hc-newsletter input {
    width: 100%;
  }

  .hc-send {
    width: 100%;
  }

  .hc-social {
    justify-content: center;
  }
}



.about-main {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #444;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0d1b2a;
  color: gold;
  border: 2px solid white;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 600;
}

.about-btn:hover {
  background: gold;
  color: #0d1b2a;
}



/* ============================
   MOBILE RESPONSIVE (max 768px)
   ============================ */
@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }

  .about-img img {
    max-width: 100%;
    width: 100%;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* =============================
   EXTRA SMALL DEVICES (max 480px)
   ============================= */
@media (max-width: 480px) {

  .about-main {
    padding: 60px 0;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
  }

  .about-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}



/* ---------- Shared container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== WHY CHOOSE US ========== */
.why-choose { padding: 60px 0; background: #fff; color: #0d1b2a; }
.why-header { text-align: center; max-width: 780px; margin: 0 auto 36px; }
.why-header h3 { font-size: 30px; margin-bottom: 10px; color: #0d1b2a; }
.why-header p { color: #58606a; font-size: 16px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* single feature */
.feature {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(13,27,42,0.06);
  text-align: left;
}
.feature-icon {
  width: 56px;
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  border-radius:10px;
  background: linear-gradient(180deg,#0d1b2a,#122833);
  color: gold;
  margin-bottom: 14px;
}
.feature h4 { margin: 0 0 8px; font-size:18px; color:#0d1b2a; }
.feature p { margin:0; color:#556066; font-size:14px; line-height:1.5; }

/* ========== MISSION & VISION ========== */
.mission-vision { padding: 70px 0; background: #0d1b2a; color: gold; }
.mv-grid { display: grid; grid-template-columns: 1fr 420px; gap: 36px; align-items: center; }
.mv-text h3 { color: gold; font-size: 26px; margin-bottom: 8px; }
.mv-text p { color: #f2e9cc; font-size: 16px; margin-bottom: 18px; line-height:1.6; }
.mv-cta { display:inline-block; padding: 10px 18px; border-radius: 8px; border: 2px solid gold; color: gold; background: transparent; font-weight:600; text-decoration:none; transition: .25s; }
.mv-cta:hover { background: gold; color: #0d1b2a; }

/* image */
.mv-image img { width: 100%; max-width: 420px; border-radius: 12px; box-shadow: 0 12px 30px rgba(0,0,0,0.35); }

/* small tweaks */
.btn-outline { border: 2px solid gold; color: gold; padding: 10px 16px; border-radius: 8px; background: transparent; text-decoration: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; text-align: center; }
  .mv-image { order: -1; } /* image above text on tablet */
  .mv-image img { margin: 0 auto; }
}

@media (max-width: 480px) {
  .why-choose { padding: 40px 0; }
  .why-header h3 { font-size: 22px; }
  .features-grid { gap: 16px; grid-template-columns: 1fr; }
  .feature { padding: 18px; text-align: center; }
  .feature-icon { margin: 0 auto 12px; }
  .mission-vision { padding: 40px 0; }
  .mv-text h3 { font-size: 20px; }
  .mv-text p { font-size: 15px; }
  .mv-cta { margin-top: 12px; display:inline-block; }
}




/* ---------- TEAM SECTION ---------- */
.team-section { padding: 70px 0; background: #fff; color: #0d1b2a; }
.team-head { text-align: center; max-width: 900px; margin: 0 auto 36px; }
.team-head h3 { font-size: 30px; color: #0d1b2a; margin-bottom: 8px; }
.team-head p { color: #596169; font-size: 15px; }

/* grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

/* member card */
.team-member {
  background: linear-gradient(180deg,#fbfdff,#ffffff);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(13,27,42,0.06);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform .28s ease, box-shadow .28s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13,27,42,0.12);
}

/* photo */
.tm-photo {
  flex: 0 0 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(13,27,42,0.06);
}
.tm-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* info */
.tm-info { flex: 1; }
.tm-info h4 { margin: 0 0 6px; font-size: 18px; color: #0d1b2a; }
.tm-role { margin: 0 0 8px; color: #a58b3b; font-weight: 600; font-size: 13px; }
.tm-bio { margin: 0 0 10px; color: #52606a; font-size: 14px; line-height: 1.4; }

/* socials */
.tm-socials { display: flex; gap: 10px; }
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(13,27,42,0.06);
  color: #0d1b2a;
  text-decoration: none;
  transition: background .18s, color .18s, transform .18s;
}
.social:hover { background: #a58b3b; color: #0d1b2a; transform: translateY(-2px); }
.social svg { display: block; }

/* small screens */
@media (max-width: 992px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 480px) {
  .team-section { padding: 40px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .team-member { flex-direction: row; align-items: center; padding: 16px; }
  .tm-photo { width: 72px; height: 72px; flex: 0 0 72px; }
  .tm-info h4 { font-size: 16px; }
  .tm-bio { display: none; } /* hide long bio on tiny devices for compactness */
}




/* ========== TESTIMONIALS ========== */
.testimonials-section { padding: 70px 0; background: #f7fbfc; color: #0d1b2a; }
.test-head { text-align: center; max-width: 820px; margin: 0 auto 32px; }
.test-head h3 { font-size: 28px; color: #0d1b2a; margin-bottom: 8px; }
.test-head p { color: #596169; font-size: 15px; }

/* grid */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

/* card */
.test-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(13,27,42,0.06);
  border-left: 4px solid #a58b3b; /* gold accent */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .28s ease, box-shadow .28s ease;
  outline: none;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp .6s ease forwards;
}
.test-card:hover, .test-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,27,42,0.10);
}

/* quote text */
.quote {
  font-size: 15px;
  line-height: 1.7;
  color: #334149;
  margin: 0 0 18px;
  position: relative;
  padding-left: 10px;
}

/* meta (photo + name + rating) */
.test-meta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.test-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(13,27,42,0.06);
  border: 2px solid #fff;
}
.meta-text strong { display:block; color:#0d1b2a; font-size:14px; }
.meta-role { display:block; color:#7a878d; font-size:13px; line-height:1; }
.rating { margin-left: auto; color: #a58b3b; font-weight:700; letter-spacing: .5px; }

/* cta */
.test-cta { text-align: center; margin-top: 28px; }
.btn-primary {
  background: #0d1b2a;
  color: gold;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid white;
}
.btn-primary:hover { background: gold; color: #0d1b2a; }

/* simple staggered animation delay for each card */
.test-card:nth-child(1) { animation-delay: 0.05s; }
.test-card:nth-child(2) { animation-delay: 0.18s; }
.test-card:nth-child(3) { animation-delay: 0.32s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .test-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .testimonials-section { padding: 40px 0; }
  .test-grid { grid-template-columns: 1fr; gap: 16px; }
  .test-head h3 { font-size: 22px; }
  .quote { font-size: 15px; }
  .test-photo { width: 48px; height: 48px; }
  .rating { font-size: 14px; }
}




/* ========== STATS / NUMBERS ========== */
.stats-section { padding: 70px 0; background: linear-gradient(180deg,#f8fafb,#ffffff); color: #0d1b2a; }
.stats-head { text-align: center; max-width: 820px; margin: 0 auto 28px; }
.stats-head h3 { font-size: 28px; color: #0d1b2a; margin-bottom: 8px; }
.stats-head p { color: #596169; font-size: 15px; }

/* grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 18px auto 0;
  align-items: start;
}

/* single stat */
.stat {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(13,27,42,0.05);
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* value + label */
.stat-value {
  font-size: 34px;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: -0.02em;
}
.stat-label {
  color: #6a757d;
  font-size: 13px;
  margin-top: 6px;
}

/* progress bar */
.stat-bar {
  height: 8px;
  background: #eef3f5;
  border-radius: 6px;
  margin-top: 14px;
  overflow: hidden;
}
.stat-fill {
  height: 100%;
  width: 0%;
  border-radius: 6px;
  background: linear-gradient(90deg, #a58b3b, #d4af37);
  transition: width 1.2s ease;
}

/* note */
.stats-note { text-align: center; margin-top: 18px; color: #67787f; font-size: 14px; }

/* responsive */
@media (max-width: 992px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { min-height: 120px; }
  .stat-value { font-size: 28px; }
}

@media (max-width: 480px) {
  .stats-section { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .stat { padding: 14px; text-align: left; display: flex; gap: 10px; align-items: center; }
  .stat-value { font-size: 22px; }
  .stat-label { font-size: 13px; }
  .stat-bar { margin-top: 0; flex: 1; margin-left: 12px; }
}


/* ---------- MOBILE / OVERFLOW FIXES (paste at the END of your CSS) ---------- */

/* Prevent any accidental horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Make all images truly responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure containers respect padding and don't overflow */
.container,
.about-container,
.wrap,
.features-grid,
.team-grid,
.test-grid,
.mv-grid {
  box-sizing: border-box;
  padding-inline: 16px; /* keeps inner spacing on very small screens */
}

/* Allow flex/grid children to shrink and not force overflow */
.feature,
.team-member,
.tm-photo,
.tm-info,
.test-card,
.mv-image,
.about-img,
.about-content {
  min-width: 0; /* IMPORTANT: prevents flex children from overflowing on small screens */
}

/* Reduce large fixed widths on smaller devices */
@media (max-width: 992px) {
  .mv-grid { grid-template-columns: 1fr; gap: 20px; padding-inline: 12px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* Tablet → mobile */
@media (max-width: 768px) {
  .about-container { padding-inline: 16px; gap: 22px; }
  .about-img img { max-width: 100%; width: 100%; height: auto; margin: 0 auto; }
  .mv-image img { max-width: 100%; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .team-grid { grid-template-columns: 1fr; gap: 16px; }
  .test-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Reduce big horizontal shadows/offsets that may create extra width */
  .team-member,
  .feature,
  .test-card {
    margin-inline: 0;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  body { padding-inline: 8px; } /* tiny page padding so nothing touches the edge */
  .about-main { padding: 40px 0; }
  .about-content h2 { font-size: 26px; }
  .about-btn { width: auto; display: inline-block; }

  /* Remove any fixed card widths and center content */
  .card, .orb, .mv-image, .about-img { width: 100%; max-width: 100%; }
  .feature p, .tm-bio { font-size: 14px; }

  /* Make sure footer / bottom elements don't overflow */
  .hc-footer-inner { padding-inline: 12px; }
}

/* Small safety: ensure long words/links wrap instead of expanding container */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}




/* ---------- Hero / Intro ---------- */
.services-hero { padding: 70px 0; background: linear-gradient(180deg,#ffffff,#f7fbfc); color: #0d1b2a; }
.hero-container { max-width:1200px; margin:0 auto; display:flex; gap:36px; align-items:center; padding: 0 24px; }
.hero-content { flex:1; }
.hero-content h1 { font-size: 40px; margin:0 0 14px; color: #0d1b2a; }
.lead { font-size:17px; color:#3b4a52; margin-bottom:16px; line-height:1.7; }
.hero-points { list-style: none; padding:0; margin: 0 0 18px; display:grid; gap:8px; }
.hero-points li { position: relative; padding-left:22px; color:#556066; }
.hero-points li:before { content: "•"; position:absolute; left:0; top:0; color:#a58b3b; font-weight:700; }

.hero-actions { display:flex; gap:12px; margin-top:6px; flex-wrap:wrap; }
.btn { display:inline-block; padding:10px 16px; border-radius:8px; text-decoration:none; font-weight:600; }
.btn-primary { background:#0d1b2a; color: gold; border:2px solid white; }
.btn-outline { background:transparent; color:#0d1b2a; border:2px solid #e9eef1; }

/* hero image */
.hero-image { flex:0 0 460px; max-width:460px; }
.hero-image img { width:100%; height:auto; border-radius:12px; box-shadow: 0 18px 40px rgba(13,27,42,0.08); display:block; }

/* ---------- Services Grid ---------- */
.services-grid-section { padding: 60px 0; background: #0d1b2a; color:white; }
.grid-head { text-align:center; max-width:900px; margin:0 auto 18px; }
.grid-head h2 { font-size:30px; margin-bottom:8px; }
.grid-head p { color:#596169; font-size:15px; }

/* grid layout */
.services-grid {
  max-width:1200px;
  margin: 18px auto 0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 24px;
}

/* card */
.svc-card {
  background: linear-gradient(180deg,#fbfdff,#ffffff);
  border-radius:12px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: transform .28s ease, box-shadow .28s ease;
  box-shadow: 0 12px 28px rgba(13,27,42,0.06);
  min-height: 320px;
}
.svc-card:focus, .svc-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(13,27,42,0.10); outline:none; }

/* image area */
.svc-img-wrap { width:100%; height:180px; overflow:hidden; display:block; }
.svc-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .6s ease; }
.svc-card:hover .svc-img-wrap img, .svc-card:focus .svc-img-wrap img { transform: scale(1.06); }

/* body */
.svc-body { padding: 16px; display:flex; flex-direction:column; gap:10px; flex:1; }
.svc-body h4 { margin:0; font-size:18px; color:#0d1b2a; }
.svc-body p { margin:0; color:#57646b; font-size:14px; line-height:1.6; flex:1; }
.svc-more { text-decoration:none; font-weight:600; color:#0d1b2a; }
.svc-more:hover { color:#a58b3b; transform: translateX(4px); transition: .18s; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-container { flex-direction: column-reverse; text-align:center; gap:22px; padding: 0 20px; }
  .hero-image { max-width:100%; width:100%; }
  .hero-content h1 { font-size:32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap:16px; }
  .svc-card { min-height: auto; }
}

@media (max-width: 480px) {
  .services-hero { padding: 40px 0; }
  .hero-content h1 { font-size:26px; }
  .lead { font-size:15px; }
  .services-grid { grid-template-columns: 1fr; gap:12px; padding: 0 16px; }
  .svc-img-wrap { height:160px; }
  .svc-card { min-height: auto; }
  .hero-points li { font-size:14px; }
  .btn { padding: 10px 14px; font-size:15px; }
}


/* ========== HOW IT WORKS ========== */
.how-section {
  padding: 70px 0;
  background: #f8fafc;
  color: #0d1b2a;
}

.how-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 30px;
}

.how-head h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.how-head p {
  font-size: 15px;
  color: #5b6770;
}

/* Grid */
.how-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  padding: 0 20px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.how-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(13, 27, 42, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(13, 27, 42, 0.12);
}

/* Number Circle */
.how-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #0d1b2a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(13, 27, 42, 0.15);
}

.how-icon span {
  color: gold;
  font-size: 22px;
  font-weight: 700;
}

/* Content */
.how-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.how-card p {
  font-size: 14px;
  color: #6b7780;
  line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .how-section {
    padding: 40px 0;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-icon {
    width: 52px;
    height: 52px;
  }

  .how-head h2 {
    font-size: 24px;
  }
}


/* ========== APPOINTMENT CTA ========== */
.appointment-cta {
  background: #0d1b2a;
  padding: 70px 0;
  color: #ffffff;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-size: 34px;
  margin-bottom: 12px;
  color: gold;
}

.cta-content p {
  font-size: 16px;
  color: #e8edf2;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 20px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 16px;
}

/* Gold Button */
.btn-gold {
  background: gold;
  color: #0d1b2a;
  border: 2px solid gold;
}

.btn-gold:hover {
  background: transparent;
  color: gold;
}

/* Outline Button */
.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline-light:hover {
  background: gold;
  color: #0d1b2a;
}

/* CTA Image */
.cta-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  display: block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .cta-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .appointment-cta {
    padding: 40px 0;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}




/* ---------- BLOG HERO ---------- */
.blog-hero { padding: 70px 0; background: linear-gradient(180deg,#ffffff,#f3f8fa); color: #0d1b2a; }
.hero-wrap { max-width:1200px; margin:0 auto; display:flex; gap:28px; align-items:center; padding: 0 24px; }
.hero-text { flex:1; }
.hero-text h1 { font-size:36px; margin:0 0 12px; color:#0d1b2a; }
.lead { font-size:16px; color:#3b4a52; margin-bottom:12px; }
.hero-actions .btn { margin-right:10px; }

/* hero media */
.hero-media { flex:0 0 420px; max-width:420px; }
.hero-media img { width:100%; border-radius:12px; box-shadow:0 18px 40px rgba(13,27,42,0.08); display:block; }

/* ---------- CONTROLS ---------- */
.blog-controls { display:flex; justify-content:space-between; gap:18px; align-items:center; padding:18px 24px; max-width:1200px; margin: 20px auto; }
.search-wrap { position:relative; flex:1; max-width:560px; }
.search-wrap input[type="search"] { width:100%; padding:12px 44px 12px 14px; border-radius:10px; border:1px solid #e6eef1; font-size:15px; }
.clear-btn { position:absolute; right:6px; top:6px; bottom:6px; width:36px; border-radius:8px; border:0; background:transparent; cursor:pointer; color:#7a858c; }

/* filters */
.filter-wrap { display:flex; gap:8px; flex-wrap:wrap; }
.filter { padding:8px 12px; border-radius:999px; border:1px solid #e6eef1; background:transparent; cursor:pointer; font-size:14px; }
.filter.active { background:#0d1b2a; color:gold; border-color:#0d1b2a; }

/* ---------- BLOG BODY ---------- */
.blog-body { max-width:1200px; margin: 24px auto; display:grid; grid-template-columns: 1fr 320px; gap:28px; padding: 0 24px 60px; }

/* posts */
.posts-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:20px; }
.post-card { background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 12px 28px rgba(13,27,42,0.06); display:flex; flex-direction:column; transition:transform .2s; }
.post-card:hover { transform:translateY(-6px); }
.post-img img { width:100%; height:180px; object-fit:cover; display:block; }
.post-body { padding:14px; display:flex; flex-direction:column; gap:10px; }
.post-meta { color:#7b848a; font-size:13px; }
.post-body h3 { margin:0; font-size:18px; }
.excerpt { margin:0; color:#556066; font-size:14px; line-height:1.6; }
.read-more { color:#0d1b2a; font-weight:600; text-decoration:none; }

/* pagination */
.pagination { display:flex; gap:12px; align-items:center; justify-content:center; margin-top:20px; }
.page-btn { padding:8px 12px; border-radius:8px; border:1px solid #e6eef1; background:transparent; cursor:pointer; }

/* sidebar */
.blog-sidebar { background:transparent; }
.widget { background:#fff; padding:14px; border-radius:12px; box-shadow:0 12px 28px rgba(13,27,42,0.04); margin-bottom:18px; }
.widget h4 { margin:0 0 8px; font-size:16px; color:#0d1b2a; }
.widget ul { padding:0; margin:0; list-style:none; }
.widget ul li { margin:8px 0; }
.widget-newsletter form { display:flex; gap:8px; flex-direction:column; }
.widget-newsletter input[type="email"] { padding:10px; border-radius:8px; border:1px solid #e6eef1; }

/* small screens */
@media (max-width: 992px) {
  .hero-wrap { flex-direction:column-reverse; text-align:center; padding: 0 20px; }
  .blog-controls { flex-direction:column; align-items:stretch; gap:12px; padding: 0 20px; }
  .blog-body { grid-template-columns: 1fr; padding: 0 20px 40px; }
  .posts-grid { grid-template-columns: 1fr; }
  .hero-media { max-width:100%; width:100%; }
}

/* accessibility helpers */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }



/* Primary Button – Gold Text Visible */
.btn-primary {
  background: #0d1b2a !important;
  color: gold !important;
  border: 2px solid gold !important;
}

.btn-primary:hover {
  background: gold !important;
  color: #0d1b2a !important;
}

/* Outline Button – Make Text Gold */
.btn-outline {
  background: transparent !important;
  color: gold !important;
  border: 2px solid gold !important;
}

.btn-outline:hover {
  background: gold !important;
  color: #0d1b2a !important;
}

/* Search Clear Icon */
.clear-btn {
  color: gold !important;
}

/* Category Filter Buttons */
.filter {
  color: gold !important;
  border: 1px solid gold !important;
}

.filter.active {
  background: gold !important;
  color: #0d1b2a !important;
  border-color: gold !important;
}

.widget-newsletter h4,
.widget-newsletter p {
  color: #000 !important;
}


/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 70px 0;
  background: #f8fafc;
  color: #0d1b2a;
}

.faq-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.faq-head h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: gold;
}

.faq-head p {
  color: #5b6770;
  font-size: 15px;
}

/* FAQ items */
.faq-item {
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dfe6ea;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(13,27,42,0.06);
}

/* Question button */
.faq-question {
  width: 100%;
  padding: 16px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  background: #0d1b2a;
  color: gold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
}

.faq-question:hover {
  background: #12283c;
}

/* Answer */
.faq-answer {
  display: none;
  padding: 16px;
  background: #ffffff;
  font-size: 15px;
  color: #556066;
  line-height: 1.6;
  border-top: 1px solid #e2e8f0;
}

/* Open state */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  background: gold;
  color: #0d1b2a;
}

/* Responsive */
@media (max-width: 480px) {
  .faq-head h2 {
    font-size: 26px;
  }
  .faq-question {
    font-size: 15px;
  }
}




/* ========== PRICING SECTION ========== */
.pricing-section { padding: 70px 0; background: linear-gradient(180deg,#ffffff,#f7fbfc); color: #0d1b2a; }
.pricing-head { text-align: center; max-width: 920px; margin: 0 auto 22px; }
.pricing-head h2 { font-size: 32px; color: #0d1b2a; margin-bottom: 8px; }
.pricing-head p { color: #556066; font-size: 15px; margin-bottom: 12px; }

/* billing toggle */
.billing-toggle { display:inline-flex; align-items:center; gap:8px; margin-top:8px; }
.billing-toggle .label { color:#6b7780; font-size:14px; margin-right:6px; }
.bill-btn {
  background: transparent;
  border: 1px solid #e6eef1;
  color: #0d1b2a;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight:600;
}
.bill-btn.active {
  background: gold;
  color: #0d1b2a;
  border-color: gold;
}

/* grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 22px auto 0;
  align-items: start;
}

/* card */
.plan-card {
  background: linear-gradient(180deg,#fbfdff,#ffffff);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(13,27,42,0.06);
  display:flex;
  flex-direction:column;
  gap:14px;
  border: 1px solid transparent;
}
.plan-card.featured {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(13,27,42,0.12);
  border: 1px solid rgba(165,139,59,0.12);
}

/* top */
.plan-top { display:flex; justify-content:space-between; align-items:center; gap:10px; }
.plan-title { font-size:20px; font-weight:700; color:#0d1b2a; }
.plan-badge { background: rgba(13,27,42,0.06); color:#0d1b2a; padding:6px 10px; border-radius:999px; font-size:12px; font-weight:600; }
.badge-popular { background: linear-gradient(90deg,#a58b3b,#d4af37); color: #0d1b2a; }

/* price */
.plan-price { font-weight:800; font-size:28px; color:#0d1b2a; display:flex; align-items:baseline; gap:6px; }
.price-currency { font-size:16px; color:#0d1b2a; margin-top:2px; }
.price-value { color:#0d1b2a; }
.price-period { font-size:14px; color:#6b7780; }

/* features */
.plan-features { list-style: none; padding:0; margin:0; color:#556066; font-size:14px; line-height:1.6; }
.plan-features li { padding:6px 0; border-bottom: 1px dashed #eef3f5; }
.plan-features li:last-child { border-bottom: none; }

/* cta */
.plan-cta { display:flex; gap:10px; align-items:center; margin-top:10px; }
.btn-primary { background: #0d1b2a; color: gold; padding:10px 14px; border-radius:8px; text-decoration:none; border: 2px solid white; font-weight:700; }
.btn-primary:hover { background: gold; color: #0d1b2a; }
.plan-ghost { color:#0d1b2a; text-decoration:none; font-weight:600; padding:8px 10px; border-radius:8px; border:1px solid transparent; }

/* note */
.pricing-note { text-align:center; color:#67787f; margin-top:18px; font-size:14px; }

/* responsive */
@media (max-width: 992px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-head h2 { font-size:24px; }
  .price-value { font-size:22px; }
  .plan-price { font-size:20px; }
}



/* ---------- Shared container ---------- */
.container { max-width:1200px; margin:0 auto; padding:0 22px; }

/* HERO */
.doctors-hero { padding: 56px 0; background: linear-gradient(180deg,#fff,#f5f9fb); color:#0d1b2a; }
.hero-row { display:flex; gap:28px; align-items:center; }
.hero-left { flex:1; }
.hero-left h1 { font-size:36px; color:#0d1b2a; margin-bottom:8px; }
.lead { color:#3b4a52; font-size:16px; margin-bottom:12px; }
.hero-right img { width:100%; max-width:440px; border-radius:12px; box-shadow:0 16px 40px rgba(13,27,42,0.08); }

/* CONTROLS */
.doctor-controls { display:flex; gap:18px; align-items:center; justify-content:space-between; margin:20px auto; padding:0 22px; }
.search-wrap { position:relative; flex:1; max-width:540px; }
.search-wrap input { width:100%; padding:12px 44px 12px 14px; border-radius:10px; border:1px solid #e6eef1; }
.clear-btn { position:absolute; right:6px; top:6px; bottom:6px; width:36px; border-radius:8px; border:0; background:transparent; cursor:pointer; color:#7a858c; }
.filters { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.filters select { padding:10px; border-radius:10px; border:1px solid #e6eef1; }

/* FEATURED CAROUSEL */
.featured-doctors { padding:30px 0; }
.featured-doctors h2 { margin-bottom:14px; color:white; }
.carousel { display:flex; align-items:center; gap:12px; position:relative; }
.caro-btn { background:transparent; border:1px solid #e6eef1; padding:10px 12px; border-radius:8px; cursor:pointer; }
.caro-track { display:flex; gap:12px; overflow:hidden; width:100%; }
.caro-item { min-width:220px; background:#fff; border-radius:10px; padding:12px; box-shadow:0 10px 24px rgba(13,27,42,0.06); text-align:center; }
.caro-item img { width:100%; height:140px; object-fit:cover; border-radius:8px; }
.caro-info { margin-top:8px; font-size:14px; color:#0d1b2a; }
.caro-info span { display:block; color:#6b7780; font-size:13px; }

/* DOCTORS GRID */
.doctors-grid-section { padding:28px 0 40px; }
.grid-head h2 { margin:0 0 6px; color:white; }
.doctors-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; margin-top:12px; }
.doc-card { background:#fff; border-radius:12px; display:flex; gap:12px; padding:12px; box-shadow:0 12px 28px rgba(13,27,42,0.06); align-items:flex-start; }
.doc-photo { flex:0 0 96px; width:96px; height:96px; border-radius:10px; overflow:hidden; }
.doc-photo img { width:150%; height:150%; object-fit:cover; display:block; }
.doc-body { flex:1; }
.doc-name { margin:0; font-size:18px; color:#0d1b2a; }
.doc-meta { color:#6b7780; font-size:13px; margin:6px 0; }
.tag { display:inline-block; padding:6px 8px; background:#f3f6f8; border-radius:999px; margin-right:6px; font-size:13px; color:#556066; }
.doc-actions { margin-top:8px; display:flex; gap:8px; align-items:center; }

/* modal */
.modal { display:none; position:fixed; inset:0; z-index:1200; align-items:center; justify-content:center; }
.modal[aria-hidden="false"] { display:flex; }
.modal-backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.4); }
.modal-panel { position:relative; width:100%; max-width:980px; background:#fff; border-radius:12px; padding:18px; box-shadow:0 40px 80px rgba(13,27,42,0.4); z-index:1201; overflow:auto; max-height:90vh; }
.modal-close { position:absolute; right:14px; top:14px; background:transparent; border:0; font-size:18px; cursor:pointer; }
.modal-grid { display:flex; gap:18px; align-items:flex-start; }
.modal-photo { flex:0 0 220px; }
.modal-photo img { width:100%; border-radius:10px; height:100%; object-fit:cover; }
.modal-info { flex:1; }
.modal-details { list-style:none; padding:0; margin:12px 0; color:#556066; }
.modal-reviews { margin-top:12px; }

/* schedule */
.schedule-section { padding:30px 0; }
.schedule-grid { display:grid; grid-template-columns: repeat(6, 1fr); gap:12px; margin-top:12px; }
.schedule-grid .day { background:#fff; border-radius:8px; padding:12px; text-align:center; box-shadow:0 8px 24px rgba(13,27,42,0.04); }
.schedule-grid .day strong { display:block; margin-bottom:6px; color:#0d1b2a; }

.schedule-grid .day span {
  color: #000 !important;
}


/* BOOK CTA */
.book-cta { background:#0d1b2a; color:#fff; padding:34px 0; margin-top:18px; border-radius:8px; }
.cta-row { display:flex; gap:18px; align-items:center; justify-content:space-between; }
.cta-left h2 { color:gold; margin:0 0 6px; }
.cta-right a { margin-left:8px; }

/* buttons */
.btn { display:inline-block; padding:10px 14px; border-radius:8px; text-decoration:none; font-weight:600; }
.btn-primary { background:#0d1b2a; color:gold; border:2px solid white; }
.btn-outline { background:transparent; color:#0d1b2a; border:1px solid #e6eef1; }
.btn-gold { background:gold; color:#0d1b2a; border:2px solid gold; }
.btn-outline-light { background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.2); }

/* responsive */
@media (max-width: 992px) {
  .hero-row { flex-direction:column-reverse; text-align:center; }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-row { flex-direction:column; text-align:center; gap:12px; }
  .modal-grid { flex-direction:column; }
  .schedule-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
  .doctors-grid { grid-template-columns: 1fr; }
  .search-wrap { max-width:100%; }
  .schedule-grid { grid-template-columns: repeat(2,1fr); }
}


/* =============== MODAL OVERLAY =============== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  align-items: center;
  justify-content: center;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* =============== MODAL BOX =============== */
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  z-index: 1201;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(13,27,42,0.35);
  animation: fadeUp 0.25s ease;
}

@keyframes fadeUp {
  from { transform: translateY(25px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Close button */
.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

/* =============== MODAL CONTENT GRID =============== */
.modal-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-photo {
  width: 220px;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
}

.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  flex: 1;
}

.modal-info h3 {
  margin: 0 0 8px;
  color: #0d1b2a;
}

.modal-role {
  color: #6b7780;
  margin-bottom: 10px;
}

.modal-bio {
  color: #404b52;
  margin-bottom: 12px;
  line-height: 1.5;
}

.modal-details {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.modal-details li {
  padding: 6px 0;
  font-size: 15px;
  color: #444;
}

/* Buttons inside modal */
.modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.modal-actions .btn {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}

/* =============== PATIENT REVIEWS =============== */
.modal-reviews {
  margin-top: 12px;
}

.modal-reviews h4 {
  margin-bottom: 8px;
  color: #0d1b2a;
}

.modal-reviews blockquote {
  background: #f6f9fb;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #333;
  border-left: 4px solid gold;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 768px) {
  .modal-grid {
    flex-direction: column;
  }

  .modal-photo {
    width: 100%;
    height: auto;
  }
}



/* ---------- RESOURCES HERO ---------- */
.resources-hero { padding: 60px 0; background: linear-gradient(180deg,#fff,#f7fbfc); color:#0d1b2a; }
.hero-row { display:flex; gap:28px; align-items:center; }
.hero-left { flex:1; }
.hero-left h1 { font-size:36px; margin:0 0 8px; color:#0d1b2a; }
.lead { color:#3b4a52; font-size:16px; margin-bottom:12px; }
.hero-right img { width:100%; max-width:420px; border-radius:12px; box-shadow:0 18px 40px rgba(13,27,42,0.08); }

/* ---------- CONTROLS ---------- */
.resources-controls { display:flex; gap:12px; align-items:center; justify-content:space-between; margin:20px auto; padding:0 22px; max-width:1200px; }
.search-wrap { position:relative; flex:1; max-width:520px; }
.search-wrap input { width:100%; padding:12px 44px 12px 14px; border-radius:10px; border:1px solid #e6eef1; }
.clear-btn { position:absolute; right:6px; top:6px; bottom:6px; width:36px; border-radius:8px; border:0; background:transparent; cursor:pointer; color:#7a858c; }
.filter-wrap { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }

/* ---------- RESOURCES GRID ---------- */
.resources-body { max-width:1200px; margin: 20px auto 60px; display:grid; grid-template-columns: 1fr 320px; gap:28px; padding: 0 22px; }
.res-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:20px; }

/* Resource card */
.res-card { background:#fff; border-radius:12px; overflow:hidden; display:flex; gap:12px; box-shadow:0 12px 28px rgba(13,27,42,0.06); padding:12px; align-items:flex-start; }
.res-thumb { flex:0 0 140px; width:140px; height:100px; overflow:hidden; border-radius:8px; display:block; }
.res-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.res-body { flex:1; display:flex; flex-direction:column; gap:8px; }
.res-meta { color:#6b7780; font-size:13px; }
.res-title { margin:0; color:#0d1b2a; font-size:18px; }
.res-excerpt { margin:0; color:#556066; font-size:14px; line-height:1.5; }
.res-actions { margin-top:auto; display:flex; gap:8px; }

/* pagination */
.res-pagination { display:flex; gap:12px; align-items:center; justify-content:center; margin-top:18px; }

/* sidebar */
.resources-sidebar .widget { background:#fff; padding:14px; border-radius:12px; box-shadow:0 12px 28px rgba(13,27,42,0.04); margin-bottom:14px; }
.tag-cloud { display:flex; gap:8px; flex-wrap:wrap; }
.tag-btn { padding:8px 12px; border-radius:999px; border:1px solid #e6eef1; background:transparent; cursor:pointer; }

/* modal */
.modal-panel { max-width:920px; padding:18px; border-radius:12px; }
.modal-content { display:flex; gap:16px; align-items:flex-start; }
.modal-thumb { width:220px; height:140px; overflow:hidden; border-radius:8px; }
.modal-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.modal-right { flex:1; }
.res-desc { color:#444; line-height:1.6; }

/* buttons */
.btn-primary { background:#0d1b2a; color: gold; border: 2px solid white; padding:8px 12px; border-radius:8px; text-decoration:none; font-weight:700; }
.btn-outline { background:transparent; color:#0d1b2a; border:1px solid #e6eef1; padding:8px 12px; border-radius:8px; }

/* responsive */
@media (max-width: 992px) {
  .hero-row { flex-direction:column-reverse; text-align:center; }
  .res-grid { grid-template-columns: 1fr; }
  .resources-body { grid-template-columns: 1fr; padding: 0 20px; }
  .modal-content { flex-direction:column; }
}

/* ============================
   RESOURCE MODAL (POPUP)
   ============================ */

/* MAIN MODAL WRAPPER */
#res-modal.modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
}
#res-modal[aria-hidden="false"] {
  display: flex;
}

/* BACKDROP */
#res-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* MODAL BOX */
#res-modal .modal-panel {
  position: relative;
  background: #ffffff;
  width: 92vw;
  max-width: 950px;
  border-radius: 12px;
  padding: 22px;
  z-index: 10;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0px 22px 48px rgba(13, 27, 42, 0.35);
  animation: fadeUp 0.25s ease;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* CLOSE BUTTON */
#res-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #444;
}

/* CONTENT LAYOUT */
#res-modal .modal-content {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 20px;
  align-items: start;
}

/* IMAGE BOX */
#res-modal .modal-thumb {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.15);
}
#res-modal .modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SIDE CONTENT */
#res-modal .modal-right h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #0d1b2a;
}
#res-modal .res-meta {
  color: #6b7780;
  font-size: 14px;
  margin-bottom: 10px;
}
#res-modal .res-desc {
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* BUTTONS AREA */
#res-modal .modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
#res-modal .btn-primary {
  background: #0d1b2a;
  color: gold;
  border: 2px solid white;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}
#res-modal .btn-primary:hover {
  background: gold;
  color: #0d1b2a;
}

/* OUTLINE BUTTON */
#res-modal .btn-outline {
  background: transparent;
  color: #0d1b2a;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #d7dde1;
  text-decoration: none;
  font-weight: 600;
}
#res-modal .btn-outline:hover {
  border-color: gold;
  color: gold;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  #res-modal .modal-content {
    grid-template-columns: 1fr;
  }
  #res-modal .modal-thumb {
    height: 260px;
  }
}

@media (max-width: 480px) {
  #res-modal .modal-panel {
    width: 96vw;
    height: 94vh;
    padding: 18px;
  }
  #res-modal .modal-actions .btn-primary,
  #res-modal .modal-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
}


/* ========= CONTACT SECTION ========= */
.contact-section { padding: 56px 0; background: linear-gradient(180deg,#fff,#f7fbfc); color:#0d1b2a; }
.contact-row { display:flex; gap:28px; align-items:center; max-width:1200px; margin:0 auto; padding:0 22px; }

/* photo */
.contact-photo { flex:0 0 48%; }
.contact-photo img { width:100%; height:auto; border-radius:12px; box-shadow:0 18px 40px rgba(13,27,42,0.08); display:block; }

/* form */
.contact-form-wrap { flex:1; padding:18px 12px; background: #ffffff; border-radius:12px; box-shadow:0 12px 28px rgba(13,27,42,0.06); }
.contact-form-wrap h2 { margin:0 0 8px; color:#0d1b2a; font-size:28px; }
.contact-lead { margin:0 0 12px; color:#556066; }

/* form rows */
.form-row { margin-bottom:12px; display:flex; flex-direction:column; gap:6px; }
.form-row label { font-weight:600; color:#0d1b2a; font-size:14px; }
.form-row input,
.form-row textarea {
  border:1px solid #e6eef1;
  padding:10px 12px;
  border-radius:8px;
  font-size:15px;
  color:#0d1b2a;
  background: #fbfdff;
  outline: none;
  transition: border .15s, box-shadow .15s;
}
.form-row input:focus,
.form-row textarea:focus { border-color: #a58b3b; box-shadow: 0 6px 20px rgba(165,139,59,0.08); }

/* errors */
.field-error { font-size:13px; color:#c53030; min-height:18px; margin-top:2px; }
.input-error { border-color:#c53030 !important; box-shadow: 0 6px 18px rgba(197,59,59,0.06) !important; }

/* actions */
.form-actions { display:flex; gap:10px; margin-top:8px; align-items:center; }
.btn { padding:10px 14px; border-radius:8px; text-decoration:none; font-weight:700; cursor:pointer; border:0; }
.btn-primary { background:#0d1b2a; color:gold; border:2px solid white; }
.btn-primary:hover { background:gold; color:#0d1b2a; }
.btn-outline { background:transparent; color:#0d1b2a; border:1px solid #e6eef1; padding:9px 12px; }

/* form-status (success or general messages) */
.form-status { margin-top:12px; font-size:14px; color:#0d1b2a; min-height:20px; }

/* responsive */
@media (max-width: 992px) {
  .contact-row { flex-direction:column; }
  .contact-photo, .contact-form-wrap { width:100%; flex:unset; }
  .contact-photo img { max-height:360px; object-fit:cover; }
}




.tag-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0d1b2a;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.tag-btn:hover {
  background: goldenrod;
  color: #0d1b2a;
  border: 1px solid #0d1b2a;
}



/* container + grid */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop 3-up */
  gap: 18px;
  align-items: stretch;
}

/* card */
.doctor-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(16,24,40,0.06);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(16,24,40,0.08); }

/* image wrapper keeps aspect ratio and prevents layout shift */
.doc-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;           /* maintains a nice box on mobile & desktop */
  overflow: hidden;
  background: linear-gradient(180deg, #f0f4ff, #fff);
  display: block;
}

/* the image itself */
.doc-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;           /* fills box while preserving aspect */
  object-position: center;     /* adjust to focus focal point */
  -webkit-transition: transform .22s ease;
  transition: transform .22s ease;
}

/* subtle zoom on hover (desktop) */
.doctor-card:hover .doc-photo-wrap img { transform: scale(1.04); }

/* card content */
.doctor-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doc-name { font-weight:700; font-size:16px; margin:0; }
.doc-role { font-size:13px; color:#6b7280; margin:0; }
.doc-meta { font-size:13px; color:#4b5563; display:flex; gap:8px; flex-wrap:wrap; }

/* small responsive tweaks */
@media (max-width:1100px){
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:640px){
  .doctors-grid { grid-template-columns: 1fr; gap:12px; }
  .doc-photo-wrap { aspect-ratio: 16/9; }   /* wider on very small screens */
  .doctor-body { padding:12px; }
}


