/* ============================================================
   Dr. Inceli — Enterprise Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Dancing+Script:wght@500&display=swap');

:root {
  --primary:        #0D7A5F;
  --primary-dark:   #065F46;
  --primary-light:  #10B981;
  --primary-glow:   rgba(16, 185, 129, 0.15);
  --accent:         #C9A227;
  --accent-light:   #F5E6A3;
  --navy:           #0B1D33;
  --navy-mid:       #152A45;
  --navy-light:     #1E3A5F;
  --surface:        #FFFFFF;
  --surface-alt:    #F4F7FA;
  --surface-dark:   #0F2440;
  --text:           #1E293B;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
  --border:         #E2E8F0;
  --shadow-sm:      0 1px 3px rgba(11, 29, 51, 0.06);
  --shadow-md:      0 4px 20px rgba(11, 29, 51, 0.08);
  --shadow-lg:      0 12px 40px rgba(11, 29, 51, 0.12);
  --shadow-xl:      0 20px 60px rgba(11, 29, 51, 0.16);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading:   'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --font-signature: 'Dancing Script', cursive;
  --container-max:  1200px;
  --container-width: 90%;
  --container-width-mobile: 94%;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--surface);
  margin: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img { max-width: 100%; height: auto; }

/* ── Top Bar ─────────────────────────────────────────────── */

.top-header {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 11px 0;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header .container-inner {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-header .left-side {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-header .left-side a {
  color: rgba(255, 255, 255, 0.75);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  transition: all var(--transition);
}

.top-header .left-side a i {
  font-size: 26px;
  line-height: 1;
}

.top-header .left-side a:hover {
  color: #fff;
  background: var(--primary);
  transform: translateY(-2px);
}

.top-header .right-side {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
}

.top-header .right-side .info-item {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.top-header .right-side .info-item i {
  color: var(--primary-light);
  font-size: 13px;
}

.top-header .divider {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 14px;
  user-select: none;
}

/* ── Navbar ──────────────────────────────────────────────── */

.site-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.site-nav .container-inner {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.site-nav .navbar-brand img.logos {
  max-width: 220px;
  height: auto;
  transition: transform var(--transition);
}

.site-nav .navbar-brand:hover img.logos {
  transform: scale(1.02);
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-links .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: all var(--transition);
}

.site-nav .nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.site-nav .nav-links .nav-link:hover,
.site-nav .nav-links .nav-link.active {
  color: var(--primary);
}

.site-nav .nav-links .nav-link:not(.nav-appointment):hover::after,
.site-nav .nav-links .nav-link:not(.nav-appointment).active::after {
  transform: scaleX(1);
}

/* Nav CTA button */
.site-nav .nav-links .nav-link.nav-appointment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: 10px;
  padding: 12px 22px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff !important;
  background-color: var(--primary);
  background-image: none;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 126, 138, 0.3);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-nav .nav-links .nav-link.nav-appointment::after {
  display: none !important;
}
.site-nav .nav-links .nav-link.nav-appointment:hover {
  color: #fff !important;
  background-color: var(--navy);
  background-image: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11, 36, 55, 0.35);
}

.site-nav .nav-links .nav-link.nav-appointment:active {
  background-color: var(--navy-mid);
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(11, 36, 55, 0.25);
}

/* Language selector */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--surface-alt);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  transition: all var(--transition);
  position: relative;
}

.lang-switch:hover {
  border-color: var(--primary);
  background: var(--primary-glow);
}

.lang-switch img {
  border-radius: 3px;
  width: 26px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  list-style: none;
  padding: 6px;
  margin: 0;
  z-index: 100;
}

.lang-switch:hover .lang-dropdown,
.lang-switch:focus-within .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  transition: background var(--transition);
}

.lang-dropdown a:hover { background: var(--surface-alt); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
  transition: all var(--transition);
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  outline: none;
}

/* ── Hero Carousel ───────────────────────────────────────── */

.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item {
  height: 85vh;
  min-height: 480px;
  max-height: 780px;
  position: relative;
}

.hero-carousel .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-carousel .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 29, 51, 0.72) 0%,
    rgba(13, 122, 95, 0.45) 50%,
    rgba(11, 29, 51, 0.55) 100%
  );
}

