﻿:root{
  --green:#006b5d;
  --green-2:#008476;
  --dark:#004238;
  --gold:#d99a12;
  --soft:#f3fbf9;
  --line:#e6efec;
  --text:#183c37;
  --muted:#667c78;
  --white:#fff;
  --shadow:0 14px 34px rgba(13,70,62,.12);
  --radius:18px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Cairo",sans-serif;
  background:#fbfdfc;
  color:var(--text);
  line-height:1.75;
}

body.is-loading{
  overflow:hidden;
}

a{text-decoration:none;color:inherit}
img{display:block;width:100%}

.page-loader{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:0 6% 8vh;
  background:
    linear-gradient(90deg,rgba(0,50,45,.08),rgba(0,50,45,.18)),
    url("../images/loader.jpeg") center/cover no-repeat;
  opacity:1;
  visibility:visible;
  transition:opacity .75s ease,visibility .75s ease;
}

.page-loader.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.loader-panel{
  width:min(520px,86vw);
  display:grid;
  justify-items:center;
  gap:18px;
  transform:translateY(0);
  transition:transform .75s ease;
}

.page-loader.is-hidden .loader-panel{
  transform:translateY(18px);
}

.loader-pulse{
  width:18px;
  height:18px;
  border-radius:50%;
  background:#12b8a5;
  box-shadow:0 0 0 0 rgba(18,184,165,.45);
  animation:loaderPulse 1.35s ease-out infinite;
}

.loader-progress{
  width:100%;
  height:5px;
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,.24);
  box-shadow:0 12px 34px rgba(0,0,0,.18);
}

.loader-progress span{
  display:block;
  width:42%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#d99a12,#12b8a5,#fff);
  animation:loaderProgress 1.25s ease-in-out infinite;
}

@keyframes loaderPulse{
  0%{box-shadow:0 0 0 0 rgba(18,184,165,.45)}
  80%,100%{box-shadow:0 0 0 22px rgba(18,184,165,0)}
}

@keyframes loaderProgress{
  0%{transform:translateX(145%)}
  100%{transform:translateX(-245%)}
}

