:root {
  --primary: #5bbad5;
  --dark: #1f2937;
  --light: #ffffff;
  --overlay: rgba(20, 30, 40, 0.45);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  margin: 0;
}

/* ==============================
 TOP INFO BAR
============================== */
.top-info-bar {
  background: #f7f9fb;
  font-size: 13px;
  color: #8a97a6;
}

.top-info-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
}

.top-left span {
  margin-right: 22px;
}

.top-right {
  display: flex;
  align-items: center;
}

.top-socials i {
  margin-left: 14px;
  font-size: 14px;
  color: #8a97a6;
}

/* ==============================
 MAIN HEADER
============================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.navbar {
  height: 90px;
}

.nav-link {
  color: #6f7f8f;
  font-weight: 500;
  padding: 0 18px;
}

.nav-link:hover {
  color: #3b82c4;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  padding: 14px 0;
}

.dropdown-item {
  padding: 10px 26px;
  font-size: 15px;
  color: #6f7f8f;
}

.dropdown-item:hover {
  background: transparent;
  color: #3b82c4;
}

/* ==============================
 CTA BUTTON
============================== */
.btn-appointment {
  background: #5bbad5;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
}

.btn-appointment:hover {
  background: #3b9db8;
  color: #ffffff;
}

/* ==============================
   HERO CAROUSEL
================================ */
.hero-carousel,
.hero-carousel .carousel-item {
  height: 100vh;
}

.hero-carousel .carousel-item {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20,30,40,0.7) 0%,
    rgba(20,30,40,0.2) 55%,
    rgba(20,30,40,0) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 600px;
  padding-top: 30vh;
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
	padding-left: 50px; 
}

.hero-content.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-eyebrow {
  display: inline-block;
  color: #cbd5e1;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 28px;
}





/* ==============================
   HERO BUTTON
================================ */
.btn-hero {
  background: #fff;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

.btn-hero:hover {
  background: var(--primary);
  color: #fff;
}







/* ==============================
   INDICATORS
================================ */
.carousel-indicators {
  bottom: 40px;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.4;
}

.carousel-indicators .active {
  opacity: 1;
}





/* ==============================
   APPOINTMENT SECTION
============================== */
.appointment-section {
  background: #5a4a6e;
  padding: 90px 0;
  color: #ffffff;
}

.appointment-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 12px;
}

.appointment-header .divider {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: #6dd5c3;
  margin-bottom: 50px;
}

.appointment-form .form-control {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  height: 58px;
  padding: 0 20px;
  font-size: 16px;
}

.appointment-form .form-control::placeholder {
  color: rgba(255,255,255,0.85);
}

.appointment-form .form-control:focus {
  border-color: #6dd5c3;
  box-shadow: none;
}

.date-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 18px;
}

.btn-appointment-submit {
  background: #ffffff;
  color: #1f2937;
  padding: 16px 42px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 10px;
}

.btn-appointment-submit:hover {
  background: #6dd5c3;
  color: #ffffff;
}


/* ==============================
   FOOTER
============================== */
.site-footer {
  background: #9aa3ab;
  color: #ffffff;
}

.footer-info {
  padding: 70px 0 80px;
}

.footer-info p {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-socials {
  margin-top: 30px;
}

.footer-socials span {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
  cursor: default;
}

