/* ==========================================================================
   CLARIS MEDICAL — Klinikë Private Mjekësore & Dentare
   Design tokens
   ========================================================================== */
:root{
  --white: #FFFFFF;
  --pale-blue: #EAF4F8;
  --pale-blue-deep: #D8ECF3;
  --mint: #E3F6F0;
  --mint-deep: #CFEFE6;
  --teal: #178A97;
  --teal-deep: #106C77;
  --teal-light: #4FB8C4;
  --navy: #0F3049;
  --navy-deep: #082033;
  --charcoal: #263238;
  --gray-cool: #64767E;
  --gray-line: #DCE7EC;

  --font-display: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-lg: 1.1rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.45rem;

  --shadow-soft: 0 30px 60px -25px rgba(15, 48, 73, 0.28);
  --shadow-card: 0 14px 34px -18px rgba(15, 48, 73, 0.22);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  font-weight: 400;
}

h1, h2, h3, h4, .display-font{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

p{ color: var(--gray-cool); }
a{ text-decoration: none; }

.container-xl-soft{
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-py{ padding-block: 5.5rem; }
.section-py-sm{ padding-block: 3.25rem; }

.section-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-deep);
}

.section-title{
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  margin-bottom: 0.5rem;
}

.section-lede{ max-width: 42rem; color: var(--gray-cool); }
.mx-auto-block{ margin-inline: auto; }

.bg-pale-blue{ background-color: var(--pale-blue); }
.bg-mint{ background-color: var(--mint); }
.bg-navy{ background-color: var(--navy); }
.bg-navy-deep{ background-color: var(--navy-deep); }
.text-navy{ color: var(--navy); }
.text-teal{ color: var(--teal); }
.text-white-soft{ color: rgba(255,255,255,0.78); }
.text-muted-cool{ color: var(--gray-cool); }

hr.teal-rule{
  width: 64px;
  height: 2px;
  background: var(--teal);
  border: 0;
  opacity: 1;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  border-radius: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
}

.btn-teal{
  background-color: var(--teal);
  border: 1px solid var(--teal);
  color: var(--white);
}
.btn-teal:hover{
  background-color: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
}