.topbar{
  height:54px;
  background:linear-gradient(90deg,#006153,#00463d);
  color:white;
  padding:0 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

.topbar > div:last-child{
  order:-1;
  display:flex;
  gap:20px;
}

.topbar a{color:white;opacity:.95}
.topbar a:hover{color:var(--gold)}

header{
  position:sticky;
  top:0;
  z-index:99;
  min-height:108px;
  padding:0 6%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  box-shadow:0 8px 22px rgba(2,44,34,.06);
}

.logo{
  width:148px;
  height:148px;
  margin-top:-46px;
  border:0;
  border-radius:50%;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 28px rgba(0,75,65,.12);
  overflow:visible;
}

.logo img{
  width:170%;
  height:170%;
  object-fit:contain;
}

header > .logo{
  grid-column:2;
  grid-row:1;
  justify-self:center;
  z-index:2;
}

.menu-toggle{
  display:none;
}

nav{
  grid-column:1 / -1;
  grid-row:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:190px;
  font-weight:800;
  color:#172f2b;
  padding-inline:170px;
}

.nav-group{
  display:flex;
  align-items:center;
  gap:clamp(18px,2.1vw,34px);
}

.nav-group-start{
  justify-content:flex-start;
}

.nav-group-end{
  justify-content:flex-end;
}

nav a:first-child{color:var(--gold)}
nav a:hover{color:var(--green)}

header > .btn{
  justify-self:start;
  grid-column:1;
  grid-row:1;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:0;
  cursor:pointer;
  border-radius:999px;
  padding:12px 26px;
  font-family:"Cairo",sans-serif;
  font-weight:900;
  color:white;
  background:linear-gradient(135deg,var(--gold),#c47f00);
  box-shadow:0 12px 22px rgba(217,154,18,.22);
  transition:.22s ease;
}

.btn:hover{transform:translateY(-2px)}
.dark-btn{background:linear-gradient(135deg,#00796b,#004c42);box-shadow:0 12px 22px rgba(0,105,92,.22)}
.btn.gold{background:linear-gradient(135deg,var(--gold),#c47f00);color:white}

.hero{
  position:relative;
  min-height:510px;
  padding:34px 6% 42px;
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:54px;
  align-items:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 0 32%,rgba(0,132,118,.11),transparent 28%),
    linear-gradient(180deg,#fff,#f6fbfa);
}

.hero > div:first-child{max-width:560px}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#f7f4eb;
  color:#3d5f58;
  border:1px solid #eadbbd;
  border-radius:999px;
  padding:7px 15px;
  font-size:13px;
  font-weight:900;
  margin-bottom:22px;
}

.eyebrow i{color:var(--gold)}

.hero h1{
  color:var(--green);
  font-size:52px;
  line-height:1.22;
  font-weight:900;
  margin-bottom:22px;
  letter-spacing:0;
}

.hero h1 span{color:var(--gold)}

.hero p{
  color:#233b37;
  font-size:17px;
  max-width:560px;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.hero-visual{
  position:relative;
  padding:10px 0 10px 18px;
}

.hero-visual:before{
  content:"";
  position:absolute;
  inset:0 auto 0 -12px;
  width:86%;
  border:2px solid rgba(217,154,18,.55);
  border-right:0;
  border-radius:100px 0 0 100px;
  pointer-events:none;
}

.hero-visual img{
  height:455px;
  object-fit:cover;
  object-position:center 48%;
  border-radius:88px 0 0 88px;
  box-shadow:var(--shadow);
}

.hero-visual img.reception-img{
  object-position:center 48%;
}

.glass-card{
  position:absolute;
  right:26px;
  bottom:38px;
  width:245px;
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  box-shadow:0 18px 36px rgba(26,54,48,.16);
  color:var(--dark);
}

.glass-card strong{
  display:block;
  font-size:19px;
  margin-bottom:6px;
}

.glass-card span{color:#2f4944;font-weight:800}

section{padding:34px 6%}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}

.tag{
  color:var(--green);
  font-size:25px;
  font-weight:900;
}

.tag:before,.tag:after{
  content:"";
  display:inline-block;
  width:18px;
  height:2px;
  background:var(--gold);
  vertical-align:middle;
  margin:0 8px;
}

.section-head h2{
  color:var(--dark);
  font-size:18px;
  font-weight:700;
  margin-top:2px;
}

.section-head p{
  color:var(--muted);
  font-size:15px;
}

.three-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}

.services-slider{
  position:relative;
  max-width:1120px;
  min-height:650px;
  margin:0 auto;
  padding:46px 76px 78px;
  perspective:1600px;
}

.services-grid{
  position:relative;
  display:block;
  height:560px;
  padding-top:0;
}

.card,.review-card,.contact-card,form,.booking-info{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.card{
  position:relative;
  overflow:visible;
  transition:.28s ease;
}

.services-grid .card:before,
.services-grid .card:after{
  content:"";
  position:absolute;
  inset:26px 18px -18px;
  border-radius:26px;
  pointer-events:none;
  transition:.28s ease;
}

.card img.dermatology-img{
  object-position:center 54%;
}

.card img.dental-img{
  object-position:center 50%;
}

.card img.dental-lab-img{
  object-position:center 42%;
}

.card img.emergency-img{
  object-position:center 50%;
}

.service-icon{
  position:absolute;
  top:-48px;
  right:30px;
  width:76px;
  height:76px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--green),#00483f);
  color:white;
  border:6px solid #eef8f6;
  font-size:30px;
  box-shadow:0 8px 18px rgba(0,75,65,.22);
}

.services-grid .service-icon{
  top:-42px;
  right:34px;
  width:82px;
  height:82px;
  border-width:7px;
}

.card-content h3{
  color:var(--green);
  font-size:22px;
  margin-bottom:8px;
}

.card-content p{color:#526864;margin-bottom:14px}

.service-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:16px;
  text-align:right;
}

.service-list div{
  color:#315650;
  background:#f7fbfa;
  border:1px solid var(--line);
  border-radius:12px;
  padding:8px 10px;
  font-size:12px;
  font-weight:800;
}

.services-grid .service-list div{
  background:linear-gradient(180deg,#f9fdfc,#f3faf8);
  border-color:#ddebe8;
}

.service-list i{color:var(--green)}

.coming-soon-card{
  border-color:rgba(217,154,18,.35);
}

.coming-soon-card:before{
  background:linear-gradient(135deg,rgba(217,154,18,.2),rgba(0,107,93,.11));
}

.soon-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  border-radius:999px;
  padding:6px 14px;
  background:#fff7e6;
  color:#9a6700;
  border:1px solid rgba(217,154,18,.35);
  font-size:13px;
  font-weight:900;
}

.slider-btn{
  position:absolute;
  top:44%;
  z-index:8;
  width:54px;
  height:54px;
  border:0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:white;
  color:var(--green);
  box-shadow:0 16px 34px rgba(15,80,70,.16);
  font-size:18px;
  transition:.22s ease;
}

.slider-btn:hover{
  background:var(--green);
  color:white;
  transform:translateY(-2px);
}

.slider-next{right:0}
.slider-prev{left:0}

.slider-dots{
  position:absolute;
  left:50%;
  bottom:16px;
  z-index:8;
  display:flex;
  gap:10px;
  transform:translateX(-50%);
}

.slider-dots button{
  width:10px;
  height:10px;
  border:0;
  border-radius:999px;
  background:#cfe2de;
  cursor:pointer;
  transition:.22s ease;
}

.slider-dots button.is-active{
  width:34px;
  background:var(--green);
}

.services-slider{
  max-width:1220px;
  min-height:720px;
  padding:30px 76px 150px;
  perspective:none;
}

.services-grid{
  position:relative;
  height:530px;
  border-radius:34px;
  overflow:hidden;
  background:#062f2b;
  box-shadow:0 28px 70px rgba(0,55,48,.18);
}

.services-grid .card,
.services-grid .card.is-active,
.services-grid .card.is-prev,
.services-grid .card.is-next,
.services-grid .card.is-hidden{
  position:absolute;
  inset:0;
  top:0;
  left:0;
  width:100%;
  min-height:100%;
  padding:0;
  border-radius:0;
  background:#052f2a;
  box-shadow:none;
  opacity:0;
  pointer-events:none;
  overflow:hidden;
  transform:translateX(8%) scale(1.04);
  filter:none;
  transition:opacity .65s ease,transform .85s ease;
}

.services-grid .card:before,
.services-grid .card:after{
  display:none;
}

.services-grid .card.is-active{
  z-index:4;
  opacity:1;
  pointer-events:auto;
  transform:translateX(0) scale(1);
}

.services-grid .card.is-prev{
  z-index:2;
  opacity:0;
  transform:translateX(-10%) scale(1.04);
}

.services-grid .card.is-next,
.services-grid .card.is-hidden{
  z-index:1;
  opacity:0;
  transform:translateX(10%) scale(1.04);
}

.services-grid .card > img{
  position:absolute;
  inset:0;
  z-index:1;
  width:100%;
  height:100%;
  margin:0;
  border-radius:0;
  object-fit:cover;
  box-shadow:none;
  transform:scale(1.03) translateX(-10px);
  transition:transform 1.1s ease;
}

.services-grid .card.is-active > img{
  transform:scale(1) translateX(0);
}

.services-grid .card:has(.soon-badge) > img{
  filter:saturate(.92);
}

.services-grid .card-content{
  position:absolute;
  z-index:3;
  top:50%;
  right:52px;
  width:min(450px,44%);
  max-height:calc(100% - 64px);
  margin:0;
  padding:30px;
  overflow:auto;
  border-radius:26px;
  background:rgba(255,255,255,.9);
  box-shadow:0 26px 60px rgba(0,45,39,.22);
  text-align:right;
  transform:translate(34px,-50%);
  opacity:0;
  transition:opacity .55s ease .16s,transform .65s ease .16s;
  backdrop-filter:blur(14px);
}

.services-grid .card.is-active .card-content{
  opacity:1;
  transform:translate(0,-50%);
}

.services-grid .card-content:before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  background:linear-gradient(180deg,var(--gold),var(--green));
}

.services-grid .service-icon{
  position:static;
  width:64px;
  height:64px;
  margin-bottom:14px;
  border-width:5px;
}

.services-grid .card-content h3{
  font-size:27px;
  line-height:1.28;
  margin-bottom:10px;
}

.services-grid .card-content p{
  color:#365650;
  font-size:15px;
}

.services-grid .service-list{
  grid-template-columns:1fr 1fr;
  gap:9px;
}

.services-grid .service-list div{
  background:rgba(243,250,248,.9);
}

.slider-btn{
  top:calc(50% - 36px);
  background:rgba(255,255,255,.92);
}

.slider-next{right:18px}
.slider-prev{left:18px}

.slider-dots{
  left:50%;
  right:auto;
  bottom:22px;
  width:min(980px,calc(100% - 120px));
  justify-content:center;
  gap:14px;
}

.slider-dots button{
  width:calc(25% - 11px);
  height:96px;
  padding:0;
  display:grid;
  grid-template-columns:92px 1fr;
  align-items:center;
  gap:12px;
  overflow:hidden;
  border:1px solid rgba(0,107,93,.12);
  border-radius:18px;
  background:rgba(255,255,255,.92);
  color:var(--dark);
  text-align:right;
  box-shadow:0 14px 34px rgba(15,80,70,.09);
}

.slider-dots button.is-active{
  width:calc(25% - 11px);
  background:white;
  border-color:rgba(217,154,18,.55);
  box-shadow:0 18px 42px rgba(15,80,70,.15);
}

.slider-dots img{
  width:92px;
  height:96px;
  object-fit:cover;
}

.slider-dots span{
  font-size:14px;
  font-weight:900;
}

.stats-band{
  margin:0;
  padding:28px 6%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  background:linear-gradient(90deg,#006b5d,#00483f);
  color:white;
  border-radius:16px 16px 0 0;
}

.stat-item{
  display:grid;
  grid-template-columns:auto auto;
  justify-content:center;
  align-items:center;
  gap:0 14px;
  border-left:1px solid rgba(255,255,255,.16);
}

.stat-item:last-child{border-left:0}
.stat-item i{grid-row:1 / span 2;color:var(--gold);font-size:42px}
.stat-item strong{color:var(--gold);font-size:30px;font-weight:900;line-height:1}
.stat-item span{font-weight:800}

.about{
  overflow:hidden;
  background:#fbfdfc;
  padding:74px 6% 64px;
}

.about-wrap{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:42px;
  align-items:stretch;
}

.about-media{
  position:relative;
  min-height:540px;
  overflow:hidden;
  border-radius:32px;
  box-shadow:0 28px 70px rgba(15,80,70,.16);
  isolation:isolate;
}

.about-media:after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg,rgba(0,66,56,.08),rgba(0,66,56,.46));
  pointer-events:none;
}

.about-media img{
  width:100%;
  height:100%;
  min-height:540px;
  object-fit:cover;
  border-radius:32px;
}

.about-glass-card{
  position:absolute;
  top:28px;
  left:28px;
  z-index:2;
  min-width:168px;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.44);
  border-radius:22px;
  background:rgba(255,255,255,.74);
  backdrop-filter:blur(16px);
  box-shadow:0 20px 45px rgba(0,45,39,.16);
  text-align:center;
}

.about-stars{
  display:flex;
  justify-content:center;
  gap:4px;
  color:var(--gold);
  font-size:13px;
  margin-bottom:8px;
}

.about-glass-card strong{
  display:block;
  color:var(--green);
  font-size:34px;
  font-weight:900;
  line-height:1;
}

.about-glass-card span{
  color:var(--dark);
  font-size:13px;
  font-weight:900;
}

.about-feature-grid{
  position:absolute;
  right:24px;
  left:24px;
  bottom:24px;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.about-feature{
  min-height:116px;
  display:grid;
  align-content:center;
  justify-items:center;
  gap:5px;
  padding:16px 12px;
  border:1px solid rgba(255,255,255,.36);
  border-radius:20px;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(14px);
  box-shadow:0 18px 42px rgba(0,45,39,.12);
  text-align:center;
  transition:transform .24s ease,box-shadow .24s ease;
}

.about-feature:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 54px rgba(0,45,39,.18);
}

.about-feature i{
  color:var(--green);
  font-size:24px;
}

.about-feature strong{
  color:var(--dark);
  font-size:14px;
  font-weight:900;
}

.about-feature span{
  color:#526864;
  font-size:12px;
  font-weight:700;
}

.about-content{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  min-height:540px;
  border:1px solid rgba(0,107,93,.1);
  border-radius:32px;
  background:#fff;
  padding:42px;
  box-shadow:0 22px 56px rgba(15,80,70,.1);
}

.about-kicker{
  width:max-content;
  max-width:100%;
  margin-bottom:10px;
  padding:5px 14px;
  border:1px solid rgba(217,154,18,.3);
  border-radius:999px;
  background:#fffaf0;
  color:var(--green);
  font-size:14px;
  font-weight:900;
}

.about h2{
  max-width:620px;
  color:var(--green);
  font-size:30px;
  font-weight:900;
  line-height:1.45;
  margin-bottom:14px;
}

.about-intro{
  max-width:560px;
  color:#2f4944;
  font-size:15px;
  line-height:2;
  margin-bottom:24px;
}

.about-points{
  display:grid;
  gap:14px;
  margin-bottom:24px;
}

.about-value-card{
  position:relative;
  padding:24px 72px 24px 24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 14px 34px rgba(13,70,62,.08);
  transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;
}

.about-value-card:hover{
  transform:translateY(-4px);
  border-color:rgba(217,154,18,.34);
  box-shadow:0 22px 50px rgba(13,70,62,.13);
}

.about-value-card > i{
  position:absolute;
  top:24px;
  right:24px;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#edf8f5;
  color:var(--green);
  font-size:17px;
}

.about-points strong{
  display:block;
  color:var(--green);
  font-size:19px;
  font-weight:900;
  margin-bottom:5px;
}

.about-points span{color:#344f4a}

.vision-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:6px 18px;
  color:#344f4a;
  margin:10px 18px 0 0;
}

.about-booking-btn{
  width:max-content;
  min-width:230px;
  justify-content:center;
  margin-top:auto;
  padding:14px 28px;
  font-size:16px;
}

.reveal-up{
  opacity:0;
  transform:translateY(24px);
  animation:fadeUp .72s ease forwards;
}

.about-content.reveal-up{
  animation-delay:.12s;
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

#why{padding-top:20px}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.why-card{
  text-align:center;
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px 18px;
  box-shadow:var(--shadow);
}

.why-card i{
  color:var(--green);
  font-size:32px;
  margin-bottom:12px;
}

.why-card h3{color:var(--dark);font-size:18px;margin-bottom:6px}
.why-card p{color:var(--muted);font-size:14px}

.booking-form-section{padding-top:22px;background:#fbfdfc}

.booking-wrap{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:34px;
  align-items:stretch;
}

.booking-info{
  padding:42px;
  background:white;
  color:var(--text);
}

.booking-info h2{
  color:var(--green);
  text-align:center;
  font-size:25px;
  margin-bottom:18px;
}

.booking-info p{
  color:#2f4944;
  text-align:center;
}

form{padding:28px}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

input,select,textarea{
  width:100%;
  border:1px solid #dce8e5;
  border-radius:9px;
  padding:11px 14px;
  font-family:"Cairo",sans-serif;
  font-size:14px;
  outline:none;
  background:white;
}

textarea{grid-column:1/-1;min-height:78px;resize:vertical}
.form-full{grid-column:1/-1;border-radius:8px;background:linear-gradient(135deg,var(--green),#005348)}

.reviews{background:#fbfdfc}
.review-card{padding:24px;text-align:center}
.stars{color:var(--gold);font-size:18px;margin-bottom:8px}
.review-card p{color:#2f4944;margin-bottom:8px}
.review-card strong{color:var(--green)}

.contact{background:#fbfdfc;padding-top:24px}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:24px;
}

.contact-card{
  padding:34px;
  border-radius:18px;
}

.contact-card + .contact-card{
  border-radius:18px;
}

.contact-card h3{color:var(--green);margin-bottom:14px}
.social-note{
  color:#64748b;
  margin-top:8px;
}
.contact-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 0;
  color:#315650;
  font-weight:800;
}

.contact-item i{color:var(--green);width:24px}

.contact-item a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.text-ltr{
  direction:ltr;
  unicode-bidi:isolate;
  display:inline-block;
  font-family:Arial,"Cairo",sans-serif;
  letter-spacing:.2px;
}

.social-big{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.social-big a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  background:var(--green);
}

.social-big a:nth-child(1){background:#1877f2}
.social-big a:nth-child(2){background:#e4405f}
.social-big a:nth-child(3){background:#111}
.social-big a:nth-child(4){background:#000}
.social-big a:nth-child(5){background:#fffc00;color:#222}
.social-big a:nth-child(6){background:#ff0000}
.social-big a:nth-child(7){background:#1d9bf0}

.map-box{
  margin-top:24px;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.map-placeholder{
  min-height:210px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.5)),
    url("https://images.pexels.com/photos/269077/pexels-photo-269077.jpeg");
  background-size:cover;
  background-position:center;
}

.map-placeholder .btn{background:linear-gradient(135deg,var(--green),#004c42)}

.fixed-actions{
  position:fixed;
  left:24px;
  bottom:24px;
  z-index:100;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.fixed-actions a{
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:24px;
  box-shadow:0 12px 26px rgba(0,0,0,.2);
}

.wa{background:#25d366}
.phone{background:var(--green)}
.map-fixed{background:var(--gold)}

footer{
  margin-top:24px;
  padding:48px 6% 0;
  background:linear-gradient(90deg,#006b5d,#003f36);
  color:white;
  border-radius:34px 34px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr repeat(4,1fr);
  gap:32px;
  padding-bottom:34px;
}

.footer-logo{
  width:116px;
  height:116px;
  margin:0 0 16px;
  background:rgba(255,255,255,.96);
  box-shadow:none;
}

.footer-logo img{
  width:172%;
  height:172%;
}

footer h3{font-size:17px;margin-bottom:12px}
footer p,footer a{
  display:block;
  color:#d7efeb;
  font-size:14px;
  margin-bottom:8px;
}

.footer-contact-link{
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-contact-link i{
  width:18px;
  color:#d7efeb;
}

footer a:hover{color:white}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  text-align:center;
  padding:18px 0;
  color:#d7efeb;
}

@media(max-width:1100px){
  nav{gap:150px;padding-inline:126px;font-size:14px}
  .nav-group{gap:14px}
  .three-grid{grid-template-columns:1fr 1fr}
  .services-slider{max-width:900px;padding-inline:58px}
  .services-grid .card{width:min(520px,76vw)}
  .services-grid .card.is-prev{transform:translateX(-84%) translateY(34px) rotateY(-10deg) scale(.78)}
  .services-grid .card.is-next{transform:translateX(-16%) translateY(34px) rotateY(10deg) scale(.78)}
  .why-grid,.stats-band{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:1100px){
  .about{
    padding:64px 5% 56px;
  }

  .about-wrap{
    grid-template-columns:1fr;
    gap:28px;
  }

  .about-media,
  .about-media img{
    min-height:440px;
  }

  .about-content{
    min-height:auto;
    padding:34px;
  }

  .about h2{
    font-size:30px;
  }
}

@media(max-width:850px){
  .topbar{display:none}
  header{
    display:grid;
    grid-template-columns:auto 1fr auto;
    min-height:88px;
    gap:12px;
    justify-content:normal;
    padding:0 4%;
  }
  .logo{width:104px;height:104px;margin:0}
  .logo img{width:172%;height:172%}
  header > .logo{
    grid-column:2;
    justify-self:center;
  }
  .menu-toggle{
    grid-column:3;
    grid-row:1;
    justify-self:end;
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border:1px solid var(--line);
    border-radius:50%;
    background:white;
    color:var(--green);
    font-size:19px;
    box-shadow:0 10px 24px rgba(0,75,65,.1);
    cursor:pointer;
  }
  nav{
    position:absolute;
    top:100%;
    right:4%;
    left:4%;
    z-index:98;
    grid-template-columns:1fr;
    gap:0;
    display:grid;
    padding:14px;
    border:1px solid var(--line);
    border-radius:18px;
    background:white;
    box-shadow:0 18px 44px rgba(2,44,34,.14);
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    pointer-events:none;
    transition:.22s ease;
  }
  nav.is-open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
  }
  .nav-group{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
  }
  nav a{
    padding:11px 12px;
    border-bottom:1px solid #edf4f2;
  }
  .nav-group:last-child a:last-child{
    border-bottom:0;
  }
  header > .btn{
    grid-column:1;
    grid-row:1;
    justify-self:start;
    padding:9px 15px;
  }
  .hero,.about-wrap,.booking-wrap,.contact-grid{grid-template-columns:1fr}
  .hero{padding-top:30px}
  .hero h1{font-size:34px}
  .hero-visual{padding:0}
  .hero-visual:before{display:none}
  .hero-visual img{height:300px;border-radius:28px}
  .glass-card{right:14px;bottom:14px;width:210px;padding:16px}
  .services-slider{
    min-height:690px;
    padding:28px 0 70px;
  }
  .services-grid{
    height:610px;
  }
  .services-grid .card{
    width:min(100%,92vw);
  }
  .services-grid .card.is-active{
    transform:translateX(-50%) scale(1);
  }
  .services-grid .card.is-prev,
  .services-grid .card.is-next{
    opacity:0;
    transform:translateX(-50%) translateY(40px) scale(.82);
  }
  .services-grid .card > img{
    height:210px;
  }
  .slider-btn{
    top:auto;
    bottom:10px;
    width:46px;
    height:46px;
  }
  .slider-next{right:calc(50% - 84px)}
  .slider-prev{left:calc(50% - 84px)}
  .slider-dots{bottom:24px}
  .three-grid,.why-grid,.stats-band,.form-grid,.footer-grid{grid-template-columns:1fr}
  .service-list,.vision-list{grid-template-columns:1fr}
  .contact-card,.contact-card + .contact-card{border-radius:18px}
  .stat-item{border-left:0;border-bottom:1px solid rgba(255,255,255,.16);padding:12px 0}
  .stat-item:last-child{border-bottom:0}
  textarea,.form-full{grid-column:auto}
}

@media(max-width:700px){
  .about{
    padding:52px 4% 48px;
  }

  .about-media{
    min-height:auto;
    overflow:visible;
    display:grid;
    gap:12px;
    border-radius:28px;
    box-shadow:none;
  }

  .about-media:after{
    inset:0 0 auto;
    height:300px;
    border-radius:28px;
    background:linear-gradient(180deg,rgba(0,66,56,.04),rgba(0,66,56,.3));
  }

  .about-media img{
    height:300px;
    min-height:300px;
    border-radius:28px;
    box-shadow:0 22px 52px rgba(15,80,70,.14);
  }

  .about-glass-card{
    top:18px;
    left:18px;
    min-width:142px;
    padding:14px 16px;
  }

  .about-glass-card strong{
    font-size:28px;
  }

  .about-feature-grid{
    position:relative;
    right:auto;
    left:auto;
    bottom:auto;
    grid-template-columns:1fr;
    gap:10px;
  }

  .about-feature{
    min-height:auto;
    grid-template-columns:auto 1fr;
    justify-items:start;
    text-align:right;
    padding:14px 16px;
  }

  .about-feature i{
    grid-row:1 / span 2;
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:#edf8f5;
  }

  .about-content{
    padding:26px 18px;
    border-radius:26px;
  }

  .about h2{
    font-size:23px;
  }

  .about-intro{
    font-size:15px;
  }

  .about-value-card{
    padding:22px 64px 22px 18px;
    border-radius:22px;
  }

  .vision-list{
    grid-template-columns:1fr;
  }

  .about-booking-btn{
    width:100%;
  }
}

@media(max-width:1100px){
  .services-slider{
    max-width:100%;
    min-height:740px;
    padding:26px 58px 142px;
  }

  .services-grid .card,
  .services-grid .card.is-active,
  .services-grid .card.is-prev,
  .services-grid .card.is-next,
  .services-grid .card.is-hidden{
    width:100%;
    transform:translateX(8%) scale(1.04);
  }

  .services-grid .card.is-active{
    transform:translateX(0) scale(1);
  }

  .slider-dots{
    width:calc(100% - 110px);
  }

  .slider-dots button,
  .slider-dots button.is-active{
    grid-template-columns:72px 1fr;
  }

  .slider-dots img{
    width:72px;
  }
}

@media(max-width:850px){
  .services-slider{
    min-height:850px;
    padding:20px 0 198px;
  }

  .services-grid{
    height:640px;
    border-radius:24px;
  }

  .services-grid .card,
  .services-grid .card.is-active,
  .services-grid .card.is-prev,
  .services-grid .card.is-next,
  .services-grid .card.is-hidden{
    width:100%;
    min-height:100%;
  }

  .services-grid .card > img{
    height:100%;
    border-radius:0;
  }

  .services-grid .card-content{
    top:auto;
    right:14px;
    left:14px;
    bottom:14px;
    width:auto;
    max-height:58%;
    padding:24px;
    transform:translateY(24px);
  }

  .services-grid .card.is-active .card-content{
    transform:translateY(0);
  }

  .services-grid .card-content h3{
    font-size:23px;
  }

  .services-grid .service-list{
    grid-template-columns:1fr;
  }

  .slider-btn{
    top:auto;
    bottom:126px;
  }

  .slider-next{right:calc(50% - 72px)}
  .slider-prev{left:calc(50% - 72px)}

  .slider-dots{
    bottom:0;
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    transform:translateX(-50%);
  }

  .slider-dots button,
  .slider-dots button.is-active{
    width:100%;
    height:74px;
    grid-template-columns:64px 1fr;
    border-radius:14px;
  }

  .slider-dots img{
    width:64px;
    height:74px;
  }
}

#services{
  padding-left:0;
  padding-right:0;
}

#services .section-head{
  padding-inline:6%;
}

#services .services-slider{
  width:100%;
  max-width:none;
  padding-left:0;
  padding-right:0;
}

#services .services-grid{
  border-radius:0;
  height:720px;
}

#services .services-slider{
  min-height:920px;
}

#services .slider-next{
  right:32px;
}

#services .slider-prev{
  left:32px;
}

#services .slider-dots{
  width:min(1120px,calc(100% - 12%));
}

@media(max-width:850px){
  #services .services-slider{
    padding-left:0;
    padding-right:0;
  }

  #services .slider-next{
    right:calc(50% - 72px);
  }

  #services .slider-prev{
    left:calc(50% - 72px);
  }

  #services .slider-dots{
    width:calc(100% - 24px);
  }

  #services .services-grid{
    height:760px;
  }

  #services .services-slider{
    min-height:970px;
  }
}

#services .services-grid .card-content,
#services .services-grid .service-list div,
#services .slider-dots button,
#services .slider-dots span{
  font-family:"Cairo",sans-serif;
}

#services .services-grid .card-content h3{
  font-weight:900;
  letter-spacing:0;
}

#services .services-grid .card-content p{
  font-weight:700;
  line-height:1.9;
}

#services .services-grid .service-list div{
  font-size:13px;
  font-weight:800;
  line-height:1.55;
}