.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-caption .hero-content {
  max-width: 760px;
  animation: fadeUp 0.9s ease both;
}

.hero-caption .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-caption h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-caption h1 span {
  color: var(--primary-light);
}

.hero-caption p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all var(--transition);
}

.hero-carousel .carousel-control-prev { left: 24px; }
.hero-carousel .carousel-control-next { right: 24px; }

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  margin: 0 5px;
  transition: all var(--transition);
}

.hero-carousel .carousel-indicators .active {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: scale(1.3);
}

/* ── Buttons ─────────────────────────────────────────────── */

.btn-enterprise {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-enterprise-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(13, 122, 95, 0.35);
}

.btn-enterprise-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 122, 95, 0.45);
  color: #fff;
}

.btn-enterprise-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-enterprise-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-enterprise-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-enterprise-dark:hover {
  background: var(--navy-light);
  color: #fff;
  transform: translateY(-2px);
}

/* Legacy btn-0 compatibility */
.btn-0, .details, .rm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 16px rgba(13, 122, 95, 0.3);
  transition: all var(--transition);
}

.btn-0:hover, .details:hover, .rm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 122, 95, 0.4);
  color: #fff !important;
}

.btnmore { width: 100%; max-width: 320px; margin: 32px auto 0; display: flex; justify-content: center; }

/* ── Stats Strip ─────────────────────────────────────────── */

.stats-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
  margin-top: -1px;
  position: relative;
  z-index: 10;
}

.stats-strip .container-inner {
  margin: 0 auto;
  padding: 0 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: -48px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface-alt); }

