:root {
    --navy: #0f1d2e;
    --navy-mid: #1d395a;
    --navy-deep: #0a1523;
    --gold: #30afdd;
    --gold-light: #51bae0;
    --gold-pale: rgb(147 188 198 / 37%);
    --cream: #f3f9fa;
    --cream-deep: #e8f5f7;
    --text: #25252c;
    --muted: #2b2b2b;
    --white: #ffffff;
    --sp: 70px 0;
    --head: "Fjalla One", sans-serif;
    --body: "Strichpunkt Sans", sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--body);
  background:var(--cream);
  color:var(--text);
  font-size: 16px;
  line-height: 28px;
  overflow-x:hidden;
}

a{
  text-decoration: none;
}

/* ══════════════════════════════════
   BUTTONS — premium redesign
══════════════════════════════════ */
/* Primary: filled gold with animated fill-swap */
.btn-primary{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-family: var(--body);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    --dur: .45s;
}
.btn-primary .bp-bg{
  position:absolute;inset:0;background:var(--gold);
  transition:transform var(--dur) cubic-bezier(.76,0,.24,1);
  transform-origin:right;
}
.btn-primary:hover .bp-bg{transform:scaleX(0);transform-origin:left}
.btn-primary .bp-bg2{
  position:absolute;inset:0;background:var(--navy);
  transform:scaleX(0);transform-origin:left;
  transition:transform var(--dur) cubic-bezier(.76,0,.24,1);
}
.btn-primary:hover .bp-bg2{transform:scaleX(1)}
.btn-primary .bp-inner{
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px 6px 18px;
    color: var(--white);
    transition: color var(--dur);
}
.btn-primary:hover .bp-inner{color:var(--white)}
.btn-primary .bp-arrow{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform .3s,border-color .3s;
    flex-shrink: 0;
}
.btn-primary:hover .bp-arrow{transform:rotate(45deg)}

/* Ghost outline button */
.btn-ghost{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(248,245,239,.3);
    color: var(--cream);
    padding: 6px 20px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--body);
    background: none;
    transition: border-color .3s,color .3s;
    overflow: hidden;
}
.btn-ghost::before{
  content:'';position:absolute;inset:0;
  background:rgb(117 184 90 / 10%);
  transform:translateX(-101%);
  transition:transform .45s cubic-bezier(.76,0,.24,1);
}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold)}
.btn-ghost:hover::before{transform:translateX(0)}
.btn-ghost .gh-arrow{
  width:28px;height:28px;border-radius:50%;
  border:1.5px solid currentColor;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:.65rem;transition:transform .3s;flex-shrink:0;
}
.btn-ghost:hover .gh-arrow{transform:rotate(45deg)}

/* Gold outline (dark bg) */
.btn-gold{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--body);
    background: none;
    overflow: hidden;
    transition: color .35s;
}
.btn-gold::before{
  content:'';position:absolute;inset:0;background:var(--gold);
  transform:scaleY(0);transform-origin:bottom;
  transition:transform .38s cubic-bezier(.76,0,.24,1);z-index:-1;
}
.btn-gold:hover{color:var(--navy)}
.btn-gold:hover::before{transform:scaleY(1)}

/* Small text link with underline draw */
.btn-link{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--gold);font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;text-decoration:none;
  position:relative;padding-bottom:2px;
}
.btn-link::after{
  content:'';position:absolute;bottom:0;left:0;width:0;height:1px;
  background:var(--gold);transition:width .3s;
}
.btn-link:hover::after{width:100%}
.btn-link span{transition:transform .3s}
.btn-link:hover span{transform:translateX(4px)}