#services .slider-dots button{
  font-family:"Cairo",sans-serif;
  color:var(--dark);
}

#services .slider-dots span{
  font-size:15px;
  font-weight:900;
  line-height:1.35;
  letter-spacing:0;
}

@media(max-width:850px){
  #services .slider-dots span{
    font-size:13px;
  }
}

#doctors.doctors-section{
  width:100%;
  overflow:hidden;
  padding:78px 6% 72px;
  background:linear-gradient(180deg,#fbfdfc,#f5fbf9);
}

.doctors-container{
  width:100%;
  margin-inline:auto;
}

#doctors .section-head{
  margin-bottom:28px;
}

#doctors .doctors-slider{
  position:relative;
  width:100%;
  min-height:588px;
  padding:0 48px 44px;
}

.doctors-viewport{
  overflow:hidden;
  min-height:536px;
  padding:8px 4px 26px;
  direction:ltr;
}

.doctors-track{
  display:flex;
  gap:24px;
  direction:ltr;
  transition:transform .62s ease;
  will-change:transform;
}

.doctor-card{
  direction:rtl;
  flex:0 0 calc((100% - 96px) / 5);
  display:flex;
  flex-direction:column;
  min-height:484px;
  overflow:hidden;
  border:1px solid rgba(0,107,93,.13);
  border-radius:22px;
  background:#fff;
  box-shadow:0 18px 42px rgba(15,80,70,.1);
  transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;
}