.btn-navy{
  background-color: var(--navy);
  border: 1px solid var(--navy);
  color: var(--white);
}
.btn-navy:hover{
  background-color: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.btn-outline-navy{
  background-color: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover{
  background-color: var(--navy);
  color: var(--white);
}

.btn-outline-white{
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline-white:hover{
  background-color: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.btn-sm-pill{
  border-radius: 3rem;
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-claris{
  background-color: var(--white);
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--gray-line);
}

.brand-mark{
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.brand-mark span{ color: var(--teal); font-weight: 400; }

.navbar-claris .nav-link{
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.4rem 0.85rem;
  transition: color 0.2s ease;
}
.navbar-claris .nav-link:hover,
.navbar-claris .nav-link.active{
  color: var(--teal-deep);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,32,51,0.88) 0%, rgba(8,32,51,0.62) 48%, rgba(8,32,51,0.3) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  padding-block: 3rem 6rem;
}
.hero-eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 1rem;
}
.hero-title{
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title em{ color: var(--teal-light); font-style: italic; }
.hero-lede{
  color: rgba(255,255,255,0.85);
  max-width: 34rem;
  font-size: 1.06rem;
  margin-bottom: 2rem;
}
.hero-trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 2.75rem;
}
.hero-trust-row .stat-number{ color: var(--white); }
.hero-trust-row .stat-label{ color: rgba(255,255,255,0.65); }

/* ==========================================================================
   Quick Info Strip (overlaps hero)
   ========================================================================== */
.quick-info-strip{
  position: relative;
  z-index: 3;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-top: -4.5rem;
  padding: 0.5rem 1rem;
}
.quick-info-item{
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 0.75rem;
}
.quick-info-icon{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--mint);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.quick-info-label{
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-cool);
  margin-bottom: 0.15rem;
}
.quick-info-value{ font-weight: 600; color: var(--navy); font-size: 0.95rem; }

/* ==========================================================================
   Stat numbers (shared)
   ========================================================================== */
.stat-number{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  font-weight: 700;
}
.stat-label{
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--gray-cool);
}

/* ==========================================================================
   Service Cards
   ========================================================================== */
.service-card{
  background-color: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.service-icon{
  width: 62px;
  height: 62px;
  border-radius: 1rem;
  background-color: var(--mint);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}
.service-title{ font-size: 1.15rem; margin-bottom: 0.6rem; }
.service-text{ font-size: 0.9rem; margin-bottom: 1.1rem; }
.service-link{
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-link:hover{ color: var(--navy); }

/* ==========================================================================
   About / Split section
   ========================================================================== */
.split-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.split-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.split-media-badge{
  position: absolute;
  bottom: -1.5rem;
  right: -1.25rem;
  background-color: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
  max-width: 220px;
}
.split-media-badge .stat-number{ color: var(--teal-light); font-size: 2rem; }
.split-media-badge .stat-label{ color: rgba(255,255,255,0.75); }

.stat-row{ border-top: 1px solid var(--gray-line); margin-top: 2.5rem; padding-top: 2rem; }

.check-list{ list-style: none; padding-left: 0; margin-bottom: 0; }
.check-list li{
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.check-list i{ color: var(--teal); font-size: 1.05rem; margin-top: 0.1rem; }

/* ==========================================================================
   Doctor Cards
   ========================================================================== */
.doctor-card{
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.doctor-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 46px -20px rgba(15, 48, 73, 0.3);
}
.doctor-card-img{ height: 280px; overflow: hidden; }
.doctor-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.doctor-card:hover .doctor-card-img img{ transform: scale(1.06); }
.doctor-card-body{ padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.doctor-card-name{ font-size: 1.1rem; margin-bottom: 0.15rem; }
.doctor-card-specialty{
  font-size: 0.78rem;
  color: var(--teal-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}
.doctor-card-bio{ font-size: 0.88rem; margin-bottom: 1.25rem; flex: 1; }
.doctor-card-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-line);
  padding-top: 1rem;
}
.doctor-card-social{ display: flex; gap: 0.5rem; }
.doctor-card-social a{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--pale-blue);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.doctor-card-social a:hover{ background-color: var(--teal); color: var(--white); }

/* ==========================================================================
   Why Choose Claris
   ========================================================================== */
.value-item{ display: flex; gap: 1rem; margin-bottom: 1.9rem; }
.value-icon{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.value-title{ font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--navy); font-weight: 600; }
.value-text{ font-size: 0.9rem; margin-bottom: 0; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card{
  background-color: var(--pale-blue);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
}
.testimonial-stars{ color: var(--teal); font-size: 0.85rem; margin-bottom: 0.85rem; }
.testimonial-quote{ font-size: 0.95rem; color: var(--charcoal); margin-bottom: 1.5rem; }
.testimonial-author{ display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.testimonial-author-name{ font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.testimonial-author-loc{ font-size: 0.78rem; color: var(--gray-cool); }

/* ==========================================================================
   Emergency / Contact CTA Strip
   ========================================================================== */
.emergency-strip{
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%);
  overflow: hidden;
}
.emergency-strip::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(79, 184, 196, 0.25), transparent 55%);
}
.emergency-strip > .row{ position: relative; z-index: 2; }
.emergency-icon-pulse{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(79, 184, 196, 0.18);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  position: relative;
}
.emergency-icon-pulse::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(79, 184, 196, 0.4);
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring{
  0%{ transform: scale(0.9); opacity: 0.9; }
  100%{ transform: scale(1.35); opacity: 0; }
}
.emergency-phone{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--white);
  font-weight: 700;
}
.emergency-strip h3{ color: var(--white); }
.emergency-strip p{ color: rgba(255,255,255,0.72); }

/* ==========================================================================
   FAQ (native details/summary — no JS)
   ========================================================================== */
.faq-item{
  background-color: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "\002B";
  font-size: 1.3rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after{ content: "\2212"; }
.faq-item[open] summary{ border-bottom: 1px solid var(--gray-line); }
.faq-answer{
  padding: 1.1rem 1.4rem 1.3rem;
  font-size: 0.92rem;
  color: var(--gray-cool);
  margin-bottom: 0;
}

/* ==========================================================================
   Opening Hours
   ========================================================================== */
.hours-card{
  background-color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  color: var(--white);
  height: 100%;
}
.hours-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
}
.hours-row:last-child{ border-bottom: 0; }
.hours-day{ color: rgba(255,255,255,0.85); font-weight: 500; }
.hours-time{ color: var(--teal-light); font-weight: 700; }
.hours-row.is-closed .hours-time{ color: rgba(255,255,255,0.45); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-info-card{
  background-color: var(--pale-blue);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
}
.contact-info-icon{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.appointment-form-card{
  background-color: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}
.appointment-form label{
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}
.appointment-form .form-control,
.appointment-form .form-select{
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
}
.appointment-form .form-control:focus,
.appointment-form .form-select:focus{
  border-color: var(--teal);
  box-shadow: 0 0 0 0.2rem rgba(23, 138, 151, 0.16);
}
.map-frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 320px;
}
.map-frame iframe{ width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer{ background-color: var(--navy-deep); color: rgba(255,255,255,0.72); padding-top: 4rem; }
footer p{ color: rgba(255,255,255,0.62); }
.footer-heading{
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer-links{ list-style: none; padding-left: 0; margin-bottom: 0; }
.footer-links li{ margin-bottom: 0.65rem; }
.footer-links a{ color: rgba(255,255,255,0.68); font-size: 0.9rem; }
.footer-links a:hover{ color: var(--teal-light); }
.footer-social{ display: flex; gap: 0.75rem; }
.footer-social a{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.footer-social a:hover{ background-color: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2.5rem;
  padding-block: 1.5rem;
  font-size: 0.82rem;
}
.footer-bottom a{ color: rgba(255,255,255,0.65); }
.footer-bottom a:hover{ color: var(--teal-light); }

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */
@media (max-width: 991.98px){
  .navbar-claris .navbar-nav{ text-align: center; }
  .quick-info-strip{ margin-top: 1.5rem; }
  .hero{ min-height: 76vh; }
  .split-media-badge{ position: static; margin-top: -3rem; margin-inline: auto 0; }
}

@media (max-width: 575.98px){
  .quick-info-item{ justify-content: center; text-align: left; }
}