.stat-item .stat-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
  font-size: 20px;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .stat-label {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Section Utilities ───────────────────────────────────── */

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.container-inner {
  width: var(--container-width);
  max-width: none;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.title, .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.title u, .section-title u { text-decoration: none; }

.section-dark .title,
.section-dark .section-title { color: #fff; }

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.section-dark .section-subtitle { color: rgba(255, 255, 255, 0.7); }

/* ── About Section ───────────────────────────────────────── */

.about {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.about-image-wrap {
  position: relative;
  width: min(304px, 100%);
  padding: 10px;
  background: #EAF8F6;
  border: 2px solid rgba(66, 201, 178, 0.45);
  border-radius: 8px;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: 10px;
  background: #F0FBFB;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 7px;
  z-index: 0;
}

.profile {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  background: #F0FBFB;
  border-radius: 6px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: none;
}

.about-content .title {
  color: #fff;
  text-align: left;
  margin-bottom: 24px;
}

.about-content .title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
  margin-top: 14px;
}

.context {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.about-content .details {
  margin-top: 28px;
}

/* Legacy table layout fallback */
table.ab { border: none; width: 100%; }
table.ab td { vertical-align: middle; padding: 12px; }

/* ── Services Section ────────────────────────────────────── */

#service-section, .bs-section.service {
  padding: 96px 0;
  background: var(--surface-alt);
}

#service-section .overlay,
.bs-section.service .overlay {
  background: transparent;
  padding: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bs-sevice.two {
  background: none;
  margin-bottom: 0;
}

.bs-sevice.two .bs-sevice-inner,
.bs-sevice.two .bs-sevice-inner.shd,
.shd .bs-sevice-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bs-sevice.two .bs-sevice-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.bs-sevice.two:hover .bs-sevice-inner {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.bs-sevice.two:hover .bs-sevice-inner::before {
  transform: scaleX(1);
}

.bs-sevice.two .bs-sevice-inner::after { display: none; }

.catitle, .bs-sevice h4, .bs-sevice h4 a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy) !important;
  margin-bottom: 16px;
}

.catitle u, .bs-sevice h4 u { text-decoration: none; }
.catitle font, .bs-sevice h4 font { color: var(--primary) !important; }

.bs-sevice img { transition: transform var(--transition); }
.bs-sevice:hover img { transform: scale(1.05); }

.slider-btns { margin-top: 20px; }

/* ── Social Bar ──────────────────────────────────────────── */

.social-bar {
  padding: 36px 0;
  background: var(--surface);
}

.social-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.social-bar a:hover {
  transform: translateY(-4px);
  box-shadow: none;
  opacity: 0.85;
}

.smline, .smlinec {
  width: 48px !important;
  height: 48px;
  object-fit: contain;
  padding: 0;
  display: block;
}

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img.logos {
  max-width: 180px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--primary-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item i {
  color: var(--primary-light);
  margin-top: 3px;
  width: 16px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .signature {
  font-family: var(--font-signature);
  font-size: 18px;
  color: var(--primary-light);
}

.footer-bottom .signature:hover { color: #fff; }

/* Legacy footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 28px 0;
  font-size: 14px;
}

.footer .signature {
  font-family: var(--font-signature);
  font-size: 18px;
  color: var(--primary-light);
}

/* ── Page Content (inner pages) ──────────────────────────── */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin: 0;
  position: relative;
}

.page-content {
  padding: 72px 0;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

/* ── Inner Page Content ──────────────────────────────────── */

.contitle {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 14px;
  line-height: 1.35;
}

.contitle:first-child { margin-top: 0; }

.upspace { margin-top: 0; }

.page-content .context,
.page-content p.context {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-content ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--text);
}

.page-content .profile {
  float: left;
  margin: 0 28px 20px 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.about-bio {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.about-bio .profile {
  float: none;
  width: 100%;
  max-width: 220px;
  margin: 0;
}

.about-bio .context:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-card .contitle {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.contact-card a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}

.contact-card a:hover { color: var(--primary); }

.map {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.map:hover { transform: scale(1.01); }

.form-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 48px 0;
}

/* ── Contact Form ────────────────────────────────────────── */

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ── Animations ──────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .top-header { display: none; }

  .nav-toggle { display: block; }

  .site-nav .container-inner {
    min-height: 64px;
    padding: 0 16px;
  }

  .site-nav .navbar-brand img.logos {
    max-width: 130px;
  }

  .footer-brand img.logos {
    max-width: 150px;
  }

  .site-nav .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 12px 16px 20px;
  }

  .site-nav .nav-menu.open { display: block; }

  .site-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-nav .nav-links .nav-link {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
  }

  .site-nav .nav-links .nav-link::after {
    left: 16px;
    right: 16px;
  }

  .site-nav .nav-links .nav-link:not(.nav-appointment):hover,
  .site-nav .nav-links .nav-link:not(.nav-appointment).active {
    background: transparent;
  }

  .site-nav .nav-links .nav-link:not(.nav-appointment):hover::after,
  .site-nav .nav-links .nav-link:not(.nav-appointment).active::after {
    transform: scaleX(1);
  }

  .site-nav .nav-links .nav-link.nav-appointment {
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
  }

  .lang-switch { margin-left: 0; margin-top: 12px; }

  .hero-carousel .carousel-item {
    height: 70vh;
    min-height: 400px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: -32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .about-image-wrap { display: flex; justify-content: center; }
  .about-content .title { text-align: center; }
  .about-content .title::after { margin: 14px auto 0; }

  .service-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }
  .about { padding: 56px 0; }

  .section-header { margin-bottom: 40px; }

  .contact-grid { grid-template-columns: 1fr; }

  .page-content .profile {
    float: none;
    display: block;
    margin: 0 auto 20px;
    max-width: 180px;
  }

  .profile { max-width: 180px; }
  .context { font-size: 15px; line-height: 1.75; }

  .content-card { padding: 28px 20px; }
  .about-bio {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
  }
  .about-bio-text { width: 100%; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .site-nav .container-inner {
    min-height: 56px;
  }

  .site-nav .navbar-brand img.logos {
    max-width: 100px;
  }

  .footer-brand img.logos {
    max-width: 130px;
  }

  .section { padding: 44px 0; }
  .about { padding: 44px 0; }

  .hero-carousel .carousel-item {
    min-height: 420px;
    height: 65vh;
  }

  .hero-caption h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .content-card { padding: 24px 16px; }

  .stat-item { padding: 24px 16px; }
}

/* ============================================================
   Dental Medical Enterprise Refinement
   ============================================================ */

:root {
  --primary:        #007E8A;
  --primary-dark:   #005D66;
  --primary-light:  #36B7C6;
  --primary-glow:   rgba(0, 126, 138, 0.14);
  --accent:         #5AA9E6;
  --accent-light:   #DDF3F7;
  --navy:           #102A43;
  --navy-mid:       #193B5A;
  --navy-light:     #2F5D7C;
  --surface:        #FFFFFF;
  --surface-alt:    #F5FAFC;
  --surface-dark:   #0B2437;
  --text:           #1D2B36;
  --text-muted:     #607180;
  --text-light:     #9AA9B5;
  --border:         #DCEAF0;
  --clinical-blue:  #EAF7FB;
  --clinical-mint:  #E8F8F4;
  --clinical-ice:   #F8FCFD;
  --sterile-line:   rgba(90, 169, 230, 0.22);
  --shadow-sm:      0 1px 3px rgba(16, 42, 67, 0.06);
  --shadow-md:      0 10px 28px rgba(16, 42, 67, 0.08);
  --shadow-lg:      0 18px 48px rgba(16, 42, 67, 0.12);
  --shadow-xl:      0 28px 72px rgba(16, 42, 67, 0.16);
  --radius-sm:      8px;
  --radius-md:      8px;
  --radius-lg:      8px;
  --radius-xl:      8px;
}

body {
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(54, 183, 198, 0.05), transparent 60%),
    linear-gradient(180deg, var(--clinical-ice) 0, #fff 420px),
    var(--surface);
}

.container-inner {
  width: var(--container-width);
  max-width: none;
}

.top-header {
  background: var(--surface-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header .left-side a {
  border-radius: var(--radius-sm);
  width: 52px;
  height: 52px;
  font-size: 26px;
}

.top-header .left-side a i {
  font-size: 26px;
}

.top-header .left-side a:hover {
  background: var(--primary);
}

.top-header .right-side .info-item i,
.footer-contact-item i {
  color: var(--primary-light);
}

.site-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-nav .container-inner {
  min-height: 86px;
}

.site-nav .nav-links {
  gap: 2px;
}

.site-nav .nav-links .nav-link {
  color: var(--navy);
  font-size: 17px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
}

.site-nav .nav-links .nav-link:not(.nav-appointment):hover,
.site-nav .nav-links .nav-link:not(.nav-appointment).active {
  color: var(--primary-dark);
  background: transparent;
}

.site-nav .nav-links .nav-link:not(.nav-appointment):hover::after,
.site-nav .nav-links .nav-link:not(.nav-appointment).active::after {
  transform: scaleX(1);
}

.site-nav .nav-links .nav-link.nav-appointment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  margin-left: 14px;
  padding: 12px 22px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff !important;
  background-color: var(--primary);
  background-image: none;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 126, 138, 0.3);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-nav .nav-links .nav-link.nav-appointment::after {
  display: none !important;
}
.site-nav .nav-links .nav-link.nav-appointment:hover {
  color: #fff !important;
  background-color: var(--navy);
  background-image: none;
  box-shadow: 0 6px 20px rgba(11, 36, 55, 0.35);
  transform: translateY(-1px);
}

.site-nav .nav-links .nav-link.nav-appointment:active {
  background-color: var(--navy-mid);
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(11, 36, 55, 0.25);
}

.lang-switch {
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 10px 18px;
  font-size: 15px;
}

.lang-switch img {
  width: 26px;
}

.hero-carousel {
  background: var(--surface-dark);
}

.hero-carousel .carousel-item {
  height: min(760px, calc(100vh - 86px));
  min-height: 580px;
}

.hero-carousel .carousel-item img {
  filter: saturate(0.92) contrast(1.04);
}

.hero-carousel .carousel-item::after {
  background:
    linear-gradient(90deg, rgba(7, 26, 41, 0.96) 0%, rgba(7, 26, 41, 0.84) 44%, rgba(0, 78, 88, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 26, 41, 0.32), rgba(7, 26, 41, 0.5));
}

.hero-caption .hero-content {
  max-width: 700px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-caption .hero-badge,
.section-eyebrow {
  border-radius: var(--radius-sm);
  background: rgba(54, 183, 198, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(54, 183, 198, 0.22);
  letter-spacing: 0.09em;
}

.section-eyebrow[style] {
  background: var(--clinical-mint) !important;
  color: var(--primary-dark) !important;
}

.hero-caption h1 {
  max-width: 680px;
  letter-spacing: 0;
}

.hero-caption h1 span {
  color: #9FE7EF;
}

.hero-caption p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  gap: 12px;
}

.btn-enterprise,
.btn-0,
.slider-btns .rm,
.details {
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
}

.btn-enterprise-primary,
.btn-0,
.slider-btns .rm,
.details {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(0, 126, 138, 0.22);
}

.btn-enterprise-primary:hover,
.btn-0:hover,
.slider-btns .rm:hover,
.details:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-enterprise-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-enterprise-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary-dark);
}

.stats-strip {
  background: linear-gradient(180deg, #fff, var(--clinical-ice));
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  background: var(--clinical-blue);
  color: var(--primary);
  border: 1px solid var(--sterile-line);
}

.stat-number {
  color: var(--navy);
}

.about,
.page-content {
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(54, 183, 198, 0.07), transparent 65%),
    linear-gradient(180deg, var(--clinical-ice) 0%, #fff 100%);
}

.about {
  color: var(--text);
}

.about-content .title {
  color: var(--navy);
}

.about .context,
.about-content .context {
  color: var(--text-muted);
}

.about-content .title::after {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-image-wrap {
  width: min(304px, 100%);
  padding: 10px;
  background: #EAF8F6;
  border: 2px solid rgba(66, 201, 178, 0.45);
  border-radius: 8px;
}

.about-image-wrap::before {
  inset: 10px;
  background: #F0FBFB;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 7px;
}

.about-image-wrap .profile,
.about-bio .profile {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  background: #F0FBFB;
  border-radius: 6px !important;
  border: 0;
  box-shadow: none;
}

.about-bio .profile {
  padding: 10px;
  background:
    linear-gradient(#F0FBFB, #F0FBFB) padding-box,
    #EAF8F6 border-box;
  border: 2px solid rgba(66, 201, 178, 0.45);
  outline: 1px solid rgba(255, 255, 255, 0.95);
  outline-offset: -11px;
  border-radius: 8px !important;
}

.title,
.section-title,
.contitle {
  color: var(--navy);
  letter-spacing: 0;
}

.title::after,
.section-title::after {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-alt {
  background:
    linear-gradient(180deg, var(--clinical-ice), #fff),
    var(--surface-alt);
}

.service-grid {
  align-items: stretch;
}

.bs-sevice.two .bs-sevice-inner,
.bs-sevice.two .bs-sevice-inner.shd,
.shd .bs-sevice-inner,
.content-card,
.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.bs-sevice.two .bs-sevice-inner::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.bs-sevice.two:hover .bs-sevice-inner,
.contact-card:hover {
  border-color: rgba(0, 126, 138, 0.34);
  box-shadow: var(--shadow-lg);
}

.catitle,
.bs-sevice h4,
.bs-sevice h4 a {
  color: var(--navy) !important;
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catitle font,
.bs-sevice h4 font {
  color: var(--navy) !important;
}

.bs-sevice img {
  background: var(--clinical-ice);
  border-radius: var(--radius-sm);
  padding: 10px;
}

.social-bar {
  background: var(--clinical-blue);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-bar a {
  background: transparent;
  border: none;
  padding: 0;
}

.social-bar .smline,
.social-bar .smlinec {
  width: 48px !important;
  height: 48px;
  padding: 0;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(7, 26, 41, 0.98), rgba(0, 86, 96, 0.94)),
    var(--surface-dark);
  padding: 88px 0 76px;
}

.page-hero::before {
  opacity: 0.55;
}

.content-card {
  box-shadow: var(--shadow-md);
}

.contact-card {
  background: linear-gradient(180deg, #fff, var(--clinical-ice));
}

.contact-card .contitle {
  color: var(--primary-dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: var(--radius-sm);
  background: #fff;
}

.map {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.site-footer {
  background:
    linear-gradient(180deg, var(--surface-dark), #071A29);
  color: rgba(255, 255, 255, 0.76);
}

.footer-col h5 {
  color: #fff;
}

.footer-col h5::after {
  background: var(--primary-light);
}

.footer-col a:hover,
.signature {
  color: #9FE7EF;
}

@media (max-width: 768px) {
  .container-inner {
    width: var(--container-width-mobile);
    padding: 0 16px;
  }

  .site-nav .container-inner {
    min-height: 64px;
  }

  .hero-carousel .carousel-item {
    min-height: 480px;
    height: 68vh;
  }

  .hero-caption .hero-content {
    padding-top: 16px;
  }

  .hero-caption p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn-enterprise {
    justify-content: center;
    width: 100%;
  }

  .stats-grid {
    margin-top: -24px;
    border-radius: var(--radius-md);
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-item .stat-number {
    font-size: 1.6rem;
  }

  .service-grid {
    gap: 20px;
  }

  .footer-grid {
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .site-nav .nav-menu {
    background: rgba(255, 255, 255, 0.98);
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }
}

/* Top header social icons */
.top-header .left-side a,
.top-header .left-side a i {
  font-size: 26px !important;
  line-height: 1;
}

.top-header .left-side a {
  width: 52px !important;
  height: 52px !important;
}

.contact-form-card {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.contact-form-card iframe {
  overflow: hidden;
  border: none;
  display: block;
  width: 100%;
}

/* ── Mission & Vision (About page) ───────────────────────── */

.mv-section {
  margin-top: 40px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  position: relative;
  overflow: hidden;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, #fff 0%, #F5FAFC 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.mv-mission::before {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.mv-vision::before {
  background: linear-gradient(90deg, var(--navy), var(--accent));
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--clinical-blue);
  border: 1px solid var(--sterile-line);
  color: var(--primary);
  font-size: 22px;
}

.mv-vision .mv-icon {
  background: #EAF7FB;
  color: var(--navy);
}

.mv-title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.mv-body p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.mv-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mv-card {
    padding: 28px 24px 24px;
  }
}

/* ── Service Card Detail Buttons ─────────────────────────── */

.bs-sevice .slider-btns {
  width: 100%;
  margin-top: 24px;
  justify-content: center;
}

.bs-sevice .slider-btns .btn-0.rm,
.bs-sevice .slider-btns a.btn.btn-0.rm {
  width: 100%;
  max-width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 10px !important;
  background: linear-gradient(180deg, #22b5c4 0%, #1ea1b0 50%, #18929f 100%) !important;
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 8px 22px rgba(30, 161, 176, 0.42);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.bs-sevice .slider-btns .btn-0.rm::before,
.bs-sevice .slider-btns a.btn.btn-0.rm::before {
  display: none;
}

.bs-sevice .slider-btns .btn-0.rm i,
.bs-sevice .slider-btns a.btn.btn-0.rm i {
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.bs-sevice .slider-btns .btn-0.rm:hover,
.bs-sevice .slider-btns a.btn.btn-0.rm:hover {
  background: linear-gradient(180deg, #28c4d4 0%, #22adbd 50%, #1a9aaa 100%) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 161, 176, 0.52);
}

.bs-sevice .slider-btns .btn-0.rm:hover i,
.bs-sevice .slider-btns a.btn.btn-0.rm:hover i {
  transform: translateX(4px);
}

.slider-btns.btnmore .btn-0.rm.btnmore {
  max-width: 280px;
  padding: 15px 28px;
  font-size: 16px;
}

/* ── Appointment Modal ───────────────────────────────────── */

body.appointment-modal-open {
  overflow: hidden;
}

.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.appointment-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.appointment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 41, 0.72);
  backdrop-filter: blur(4px);
}

.appointment-modal-dialog {
  position: relative;
  width: min(100%, 600px);
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.appointment-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 26, 41, 0.08);
  color: var(--navy, #082435);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.appointment-modal-close:hover {
  background: var(--navy, #082435);
  color: #fff;
}

#appointmentModalFrame {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 520px;
  border: 0;
  background: transparent;
}

@media (max-width: 480px) {
  .site-nav .container-inner {
    min-height: 56px;
  }

  .site-nav .navbar-brand img.logos {
    max-width: 100px;
  }
}

@media (max-width: 640px) {
  .appointment-modal {
    padding: 12px;
  }

  .appointment-modal-dialog {
    max-height: calc(100vh - 24px);
    border-radius: 8px;
  }

  #appointmentModalFrame {
    height: calc(100vh - 24px);
  }
}