.doctor-card:hover{
  transform:translateY(-5px);
  border-color:rgba(217,154,18,.38);
  box-shadow:0 26px 58px rgba(15,80,70,.15);
}

.doctor-card__image{
  width:100%;
  height:300px;
  aspect-ratio:4 / 5;
  object-fit:cover;
  object-position:center top;
}

.doctor-card__content{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:22px;
  text-align:right;
}

.doctor-card h3{
  color:var(--green);
  font-size:18px;
  font-weight:900;
  line-height:1.45;
  margin-bottom:4px;
}

.doctor-title{
  color:#526864;
  font-size:13px;
  font-weight:700;
  line-height:1.65;
  margin-bottom:22px;
}

.doctor-card__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:auto;
}

.doctor-card__actions .btn{
  width:100%;
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  line-height:1.35;
  box-shadow:none;
  white-space:normal;
}

.doctor-details-btn{
  border:1px solid var(--green);
  background:#fff;
  color:var(--green);
  gap:6px;
}

.doctor-details-btn:hover{
  border-color:#b9ddd6;
  background:#edf8f5;
  color:var(--dark);
}

.doctor-book-btn{
  border:1px solid var(--green);
  background:var(--green);
  color:#fff;
}

.doctor-book-btn:hover{
  border-color:var(--dark);
  background:var(--dark);
  color:#fff;
}

