﻿/* ========= Base ========= */
:root{
  --bg: #eaf7f7;
  --bg2: #ffffff;
  --text: #0b1726;
  --muted: #5b6b7a;

  --brand: #0ea5a4;      /* teal */
  --brand-dark: #0b8b8a;
  --brand-soft: rgba(14,165,164,.12);

  --card: #ffffff;
  --border: rgba(15, 23, 42, .10);
  --shadow: 0 12px 30px rgba(2, 25, 34, 0.08);
  --shadow-soft: 0 10px 24px rgba(2, 25, 34, 0.06);

  --radius: 18px;
  --radius-lg: 22px;
  --container: 1120px;
}


html, body {
  width: 100%;
  overflow-x: hidden;
}



*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 45%, #ffffff 100%);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ========= Top Nav ========= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
}
.brand-badge{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
}
.brand-badge img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 67%;
}
/* band glow logo */

.brand-badge{
  position: relative;
  overflow: visible;
}

.brand-badge::after{
  content: "";
  position: absolute;
  inset: -8px;
  background: radial-gradient(
    circle,
    rgba(14,165,164,0.35) 0%,
    rgba(14,165,164,0.18) 40%,
    rgba(14,165,164,0) 75%
  );
  filter: blur(6px);
  z-index: -1;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-title{
  font-weight: 800;
  font-size: 14px;
}
.brand-sub{
  font-size: 12px;
  color: var(--muted);
}

.navlinks{
  display:flex;
  gap: 18px;
  align-items:center;
  justify-content:center;
  flex: 1;
}
.navlinks a{
  font-size: 13px;
  color: #3b4a59;
  padding: 10px 10px;
  border-radius: 10px;
}
.navlinks a.active{
  color: var(--brand-dark);
  font-weight: 700;
  background: rgba(14,165,164,.08);
}

.navright{
  display:flex;
  align-items:center;
  gap: 10px;
  justify-content:flex-end;
  min-width: 220px;
}
.lang{
  display:flex;
  gap: 8px;
  align-items:center;
}
.pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  color: #3b4a59;
}
.pill.active{
  border-color: rgba(14,165,164,.35);
  background: rgba(14,165,164,.08);
  color: var(--brand-dark);
  font-weight: 700;
}

/* ========= Hero ========= */
.hero{
  padding: 52px 0 34px;
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 70%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items:center;
}

/* Fix fo mobile */

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

@media (max-width: 520px){
  .brand, .navright{
    min-width: 0 !important;
  }
  .container{
    width: calc(100% - 24px);
  }
}


img, svg, video, iframe {
  max-width: 100%;
}