/* Nav CTA arrow-clip shape */
.nav-cta{
  position:relative;background:var(--gold);color:var(--navy);
  padding:10px 30px 10px 20px;font-size:.74rem;font-weight:600;
  letter-spacing:.07em;text-transform:uppercase;text-decoration:none;
  clip-path:polygon(0 0,calc(100% - 10px) 0,100% 50%,calc(100% - 10px) 100%,0 100%);
  transition:background .25s,color .25s;display:inline-block;
}
.nav-cta:hover{background:var(--navy);color:var(--gold)}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav{
    position: relative;
    z-index: 999;
    height: 140px;
    padding: 5px 0;
    background: var(--navy-deep);
    backdrop-filter: blur(18px);
    border-bottom: 0.1px solid #ffffff40;
    transition: background .3s;
}
.head-part{
  display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo{font-family:var(--head);font-size:1.15rem;font-weight:500;color:var(--cream);text-decoration:none;letter-spacing:.03em}
.nav-logo span{color:var(--gold)}
.nav-links{display:flex;gap:25px;list-style:none;padding-left: 0;}
.nav-links a{
    line-height: 28px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
    transition: color .2s;
    position: relative;
}
.nav-links a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:1px;background:var(--gold);transition:width .3s}
.nav-links a:hover{color:var(--gold)}
.nav-links a:hover::after{width:100%}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none}
.hamburger span{display:block;width:24px;height:2px;background:var(--cream);transition:all .3s}

/* ── DROPDOWN ── */
.nav-links li{position:relative}
.nav-links li.has-drop>a{display:inline-flex;align-items:center;gap:5px}
.nav-links li.has-drop>a::after{display:none}/* remove underline pseudo on parent */
.drop-arrow{
  display:inline-flex;align-items:center;justify-content:center;
  width:14px;height:14px;transition:transform .3s;flex-shrink:0;
}
.drop-arrow svg{width:9px;height:9px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.nav-links li.has-drop:hover .drop-arrow{transform:rotate(180deg)}
.dropdown{
  position:absolute;top:calc(100% + 2px);left:50%;
  transform:translateX(-50%) translateY(6px);
  min-width:230px;
  background:var(--navy-deep);
  border:1px solid rgba(184,151,90,.18);
  border-top:2px solid var(--gold);
  padding:8px 0;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .25s ease,transform .25s ease,visibility .25s;
  backdrop-filter:blur(18px);
  z-index:600;
}
.nav-links li.has-drop:hover .dropdown{
  opacity:1;visibility:visible;pointer-events:all;
  transform:translateX(-50%) translateY(0);
}
.dropdown a{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 15px;
    color: rgb(248 245 239 / 95%);
    font-size: 15px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    text-decoration: none;
    transition: color .2s,background .2s;
    white-space: nowrap;
}
.dropdown a:hover{color:var(--gold);background:rgb(147 190 198 / 5%)}
.dropdown a .dd-dot{
  width:5px;height:5px;border-radius:50%;
  background: var(--gold);flex-shrink:0;transition:background .2s;
}
.dropdown a:hover .dd-dot{background:var(--gold)}
/* divider inside dropdown */
.dropdown .dd-divider{height:1px;background:rgb(117 184 90 / 10%);margin:4px 0}

/* ══════════════════════════════════
   HERO SLIDER
══════════════════════════════════ */
#hero{
    position: relative;
    /*height: 100vh;*/
    min-height: 510px;
    overflow: hidden;
    background: var(--navy);
}
.hero-slides{position:absolute;inset:0}
.hero-slide{
  position:absolute;inset:0;
  
  opacity:0;transition:opacity 1s cubic-bezier(.4,0,.2,1);pointer-events:none;
}
.hero-slide.active{opacity:1;pointer-events:all}
.s-bg{position:absolute;inset:0;pointer-events:none}
.s-bg1{background:radial-gradient(circle at 72% 48%,rgb(147 190 198 / 5%) 0%,transparent 58%),repeating-linear-gradient(90deg,rgba(255,255,255,.015) 0,rgba(255,255,255,.015) 1px,transparent 1px,transparent 80px),repeating-linear-gradient(0deg,rgba(255,255,255,.015) 0,rgba(255,255,255,.015) 1px,transparent 1px,transparent 80px)}
.s-bg2{background:radial-gradient(circle at 28% 62%,rgb(147 190 198 / 5%) 0%,transparent 52%),radial-gradient(circle at 80% 20%,rgba(184,151,90,.04) 0%,transparent 35%),repeating-linear-gradient(135deg,rgba(255,255,255,.01) 0,rgba(255,255,255,.01) 1px,transparent 1px,transparent 55px)}
.s-bg3{background:radial-gradient(circle at 85% 30%,rgba(184,151,90,.08) 0%,transparent 45%),radial-gradient(circle at 15% 85%,rgba(184,151,90,.05) 0%,transparent 40%)}
.hero-left-col{
  display:flex;flex-direction:column;
  padding:10px 0% 10px 0%;position:relative;z-index:1;
}
.hero-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
}
.hero-tag::before{content:'';display:block;width:28px;height:1px;background:var(--gold)}
.hero-slides h1{
    font-family: var(--head);
    font-size: 44px;
    font-weight: 300;
    color: var(--white);
    line-height: 54px;
    margin-bottom: 10px;
  }