.doctor-slider-btn{
  position:absolute;
  top:45%;
  z-index:4;
  width:50px;
  height:50px;
  border:0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:#fff;
  color:var(--green);
  box-shadow:0 14px 32px rgba(15,80,70,.14);
  transition:.22s ease;
}

.doctor-slider-btn:hover{
  background:var(--green);
  color:#fff;
}

.doctor-slider-next{right:4px}
.doctor-slider-prev{left:4px}

.doctors-slider.is-static .doctor-slider-btn,
.doctors-slider.is-static .doctor-pagination{
  display:none;
}

.doctor-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:9px;
  min-height:18px;
}

.doctor-pagination button{
  width:10px;
  height:10px;
  border:0;
  border-radius:999px;
  background:#cfe2de;
  cursor:pointer;
  transition:.22s ease;
}

.doctor-pagination button.is-active{
  width:34px;
  background:var(--green);
}

.doctor-drawer-overlay{
  position:fixed;
  inset:0;
  z-index:9997;
  background:rgba(0,36,32,.48);
  opacity:0;
  visibility:hidden;
  transition:opacity .28s ease,visibility .28s ease;
}

.doctor-drawer-overlay.is-open{
  opacity:1;
  visibility:visible;
}

.doctor-drawer{
  position:fixed;
  top:0;
  left:0;
  z-index:9998;
  width:min(500px,94vw);
  height:100vh;
  overflow:auto;
  background:white;
  box-shadow:24px 0 70px rgba(0,0,0,.18);
  transform:translateX(-105%);
  transition:transform .32s ease;
}