/*end of mobile fix */

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  color: var(--brand-dark);
  background: rgba(14,165,164,.10);
  border: 1px solid rgba(14,165,164,.16);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.h1{
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.lead{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-actions{
  display:flex;
  gap: 12px;
  margin-top: 18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 11px 16px;
  font-size: 13px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn.primary{
  border-color: rgba(14,165,164,.35);
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 14px 26px rgba(14,165,164,.18);
}
.btn.primary:hover{ background: #0a7f7e; }
.btn.outline{
  background: #fff;
  color: var(--brand-dark);
  border-color: rgba(14,165,164,.35);
}

/* ========= Carousel (Hero) ========= */
.hero-media{
  position: relative;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 30px rgba(2, 25, 34, 0.08);
  overflow: hidden; /* <-- ADD THIS */
}


.hero-media::before{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: calc(var(--radius-lg) + 8px);
  background: rgba(14,165,164,.22);
  transform: rotate(-2.2deg);
  z-index:0;
}

.carousel{
  position:relative;
  width:100%;
  aspect-ratio: 16/9; /* matches your 1080x566-ish */
  border-radius: var(--radius);
  overflow:hidden;
  background: #f3fbfb;
  z-index:1;
}

.carousel img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity:0;
  transform: translateX(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.carousel img.active{
  opacity:1;
  transform: translateX(0);
}

.cbtn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.88);
  color: var(--brand-dark);
  font-size: 20px;
  cursor:pointer;
  opacity: 0;
  transition: opacity .2s ease, transform .12s ease;
  z-index:2;
}
.carousel:hover .cbtn{ opacity:1; }
.cbtn:hover{ transform: translateY(-50%) scale(1.03); }
.cbtn.prev{ left: 12px; }
.cbtn.next{ right: 12px; }

.cdots{
  position:absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display:flex;
  gap: 8px;
  z-index:2;
}
.cdot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(15,23,42,.10);
  cursor:pointer;
}
.cdot.active{
  background: rgba(14,165,164,.85);
  border-color: rgba(14,165,164,.25);
}

/* ========= Section header band ========= */
.band{
  padding: 36px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 90%);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.band h2{
  margin:0;
  text-align:center;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.band p{
  margin: 8px auto 0;
  text-align:center;
  color: var(--brand-dark);
  font-size: 13px;
  max-width: 620px;
}

/* ========= Cards ========= */
.section{
  padding: 44px 0;
  background: #fff;
}

.section-title{
  text-align:center;
  margin: 0 0 22px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

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

.card{
  background: var(--card);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(2,25,34,0.05);
}

.iconbox{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(14,165,164,.12);
  border: 1px solid rgba(14,165,164,.14);
  display:grid;
  place-items:center;
  margin-bottom: 10px;
}
.iconbox svg{ width: 18px; height: 18px; color: var(--brand-dark); }

.card h3{
  margin:0 0 8px;
  font-size: 14px;
}
.card p{
  margin:0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

/* Service cards underline like screenshot */
.service-card{
  padding-bottom: 16px;
  position: relative;
}
.service-card::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: rgba(14,165,164,.60);
}
.service-card.blue::after{ background: rgba(59,130,246,.70); }
.service-card.green::after{ background: rgba(34,197,94,.70); }

/* ========= About top image+text row ========= */
.about-row{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items:center;
  padding: 34px 0 10px;
}
.about-photo{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-soft);
  background:#fff;
}
.about-photo img{ width:100%; height:auto; display:block; }
.about-text p{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  max-width: 620px;
}

/* ========= Values list card ========= */
.checklist{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 6px;
}
.check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--muted);
  font-size: 13px;
}
.check svg{ width: 18px; height: 18px; color: var(--brand-dark); flex:0 0 auto; margin-top:2px; }

/* ========= Stats ========= */
.stats{
  padding: 30px 0 50px;
  background: #fff;
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat{
  background: rgba(14,165,164,.08);
  border: 1px solid rgba(14,165,164,.14);
  border-radius: 16px;
  padding: 18px;
  text-align:center;
}
.stat strong{
  font-size: 22px;
  color: var(--brand-dark);
}
.stat span{
  display:block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

/* ========= Booking CTA band ========= */
.cta{
  background: linear-gradient(180deg, #0f9ea0 0%, #0b8b8a 100%);
  color:#fff;
  padding: 54px 0;
}
.cta h3{
  margin:0;
  text-align:center;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.cta p{
  margin: 10px auto 0;
  text-align:center;
  max-width: 700px;
  font-size: 12.5px;
  opacity:.92;
  line-height: 1.65;
}
.cta .cta-actions{
  display:flex;
  justify-content:center;
  margin-top: 18px;
}
.cta .btn{
  background:#fff;
  color: var(--brand-dark);
  border-color: rgba(255,255,255,.55);
}
.cta .btn:hover{
  box-shadow: 0 16px 28px rgba(0,0,0,.15);
}

/* ========= Footer ========= */
.footer{
  background: #0b1428;
  color: rgba(255,255,255,.86);
  padding: 44px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
  align-items:flex-start;
}
.footer h4{
  margin:0 0 10px;
  font-size: 13px;
  color:#fff;
}
.footer p, .footer a, .footer li{
  color: rgba(255,255,255,.70);
  font-size: 12.5px;
  line-height: 1.65;
}
.footer ul{ margin:0; padding-left: 16px; }
.footer .brand{
  min-width:auto;
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 22px;
  padding-top: 14px;
  text-align:center;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* ========= Contact layout ========= */
.contact-row{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 18px;
  align-items:start;
  padding: 40px 0 10px;
}
.info-stack{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.info-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: 14px;
  background: #f7fbfb;
  border: 1px solid rgba(15,23,42,.08);
}
.info-item .iconbox{
  margin:0;
  flex:0 0 auto;
}
.info-item b{
  display:block;
  font-size: 12px;
  margin-bottom: 3px;
}
.info-item span{
  display:block;
  font-size: 12px;
  color: var(--muted);
}

.map{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  box-shadow: var(--shadow-soft);
  height: 310px;
}
.map iframe{
  width:100%;
  height:100%;
  border:0;
}

/* ========= Responsive ========= */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .navlinks{ display:none; }
  .nav{ justify-content:space-between; }
  .about-row{ grid-template-columns: 1fr; }
  .contact-row{ grid-template-columns: 1fr; }
}
@media (max-width: 780px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr; }
  .h1{ font-size: 36px; }
}
/* ===== Language Switch (segmented control) ===== */
.lang-switch{
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 18px rgba(2,25,34,.06);
  gap: 4px;
}

.lang-switch .lang-option{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(15,23,42,.55);
  line-height: 1;
  transition: background .15s ease, color .15s ease, transform .12s ease;
  user-select: none;
}

.lang-switch .lang-option:hover{
  transform: translateY(-1px);
}

/* Active state (your JS should toggle .active) */
.lang-switch .lang-option.active{
  background: rgba(15,23,42,.08);
  color: rgba(15,23,42,.88);
}
/* ===== Mobile Header + Menu (no HTML edits needed) ===== */

/* Stop header layout from forcing weird widths on phones */
@media (max-width: 980px){
  .container{
    width: calc(100% - 24px);
  }

  .nav{
    gap: 10px;
  }

  .brand{
    min-width: 0 !important;
  }

  .brand-sub{
    display: none; /* kills the 2nd line that causes crowding */
  }

  .navright{
    min-width: 0 !important;
  }

  /* your desktop nav links are hidden on mobile anyway */
  .navlinks{
    display: none !important;
  }
}

/* Hamburger button (injected by JS) */
.menu-btn{
  display: none;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(2,25,34,.06);
}

@media (max-width: 980px){
  .menu-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile menu (injected by JS) */
.mobile-menu{
  display: none;
  position: sticky;
  top: 58px; /* sits under sticky header */
  z-index: 45;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.mobile-menu.open{ display: block; }

.mobile-menu a{
  display: block;
  padding: 14px 24px;
  color: #334155;
  font-weight: 700;
  border-top: 1px solid rgba(15,23,42,.06);
}

.mobile-menu a:active{
  background: rgba(14,165,164,.08);
  color: #0b8b8a;
}

/* Footer: stop the 3-column squeeze on mobile */
@media (max-width: 780px){
  .footer-grid{
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  .footer-bottom{
    text-align: left;
    line-height: 1.6;
    padding-top: 16px;
  }
}


/* 2nd try fix for tall carousel. */

/* ===== About cards + carousel layout ===== */
.about-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 32px;
  align-items: start;
}

.about-left{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-right{
  position: relative;
}

/* Mobile */
@media (max-width: 900px){
  .about-layout{
    grid-template-columns: 1fr;
  }

  .about-right{
    order: -1;
  }
}


/* ===== About page carousel: tall but controlled ===== */
.about-layout .carousel{
  aspect-ratio: 1 / 3;     /* tall, but not ridiculous */
  max-height: 480px;       /* hard cap so it never dominates */
  width: 100%;
}


/* Optional: make it feel more premium */
.about-layout .hero-media{
  padding: 20px;
}


/* About page – control crop for tall images */
.about-layout .carousel img{
  object-fit: cover;
  object-position: center 25%; /* bias toward top so faces aren't chopped */
}


/* logo style */

.brand-badge img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