.hero-slides h1 em{color:var(--gold);font-style:normal}
.hero-deg{
    color: var(--gold-light);
    letter-spacing: 0.6px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 20px;
    font-size: 16px;
  }
.hero-sub{color:#fff;font-size:16px;font-weight:400;line-height:28px;max-width:700px;margin-bottom:30px}
.hero-stats{
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.s-stat{border-left:2px solid var(--gold);padding-left:14px}
.s-num{font-family:var(--head);font-size:32px;font-weight:500;color:var(--white);line-height:1}
.s-lbl{font-size:12px;color:#fff;text-transform:uppercase;letter-spacing:.09em;margin-top:3px}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;align-items:center}

.hero-right-col{
  display:flex;align-items:center;
  padding:20px 0 20px 0;position:relative;z-index:1;
}
.hero-card{
    background: rgba(255,255,255,.04);
    border: 1px solid rgb(122 184 90 / 18%);
    padding: 25px;
    max-width: 500px;
    width: 100%;
    position: relative;
}
.hero-card::before{
    content: '';
    position: absolute;
    top: -1px;
    left: 36px;
    right: 36px;
    height: 3px;
    background: var(--gold);
  }
.aff-label{
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
.aff-item{
      padding: 15px 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    display: flex;
    align-items: center;
    gap: 15px;

}
.aff-item:last-child{border-bottom:none}
.aff-dot{width:10px;height:10px;background:var(--gold);border-radius:50%;flex-shrink:0}
.aff-text{
    font-size: 16px;
    color: rgb(248 245 239 / 83%);
    line-height: 1.5;
  }
.aff-text strong{color:var(--cream);display:block;font-weight: 500}

/* Slide in animation */
.hero-slide.active .hero-tag,
.hero-slide.active h1,
.hero-slide.active .hero-deg,
.hero-slide.active .hero-sub,
.hero-slide.active .hero-stats,
.hero-slide.active .hero-btns,
.hero-slide.active .hero-card{animation:sUp .75s ease both}
.hero-slide.active h1{animation-delay:.07s}
.hero-slide.active .hero-deg{animation-delay:.15s}
.hero-slide.active .hero-sub{animation-delay:.22s}
.hero-slide.active .hero-stats{animation-delay:.3s}
.hero-slide.active .hero-btns{animation-delay:.38s}
.hero-slide.active .hero-card{animation-delay:.2s}
@keyframes sUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

/* Controls */
.hero-controls{position:absolute;bottom:30px;    visibility: hidden;left:5%;display:flex;align-items:center;gap:15px;z-index:20}
.h-dot{width:30px;height:3px;background:rgba(255,255,255,.22);cursor:pointer;border:none;transition:all .3s;padding:0}
.h-dot.active{background:var(--gold);width:30px}
.hero-nav{
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 20;
    justify-content: center;
}
.h-btn{
  width:42px;height:42px;border:1px solid rgb(48 175 221 / 32%);
  background:transparent;color:var(--gold);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;transition:all .25s;
}
.h-btn:hover{background:var(--gold);color:var(--navy);border-color:var(--gold)}
.hero-prog{position:absolute;bottom:0;left:0;height:2px;background:var(--gold);z-index:20;width:0}

/* ══════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════ */
section{padding:var(--sp)}
.container{max-width:1250px;}
.sec-label{
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sec-label::before{content:'';display:block;width:22px;height:1px;background:var(--gold)}
h2.section-head{
    font-family: var(--head);
    font-size: 38px;
    font-weight: 400;
    color: var(--navy);
    line-height: 48px;
    margin-bottom: 15px;
  }
h2.lw{color:var(--cream)}
.lead{font-size:16px;color:var(--muted);font-weight:300;line-height:28px;max-width:540px}
.lead.lw{color:#fff}
.divider{width:44px;height:2px;background:var(--gold);margin:22px 0}

/* Scroll fade-in */
.fi{opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease}
.fi.vis{opacity:1;transform:translateY(0)}
.fd1{transition-delay:.1s}.fd2{transition-delay:.2s}.fd3{transition-delay:.3s}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
#about{background:var(--white)}
.about-grid{
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 60px;
    align-items: start;
    margin-top: 35px;
  }
.about-sticky{position:sticky;top:96px}
.photo-wrap{position:relative;padding-bottom:108%;background:var(--cream-deep);overflow:hidden}
.photo-placeholder{
  position:absolute;inset:0;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:10px;
  color:var(--navy);
  font-family:var(--head);font-size:3.5rem;
}
.photo-frame{position:absolute;bottom:-10px;right:-10px;width:78%;height:78%;border:2px solid var(--gold);z-index:-1}
.cred-strip{margin-top:18px;padding:18px;background:var(--navy);display:flex;flex-wrap:wrap;gap:7px}
.cred{
        background: rgb(158 186 210 / 16%);
    border: 1px solid rgb(147 187 198 / 61%);
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    padding: 4px 10px;
    letter-spacing: 0.9px;
  }
.about-summary{}
.about-summary.two{
    color: var(--muted);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cream-deep);
  }
.tabs{display:flex;gap:0;margin-bottom:32px;border-bottom:1px solid var(--cream-deep)}
.tab-btn{
    padding: 11px 22px;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition: all .2s;
    font-family: var(--body);
}
.tab-btn.active{color:var(--navy);border-bottom-color:var(--gold)}
.tab-panel{display:none}
.tab-panel.active{display:block}
.tl-item{padding:0px 0 25px 20px;border-left:1px solid var(--cream-deep);position:relative}
.tl-item::before{content:'';position:absolute;left:-4.5px;top:4px;width:8px;height:8px;border-radius:50%;background:var(--gold);border:2px solid var(--white)}
.tl-yr{font-size:12px;color:var(--gold);letter-spacing:.1em;text-transform:uppercase;margin-bottom:5px;font-weight:500}
.tl-title{    
    font-family: var(--head);
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 5px;
  }
.tl-inst{font-size:15px;color:var(--muted);font-weight:400}
.award-item{display:flex;gap:18px;align-items:flex-start;padding:18px;background:var(--cream);border-left:3px solid var(--gold);margin-bottom:16px}
.award-num{font-family:var(--head);font-size:1.8rem;color:rgb(56 133 142 / 25%);font-weight:400;line-height:1;flex-shrink:0}
.award-title{
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 5px;
    line-height: 28px;
  }
.award-desc{color:var(--muted);font-weight:300;}
.pub-item{padding:15px 17px;border:1px solid var(--cream-deep);background:var(--white);margin-bottom:12px;transition:border-color .2s}
.pub-item:hover{border-color:var(--gold)}
.pub-journal{
    font-size: 12px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: var(--navy-mid);
    margin-bottom: 5px;
    font-weight: 500;
  }
.pub-title{
    color: var(--navy);
    font-weight: 500;
  }
.pub-link{font-size:14px;color:var(--gold);text-decoration:none;display:inline-flex;align-items:center;gap:4px;margin-top:5px}
.pub-link:hover{text-decoration:underline}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
#services{background:var(--navy)}
.svc-intro{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
    align-items: end;
  }
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(255,255,255,.05)}
.svc-card{
  background:var(--navy-mid);padding:30px 24px;
  border:1px solid rgb(48 175 221 / 32%);transition:all .28s;position:relative;overflow:hidden;cursor:default;
}
.svc-card::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--gold);transition:width .35s}
.svc-card:hover{background:var(--gold);}
.svc-card:hover::after{width:100%}
.svc-icon{border:1px solid rgb(48 175 221 / 32%);display:flex;align-items:center;justify-content:center;margin-bottom:15px;transition:all .28s}
.svc-icon img{
  padding: 5px;
}
.svc-card:hover .svc-icon{
  border:1px solid #fff;
}
.svc-name{font-family:var(--head);font-size:22px;font-weight:400;color:var(--cream);line-height:32px;margin-bottom:10px}
.svc-name a{
  color: #fff;
}
.svc-desc{color:#fff;font-weight:300;}

/* ══════════════════════════════════
   HOSPITALS
══════════════════════════════════ */
#hospitals{background:var(--cream)}

.hosp-card{
    background: var(--white);
    padding: 20px;
    border: 1px solid var(--cream-deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    transition: box-shadow .28s;
}
.hosp-card:hover{box-shadow:0 8px 36px rgba(10,22,40,.07)}
.hosp-badge img{ border-radius: 20px}
.hosp-name{
    font-family: var(--head);
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 5px;
  }
.hosp-role{
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-mid);
    text-transform: capitalize;
    margin-bottom: 10px;
  }
.hosp-addr{color:var(--muted); margin-bottom: 10px; display: flex; gap: 10px; align-items: baseline;}
.hosp-addr a{color:var(--muted);}
.hosp-addr i{color:var(--gold);}

/* ══════════════════════════════════
   WHY CHOOSE
══════════════════════════════════ */
#why{background:var(--white)}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.why-visual{position:relative}
.why-inner{background:var(--navy);padding:46px;position:relative}
.why-inner::before{content:'';position:absolute;top:12px;left:12px;right:-12px;bottom:-12px;border:1px solid var(--gold);z-index:-1}
.why-quote{font-family:var(--head);font-size:1.45rem;font-style:italic;font-weight:300;color:var(--cream);line-height:1.75;margin-bottom:22px}
.why-qmark{font-size:3rem;color:var(--gold);opacity:.35;line-height:.5;display:block;margin-bottom:6px}
.why-list{display:flex;flex-direction:column;gap:18px}
.why-item{display:flex;gap:18px;align-items:flex-start}
.why-num{
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--head);
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
  }
.why-text h4{font-size:18px;font-weight:500;color:var(--navy);margin-bottom:10px}
.why-text p{color:var(--muted);font-weight:300;}

/* ══════════════════════════════════
   REVIEWS CAROUSEL
══════════════════════════════════ */
#reviews{background:var(--cream)}
.rev-hdr{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:30px;flex-wrap:wrap;gap:16px}
.rating-num{font-family:var(--head);font-size:3.4rem;font-weight:300;color:var(--navy);line-height:1}
.stars{color:var(--gold);font-size:.95rem;letter-spacing:2px}
.rating-count{
    font-size: 14px;
    color: var(--muted);
    margin-top: 0px;
  }
.rev-carousel{position:relative;overflow:hidden}
.rev-track{display:flex;gap:22px;transition:transform .55s cubic-bezier(.4,0,.2,1);will-change:transform}
.review-card{
  background:var(--white);padding:20px;
  height: 100%;
  border:1px solid var(--cream-deep);
  flex:0 0 calc(33.333% - 15px);
  min-width:0;transition:box-shadow .25s;
}
.review-card:hover{box-shadow:0 4px 22px rgba(10,22,40,.07)}
.rev-stars{
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }
.rev-text{
    font-weight: 500;
    font-style: italic;
    color: var(--text);
    line-height: 28px;
    margin-bottom: 20px;
  }
.rev-author{display:flex;align-items:center;gap:11px}
.rev-avatar{width:38px;height:38px;border-radius:50%;background:var(--navy);display:flex;align-items:center;justify-content:center;color:var(--gold);font-family:var(--head);font-size:.95rem;flex-shrink:0}
.rev-name{font-weight:500;color:var(--navy)}
.rev-tag{font-size:14px;color:var(--muted)}
.rev-nav{display:flex;align-items:center;justify-content:center;gap:16px;margin-top:36px}
.rev-btn{
  width:44px;height:44px;border:1.5px solid rgb(56 105 26 / 21%);
  background:transparent;color:var(--gold);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;transition:all .25s;border-radius:50%;
}
.rev-btn:hover{background:var(--gold);color:var(--navy);border-color:var(--gold)}
.rev-dots{display:flex;gap:8px;align-items:center}
.rev-dot{width:8px;height:8px;border-radius:50%;background:rgb(48 175 221 / 32%);border:none;cursor:pointer;padding:0;transition:all .3s}
.rev-dot.active{background:var(--gold);width:22px;border-radius:4px}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
#faq{background:var(--white)}
.faq-grid{
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
  }
.faq-sticky{position:sticky;top:96px}
.faq-contact-card{
    margin-top: 35px;
    background: var(--navy);
    padding: 20px;
  }
.faq-contact-card p{color:#fff;font-weight:300;line-height:1.75;margin-bottom:18px}
.faq-list{
    display: flex;
    flex-direction: column;
    background: var(--cream);
    padding: 20px;
    border-radius: 20px;
  }
.faq-item{border-bottom:1px solid var(--cream-deep);overflow:hidden}
.faq-q{
  width:100%;text-align:left;background:none;border:none;
  padding:15px 0;cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;gap:14px;
  font-family:var(--body);font-size:18px;font-weight:600;color:var(--navy);transition:color .2s;
}
.faq-q:hover{color:var(--gold)}
.faq-ico{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 26px;
    flex-shrink: 0;
    transition: transform .32s;
}
.faq-item.open .faq-ico{transform:rotate(45deg)}
.faq-ans{max-height:0;overflow:hidden;transition:max-height .38s ease}
.faq-ans-inner{padding:0 0 18px;color:var(--muted);font-weight:300;line-height:1.82}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
/* ══════════════════════════════════
   CONTACT — redesigned
══════════════════════════════════ */
#contact{background:var(--navy-deep);}
.ct-body{display:grid;grid-template-columns:1fr 1.4fr;}
.ct-left{padding:0 50px 50px 0;border-right:1px solid rgba(184,151,90,.1)}
.ct-info-list{
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
  }
.ct-info-item{display:flex;gap:18px;align-items:flex-start;padding:22px 0;border-bottom:1px solid rgba(255,255,255,.05)}
.ct-info-item:last-child{border-bottom:none}
.ct-i-icon{
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border: 1px solid rgb(101 184 90 / 20%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
.ct-i-icon svg{width:18px;height:18px;fill:none;stroke:var(--gold);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.ct-i-label{
    font-size: 14px;
    letter-spacing: 0.2px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
  }
.ct-i-val{
    font-size: 16px;
    color: var(--cream);
    font-weight: 400;
    line-height: 28px;
  }
.ct-i-val a{color:var(--cream);text-decoration:none;transition:color .2s}
.ct-i-val a:hover{color:var(--gold)}
.ct-timing{
    margin-top: 20px;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(90 145 184 / 15%);
    padding: 22px 24px;
  }
.ct-timing-title{
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
.ct-timing-title::before{content:'';width:16px;height:1px;background:var(--gold)}
.ct-timing-row{display:flex;justify-content:space-between;align-items:center;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.04);font-size:.8rem}
.ct-timing-row:last-child{border-bottom:none}
.ct-timing-day{
    color: #fff;
    font-weight: 300;
    font-size: 16px;
  }
.ct-timing-time{
    color: #fff;
    font-weight: 300;
    font-size: 16px;
  }
.ct-timing-time.closed{color:rgba(248,245,239,.3)}
.ct-right{padding:0px 0 0 50px}
.ct-form-title{
    font-family: var(--head);
    font-size: 34px;
    line-height: 44px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 10px;
  }
.ct-form-sub{color:#fff;font-weight:300;margin-bottom:28px;}
.ct-form{display:flex;flex-direction:column;gap:16px}
.ct-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.ct-field{display:flex;flex-direction:column;gap:6px}
.ct-field label{
    font-size: 12px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
  }
.ct-field input,.ct-field select,.ct-field textarea{
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(90 145 184 / 15%);
   color:var(--cream);padding:13px 16px;
   font-family:var(--body);
   font-size:.85rem;
   font-weight:300;
   outline:none;
   transition:border-color .25s,background .25s;-webkit-appearance:none;appearance:none;resize:none
}
.ct-field input:focus,.ct-field select:focus,.ct-field textarea:focus{border-color:var(--gold);background:rgba(184,151,90,.05)}
.ct-field input::placeholder,.ct-field textarea::placeholder{color:rgba(248,245,239,.2)}
.ct-field select option{background:var(--navy-deep);color:var(--cream)}
.ct-field textarea{height:130px}
.ct-submit{display:flex;align-items:center;justify-content:space-between;margin-top:4px;flex-wrap:wrap;gap:14px}
.ct-note{
    font-size: 12px;
    color: #ffffff26;
    font-weight: 400;
    max-width: 280px;
    line-height: 22px;
  }
.ct-success{display:none;padding:16px 20px;background:rgba(184,151,90,.1);border:1px solid rgba(184,151,90,.3);color:var(--gold-light);font-size:.84rem;font-weight:400;margin-top:4px}
.ct-map{margin-top:28px}
.ct-map-label{font-size:14px;letter-spacing:0.3px;text-transform:uppercase;color:rgba(248,245,239,.65);margin-bottom:10px;display:flex;align-items:center;gap:8px}
.ct-map-label::before{content:'';width:14px;height:1px;background:rgba(184,151,90)}
.map-wrap{border:1px solid rgba(184,151,90,.15);overflow:hidden;height:280px}
.map-wrap iframe{width:100%;height:100%;border:none;filter:grayscale(.3) contrast(1.1)}
@media(max-width:960px){.ct-hero{grid-template-columns:1fr}.ct-hero-right{justify-content:flex-start}.ct-body{grid-template-columns:1fr}.ct-left{padding:40px 0;border-right:none;border-bottom:1px solid rgba(184,151,90,.1)}.ct-right{padding:40px 0}}
@media(max-width:640px){.ct-row{grid-template-columns:1fr}.ct-channel{min-width:140px}.ct-hero{padding:60px 5% 40px}}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer{background:var(--navy-deep);padding:60px 0 0}
.footer-inner{display:grid;grid-template-columns:2fr 1fr 1.5fr 1.5fr;gap:20px;}
.ft-name{font-family:var(--head);font-size:26px;font-weight:400;color:var(--cream);margin-bottom:3px}
.ft-creds{
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    line-height: 28px;
}
.ft-about{color:#fff;font-weight:300;margin-bottom:20px}
.ft-col-title{
    font-family: var(--head);
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
  }
.ft-links{list-style:none;display:flex;flex-direction:column;gap:9px;padding-left: 0}
.ft-links a{color:#fff;text-decoration:none;font-weight:300;transition:color .2s}
.ft-links a:hover{color:var(--gold-light)}
.ft-c-item{
    color: #fff;
    font-weight: 300;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    justify-content: start;
}
.ft-c-item a{color:#fff;text-decoration:none}
.ft-c-item a:hover{color:var(--gold-light)}
.footer-bottom{margin-top:35px;padding: 20px 0;border-top:1px solid rgba(255,255,255,.05);color:#fff}

/* ══════════════════════════════════
   STICKY FLOAT BUTTONS
══════════════════════════════════ */
.float-btns{
    position: fixed;
    bottom: 95px;
    left: 0px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
}
.float-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: var(--body);
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: box-shadow .3s,transform .3s;
}
.float-btn:hover{
  box-shadow:0 8px 32px rgba(0,0,0,.35);
  transform:translateX(-5px)
}
.float-btn .fb-icon{
    width: 50px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
/* WhatsApp */
.fb-wa{background:var(--navy-mid);color:#fff}
.fb-wa .fb-icon{background:#6ac12a}
/* Call */
.fb-call{background:var(--gold);color:var(--navy)}
.fb-call .fb-icon{background:rgba(0,0,0,.18);color:#fff}
/* pulse ring */
.fb-wa::before,.fb-call::before{    
    content: '';
    position: absolute;
    top: 50%;
    left: 25px;
    width: 40px;
    height: 40px;
    border-radius: 60px;
    transform: translate(-50%,-50%) scale(1);
    opacity: 0;
    border: 2px solid currentColor;
    animation: fPulse 2.5s ease-out infinite;
}
@keyframes fPulse{0%{transform:translate(-50%,-50%) scale(.8);opacity:.6}100%{transform:translate(-50%,-50%) scale(2);opacity:0}}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:960px){
  #hero .hero-slide{grid-template-columns:1fr}
  /*.hero-right-col{display:none}*/
  .about-grid{grid-template-columns:1fr;gap:36px}
  .about-sticky{position:static}
  .svc-grid{grid-template-columns:repeat(2,1fr)}
  .hosp-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .faq-grid{grid-template-columns:1fr}
  .faq-sticky{position:static}
  .contact-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
  .svc-intro{grid-template-columns:1fr;gap:18px}
  .review-card{flex:0 0 calc(50% - 11px)}
}
@media(max-width:991px){
  .nav-links,.nav-cta{display:none}
  nav.menu-open .nav-links{
    display:flex;flex-direction:column;
    position:fixed;top:120px;left:0;right:0;
    background:var(--navy-deep);padding:22px 5%;
    border-bottom:1px solid rgba(184,151,90,.12);z-index:499;
  }
  nav.menu-open .nav-cta{display:block;margin:0 5% 18px;width:auto;text-align:center;padding:12px 20px}
  .hamburger{display:flex}
  .svc-grid{grid-template-columns:repeat(2,1fr); background: transparent;}
  .footer-inner{grid-template-columns:repeat(2,1fr);}
  .review-card{flex:0 0 calc(100% - 0px)}
  h1{font-size:2.2rem}
  .float-btn .fb-label{display:none}
  .float-btn{padding:0;width:52px;border-radius:50%}
  .float-btn .fb-icon{border-radius:50%}
}

.logo{
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo .logo-icon img {
    width: 110px;
    margin-bottom: 0px;
}

.bb-short {
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.bb-short::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width:55%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.logo .logo-text h2 {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 34px;
    line-height: 44px;
    color: #fff;
    margin-bottom: 5px;
    font-family: var(--head);
}

.logo .logo-text h3 {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    font-family:  var(--body);
    margin-bottom: 2px;
}

.lightbox-gallery{
    padding: 50px 0;
    color: #000;
overflow-x: hidden;
}

.lightbox-gallery .photos{
    padding-bottom:20px;
}
.lightbox-gallery .item{
    padding-bottom:30px
}
.lightbox-gallery .item img{
    border: 1px solid #c6c6c6;
    padding: 3px;
}
.lb-nav a.lb-next, .lb-nav a.lb-prev{
    opacity: 1 !important;
    position: absolute;
}
.lb-nav a.lb-next{
    right: -45% !important;
}
.lb-nav a.lb-prev{
    left: -45% !important;
}
.lb-data .lb-number{
    display: none !important;
}
.lb-dataContainer{
    position: absolute;
    top: -5%;
    right: 20%;
}

  /* ── Page layout: sidebar nav + main ── */
  .sv-layout {
    /* max-width: 1280px; */
    /* margin: 0 auto; */
    padding: 60px 0;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 20px;
    align-items: start;
  }

  /* ── Sidebar quick nav ── */
  .sv-sidenav {
    position: sticky;
    top: 0px;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
  }
  .sv-sidenav__title {
     font-family: var(--head);
    font-size: 26px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--text);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
  }
  .sv-sidenav__list { display: flex; flex-direction: column; gap: 2px; }
  .sv-sidenav__item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    font-size: 16px;
    margin-bottom: 5px;
    color:var(--text);
    background: var(--cream);
    text-decoration: none;
    border-left: 2px solid var(--gold);
    transition: 0.5s;
  }
  .sv-sidenav__item:hover {
    color: #fff; 
    background: var(--navy);
  }
  .sv-sidenav__item.active {
    color: #fff; 
    background: var(--navy);
    border-left-color: var(--gold);
  }
  .sv-sidenav__icon {     
    font-size: 16px;
    flex-shrink: 0;
    padding-left: 10px; 
  }
  .sv-category[data-hidden="true"] { display: none; }

  .sv-category__title {
    font-family: var(--head);
    font-size: 24px;
    font-weight: 500;
    color: var(--navy);
    line-height: 34px;
    margin-bottom: 5px;
  }

  .sv-category__title-two {
    font-family: var(--head);
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    line-height: 32px;
    margin-bottom: 5px;
  }

 .headend .cond{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

.headend ul li{
  padding: 5px 0;
}
.headend ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 5px;
}
.headend ul li i{
  color: var(--gold);
  padding-right: 10px;
}


  /* ── Responsive ── */
  @media(max-width:960px){
    .sv-layout { grid-template-columns:1fr; }
    .sv-card__body-inner { grid-template-columns:1fr; }
    .sv-card__panel { order:-1; }
  }
  @media(max-width:640px){
    .sv-hero__content { padding:6rem 1.25rem 3rem; }
    .sv-filter__inner { padding:0 1rem; }
    .sv-card__head { padding:1.1rem; gap:1rem; }
    .sv-card__body-inner { padding:1.25rem; gap:1.25rem; }
  }