.doctor-drawer.is-open{
  transform:translateX(0);
}

.drawer-close{
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:white;
  color:var(--green);
  cursor:pointer;
  box-shadow:0 10px 24px rgba(15,80,70,.15);
}

.drawer-hero{
  padding:28px 28px 22px;
  background:linear-gradient(180deg,#eaf6f3,#fff);
  text-align:center;
}

.drawer-hero img{
  width:170px;
  height:170px;
  margin:20px auto 18px;
  border:7px solid white;
  border-radius:50%;
  object-fit:cover;
  object-position:center top;
  box-shadow:0 16px 34px rgba(0,75,65,.15);
}

.drawer-hero h3{
  color:var(--green);
  font-size:22px;
  font-weight:900;
  line-height:1.45;
}

.drawer-hero p{
  color:#526864;
  font-weight:700;
}

.drawer-content{
  padding-bottom:28px;
}

.drawer-section{
  padding:20px 28px 0;
}

.drawer-section h4{
  color:var(--dark);
  font-size:17px;
  font-weight:900;
  margin-bottom:8px;
}

.drawer-section p,
.drawer-section li{
  color:#526864;
  font-size:14px;
  line-height:1.9;
}

.drawer-section ul{
  display:grid;
  gap:5px;
  margin-right:18px;
}

.drawer-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  padding:20px 28px 0;
}

.drawer-meta div{
  border:1px solid #e2efec;
  border-radius:14px;
  padding:12px;
  background:#fbfefd;
}

.drawer-meta strong{
  display:block;
  color:var(--green);
  font-size:13px;
}

.drawer-meta span{
  color:#526864;
  font-size:13px;
  font-weight:700;
}

.drawer-book{
  width:calc(100% - 56px);
  margin:22px 28px 0;
}

body.drawer-open{
  overflow:hidden;
}

@media(max-width:1599px) and (min-width:1200px){
  .doctor-card{
    flex-basis:calc((100% - 72px) / 4);
  }
}

@media(max-width:1199px) and (min-width:992px){
  .doctor-card{
    flex-basis:calc((100% - 48px) / 3);
  }
}

@media(max-width:991px) and (min-width:768px){
  .doctor-card{
    flex-basis:calc((100% - 24px) / 2);
  }
}

@media(max-width:767px){
  #doctors.doctors-section{
    padding:56px 4% 58px;
  }

  .doctors-container{
    width:100%;
  }

  #doctors .doctors-slider{
    min-height:570px;
    padding-inline:44px;
  }

  .doctor-card{
    flex-basis:100%;
    min-height:484px;
  }
}

@media(max-width:480px){
  #doctors .doctors-slider{
    min-height:610px;
    padding-inline:0;
  }

  .doctors-viewport{
    min-height:532px;
  }

  .doctor-card__actions{
    grid-template-columns:1fr;
  }

  .doctor-slider-btn{
    top:auto;
    bottom:0;
  }

  .doctor-slider-next{right:calc(50% - 64px)}
  .doctor-slider-prev{left:calc(50% - 64px)}
  .doctor-pagination{padding-bottom:54px}
  .doctor-drawer{width:100vw}
  .drawer-meta{grid-template-columns:1fr}
}

/* Final responsive polish: keep mobile layouts compact and prevent drift from older rules. */
html,
body{
  max-width:100%;
  overflow-x:hidden;
}

@media(max-width:850px){
  section{
    padding:42px 4%;
  }

  .section-head{
    max-width:100%;
    margin-bottom:24px;
  }

  .tag{
    font-size:22px;
  }

  .section-head h2{
    font-size:17px;
    line-height:1.7;
  }

  .section-head p{
    font-size:14px;
    line-height:1.9;
  }

  header{
    min-height:76px;
    padding:0 14px;
    gap:8px;
  }

  .logo{
    width:86px;
    height:86px;
    margin-top:0;
  }

  .logo img{
    width:164%;
    height:164%;
  }

  .menu-toggle,
  header > .btn{
    width:42px;
    height:42px;
    padding:0;
    flex:0 0 42px;
    border-radius:50%;
  }

  header > .btn{
    font-size:0;
    gap:0;
  }

  header > .btn i{
    font-size:16px;
  }

  nav{
    right:14px;
    left:14px;
    max-height:calc(100vh - 92px);
    overflow:auto;
  }

  nav a{
    font-size:14px;
    line-height:1.5;
  }

  .hero{
    gap:26px;
    padding:28px 4% 38px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:15px;
    line-height:1.9;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-visual img{
    height:280px;
    border-radius:26px;
  }

  .glass-card{
    width:min(210px,calc(100% - 28px));
    padding:14px;
  }

  #services .services-slider{
    min-height:820px;
    padding-bottom:178px;
  }

  #services .services-grid{
    height:620px;
  }

  #services .services-grid .card,
  #services .services-grid .card.is-active,
  #services .services-grid .card.is-prev,
  #services .services-grid .card.is-next,
  #services .services-grid .card.is-hidden{
    transform:translateX(8%) scale(1.02);
  }

  #services .services-grid .card.is-active{
    transform:translateX(0) scale(1);
  }

  #services .services-grid .card > img{
    object-fit:cover;
    transform:scale(1.01);
  }

  #services .services-grid .card.is-active > img{
    transform:scale(.98);
  }

  #services .services-grid .card-content{
    right:12px;
    left:12px;
    bottom:12px;
    max-height:60%;
    padding:20px;
    border-radius:20px;
  }

  #services .services-grid .card-content h3{
    font-size:21px;
  }

  #services .services-grid .card-content p{
    font-size:14px;
    line-height:1.75;
  }

  #services .services-grid .service-list{
    gap:8px;
  }

  #services .services-grid .service-list div{
    font-size:12px;
    min-height:38px;
  }

  .slider-btn{
    width:42px;
    height:42px;
    z-index:12;
    border:1px solid rgba(0,107,93,.1);
    background:#fff;
    box-shadow:0 12px 28px rgba(0,75,65,.16);
  }

  #services .slider-btn{
    bottom:168px;
  }

  .about-wrap{
    gap:22px;
  }

  .about-media,
  .about-media img{
    min-height:320px;
  }

  .about-content{
    padding:24px 18px;
  }

  .about h2{
    font-size:24px;
  }

  .about-value-card{
    padding:20px 58px 20px 16px;
  }

  .about-points strong{
    font-size:18px;
  }

  #doctors.doctors-section{
    padding:50px 4% 54px;
  }

  #doctors .doctors-slider{
    min-height:540px;
    padding-inline:0;
  }

  .doctors-viewport{
    min-height:492px;
    padding-inline:0;
  }

  .doctor-card{
    min-height:452px;
  }

  .doctor-card__image{
    height:270px;
  }

  .doctor-card__content{
    padding:18px;
  }

  .doctor-card h3{
    font-size:17px;
  }

  .doctor-title{
    font-size:12px;
    margin-bottom:18px;
  }

  .doctor-slider-btn{
    top:auto;
    bottom:0;
  }

  .doctor-slider-next{right:calc(50% - 62px)}
  .doctor-slider-prev{left:calc(50% - 62px)}
  .doctor-pagination{padding-bottom:52px}

  .booking-wrap,
  .contact-grid{
    gap:18px;
  }

  form,
  .booking-info,
  .contact-card{
    padding:24px 18px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .contact-item{
    align-items:flex-start;
    gap:10px;
    font-size:14px;
    line-height:1.8;
  }

  .social-big{
    gap:10px;
  }

  .fixed-actions{
    left:14px;
    bottom:14px;
    gap:8px;
  }

  .fixed-actions a{
    width:48px;
    height:48px;
    font-size:20px;
  }

  footer{
    padding:36px 4% 0;
    border-radius:26px 26px 0 0;
  }
}

@media(max-width:520px){
  .hero h1{
    font-size:28px;
  }

  .eyebrow{
    font-size:12px;
    padding:6px 12px;
  }

  #services .services-slider{
    min-height:780px;
    padding-bottom:168px;
  }

  #services .services-grid{
    height:580px;
  }

  #services .slider-dots{
    grid-template-columns:1fr 1fr;
    gap:8px;
    width:calc(100% - 20px);
  }

  #services .slider-btn{
    bottom:142px;
  }

  #services .slider-dots button,
  #services .slider-dots button.is-active{
    height:64px;
    grid-template-columns:54px 1fr;
  }

  #services .slider-dots img{
    width:54px;
    height:64px;
  }

  .about-media,
  .about-media img,
  .about-media:after{
    height:260px;
    min-height:260px;
  }

  .doctor-card__image{
    height:245px;
  }

  .doctor-card__actions{
    grid-template-columns:1fr;
  }

  .contact-card h3,
  .booking-info h2{
    font-size:20px;
  }
}

