/**
* Template Name: MediTrust
* Template URL: https://bootstrapmade.com/meditrust-bootstrap-hospital-website-template/
* Updated: Jul 04 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Lato",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2c3031; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #18444c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #049ebb; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #496268;  /* The default color of the main navmenu links */
  --nav-hover-color: #049ebb; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #496268; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #049ebb; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f8f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# Windows 11 Theme (glass, rounded corners, soft shadows)
# Uses colors inspired by `assets/img/halo/clockwork.png` (teal + warm gold accents)
--------------------------------------------------------------*/
:root {
  --win-accent-1: #049ebb; /* primary accent (requested) */
  /* Replace warm gold with a cool palette derived from the primary teal */
  --win-accent-2: #037f88; /* darker teal */
  --win-accent-3: #7fe0e8; /* lighter teal highlight */
  --win-accent-4: #eaf9fb; /* very pale teal for soft surfaces */
  --win-surface: rgba(255,255,255,0.6);
  --win-glass: rgba(255,255,255,0.06);
  --win-radius: 14px;
  --win-shadow: 0 8px 32px rgba(4,16,18,0.20);
}

body {
  background: var(--win-accent-1);
  color: var(--default-color);
  -webkit-font-smoothing: antialiased;
}

/* Social hub / story cards accent styles */
.featured-story-image,
.story-card-image {
  background-size: cover;
  background-position: center center;
  border-radius: 12px;
  min-height: 220px;
  position: relative;
}

/* Testimonials score badge and right-side nav */
.home-testimonials-slider { position: relative; }
.testimonial-score-badge {
  top: 10px;
  right: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.95);
  color: var(--heading-color);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(2,12,14,0.12);
  z-index: 1400; /* ensure above testimonial cards and nav */
  border: 1px solid rgba(4,158,187,0.12);
  min-width: 86px;
  pointer-events: auto;
}
.testimonial-score-badge .score {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--win-accent-1);
}
.testimonial-score-badge .out-of {
  font-size: 0.68rem;
  opacity: 0.85;
  color: var(--default-color);
}
.testimonial-score-badge .count {
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--default-color);
}

.swiper-navigation-vertical {
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 1300;
}
.swiper-navigation-vertical .swiper-button-prev,
.swiper-navigation-vertical .swiper-button-next {
  width: 44px;
  height: 44px;
  background: var(--surface-color);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.swiper-navigation-vertical .swiper-button-prev::after,
.swiper-navigation-vertical .swiper-button-next::after {
  font-size: 18px;
}

.story-card-image { height: 200px; }

.story-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: .25rem .6rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(3,12,14,0.12);
}

.badge-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: .35rem .6rem;
  border-radius: .6rem;
  font-weight: 700;
  display: inline-block;
}

.badge-pill {
  display: inline-block;
  padding: .38rem .75rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.04);
  background: rgba(255,255,255,0.06);
  color: var(--default-color);
}

.badge-pill.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: rgba(0,0,0,0.06);
}

.badge-count {
  display: inline-block;
  padding: .12rem .45rem;
  border-radius: .45rem;
  background: rgba(255,255,255,0.92);
  color: var(--default-color);
  font-weight: 700;
  font-size: .82rem;
}

/*--------------------------------------------------------------
# Homepage Hero Tweaks
# Subtle nudge to bring hero content higher on the page
--------------------------------------------------------------*/
#hero .hero-content {
  /* Reduce vertical offset so headline sits a bit higher */
  margin-top: -40px;
}

@media (min-width: 768px) {
  #hero .hero-content {
    margin-top: -60px;
  }
}

@media (min-width: 1200px) {
  #hero .hero-content {
    margin-top: -80px;
  }
}

/* Stronger override to ensure it applies on homepage */
.index-page #hero .hero-content,
.index-page #hero .content-box {
  margin-top: -80px !important;
}

@media (min-width: 1200px) {
  .index-page #hero .hero-content,
  .index-page #hero .content-box {
    margin-top: -100px !important; /* nudge a little higher on desktop */
  }
}

/* -------------------------------------------------------------
 * Mobile Navigation Overlay
 * Ensure the hamburger opens a full menu panel with items visible.
 * ----------------------------------------------------------- */
@media (max-width: 1199.98px) {
  #header .navmenu {
    position: fixed;
    top: var(--header-height, 88px);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 16px 24px;
    background: rgba(2, 20, 24, 0.90);
    backdrop-filter: blur(8px) saturate(130%);
    -webkit-backdrop-filter: blur(8px) saturate(130%);
    transform: translateY(-120%);
    opacity: 0;
    visibility: visible;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 1050; /* above page content, below header */
  }
  body.mobile-nav-active #header .navmenu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Ensure mobile nav links are readable on the dark overlay */
  body.mobile-nav-active #header .navmenu a,
  body.mobile-nav-active #header .navmenu a:focus {
    color: #ffffff !important;
  }
  body.mobile-nav-active #header .navmenu ul li a {
    background: rgba(255,255,255,0.04);
    color: #ffffff !important;
  }
  #header .navmenu ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0;
    padding: 8px 4px;
    list-style: none;

  }
  #header .navmenu ul li a {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
    color: #f0fbff;
    background: rgba(255,255,255,0.06);
  }
  #header .navmenu ul li a.active,
  #header .navmenu ul li a:hover {
    background: rgba(4, 158, 187, 0.25);
    color: #ffffff;
  }
  /* Place the hamburger in header flow */
  .mobile-nav-toggle {
    font-size: 28px;
    color: var(--accent-color) !important;
    cursor: pointer;
    line-height: 0;
    transition: 0.3s;
    margin-left: auto; /* push toggle to the far right in the header flex container */
    order: 4;
    z-index: 1100; /* ensure toggle sits above nav overlay */
    background: transparent;
  }
  /* When menu is open, show close icon in white for contrast */
  body.mobile-nav-active .mobile-nav-toggle { 
    color: #ffffff !important; 
    background: transparent;
  }
  /* Hide the CTA while menu is open to reduce overlap */
  body.mobile-nav-active .btn-getstarted { display: none !important; }
  /* Also hide CTA on all mobile widths when hamburger is visible */
  #header .btn-getstarted { display: none !important; }
}

/* -------------------------------------------------------------
 * UI Toggles
 * ----------------------------------------------------------- */
body.hide-breadcrumbs .breadcrumbs {
  display: none !important;
}

/*--------------------------------------------------------------
# Toast notifications (Halo stack, inspired by notistack)
--------------------------------------------------------------*/
.halo-toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.halo-toast {
  min-width: 260px;
  max-width: 360px;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #f9feff;
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.halo-toast-show {
  opacity: 1;
  transform: translateY(0);
}

.halo-toast-hide {
  opacity: 0;
  transform: translateY(-4px);
}

.halo-toast-success {
  background: linear-gradient(90deg, #059669, #047857);
}

.halo-toast-info {
  background: linear-gradient(90deg, #0369a1, #0ea5e9);
}

/*--------------------------------------------------------------
# Cookie Consent Banner
--------------------------------------------------------------*/
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1090;
  padding: 0.85rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(4,158,187,0.95), rgba(0,0,0,0.96));
  color: #f5feff;
  font-size: 0.85rem;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.6);
}

.cookie-consent-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-consent p {
  margin: 0;
}

.cookie-consent a {
  color: #e0f8ff;
  text-decoration: underline;
}

.cookie-consent .btn-cookie {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  background: #ffffff;
  color: #034045;
  font-weight: 600;
  box-shadow: 0 3px 14px rgba(0,0,0,0.45);
}

.cookie-consent .btn-cookie:hover {
  background: #e8f6fb;
}

@media (max-width: 768px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------------------------------------------------------------
 * Global Search Overlay (modern centered modal)
 * ----------------------------------------------------------- */
.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(4,158,187,0.36), rgba(0,0,0,0.85));
  backdrop-filter: blur(10px) saturate(140%);
}

.site-search-panel {
  position: relative;
  max-width: 720px;
  width: 92%;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.12), rgba(0,0,0,0.72));
  border-radius: 18px;
  padding: 2rem 2.5rem 2rem;
  box-shadow: 0 26px 80px rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f8fafb;
}

.site-search-panel h2 {
  color: #ffffff;
}

.site-search-panel .form-control {
  border-radius: 999px;
}

.site-search-panel .input-group-text {
  border-radius: 999px 0 0 999px;
}

.site-search-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  filter: invert(1);
}

@media (max-width: 576px) {
  .site-search-panel {
    padding: 1.5rem 1.25rem 1.5rem;
  }
}

/* Header -> floating glass */
.header .header-container {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  backdrop-filter: blur(6px) saturate(120%);
  border-radius: var(--win-radius);
  box-shadow: var(--win-shadow);
}

/* Soft glass panels */
.card, .department-card, .feature-item, .about-image .experience-badge, .certification-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(3,12,14,0.18);
  border: 1px solid rgba(255,255,255,0.04);
}

/* Mission & Vision cards (About page) */
.mission-vision .halo-panel {
  background: var(--win-glass);
  color: var(--accent-color);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 48px rgba(0,0,0,0.55);
}

.mission-vision .section-kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  color: var(--win-accent-3);
}

.mission-list {
  list-style: none;
  padding-left: 0;
}

.mission-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--win-accent-1);
}

.vision-pill {
  padding: .9rem 1rem;
  border-radius: 14px;
  background: rgba(4,158,187,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.vision-pill h5 {
  font-size: .9rem;
  margin-bottom: .25rem;
}

.vision-pill p {
  font-size: .8rem;
  margin-bottom: 0;
}

/* Team cards reuse doctor card styling but with subtle tweaks */
.team-card .doctor-content {
  padding-bottom: 1.25rem;
}

.team-card .doctor-specialty {
  color: var(--win-accent-3);
}

.team-section.halo-panel {
  padding: 2.5rem 2rem;
  border-radius: 22px;
  background: var(--win-glass);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.team-section .section-title h2 {
  margin-bottom: .25rem;
}

.team-section .section-title p {
  margin-bottom: 0;
}

.team-card .doctor-image {
  overflow: hidden;
}

.team-card .doctor-image img {
  height: 220px;
}

.team-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.4));
}

.team-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(4,158,187,0.9);
  color: #f8feff;
  font-weight: 600;
}

/* Category-specific badge colors */
.team-pill-directors {
  background: #7c3aed;
  color: #fff;
}

.team-pill-management {
  background: #10b981;
  color: #fff;
}

.team-pill-staff {
  background: #ef4444;
  color: #fff;
}

.team-pill-clinical {
  background: #f97316;
  color: #fff;
}

/* Buttons */
.btn-primary {
  background: var(--win-accent-1) !important;
  border: 1px solid color-mix(in srgb, var(--win-accent-1), black 5%);
  color: #fff !important;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--win-accent-1), black 60%);
}
.btn-outline {
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), black 88%);
  background: transparent;
}

.btn-outline:hover {
  background: color-mix(in srgb, var(--accent-color), white 88%);
  color: #012426;
}

/* Accent variable mapping so existing components pick up new palette */
:root {
  --accent-color: #049ebb; /* explicit accent color */
  --accent-color-dark: #02686f; /* a darker tone for headings/buttons */
  --accent-color-light: #9feff4; /* accent highlight */
  --heading-color: var(--accent-color-dark);
  --nav-hover-color: var(--win-accent-1);
  --nav-color: color-mix(in srgb, var(--nav-color), white 20%);
}

/* Utility classes derived from the palette */
.text-accent { color: var(--accent-color) !important; }
.text-teal { color: var(--accent-color-dark) !important; }
.bg-soft-accent { background: linear-gradient(180deg, var(--win-accent-4), rgba(255,255,255,0.02)); }
.icon-circle { width: 64px; height: 64px; }
.object-fit-cover { object-fit: cover; }
.display-6.text-accent { color: var(--accent-color); }

/* Hello Halo banner styles */
.hello-halo-banner {
  border: 1px solid rgba(2,102,106,0.06);
  box-shadow: 0 10px 30px rgba(2,44,46,0.06);
}
.hello-halo-banner .display-6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hello-halo-banner { text-align: center; }
  .hello-halo-banner .d-flex { justify-content: center; }
}

/* #helloHalo quote styling */
.hello-halo-strip {
  background: radial-gradient(circle at top left, rgba(4,158,187,0.2), rgba(0,0,0,0.9));
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hello-halo-quote {
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(0,0,0,0.55));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
}

.hello-halo-quote-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
}

.hello-halo-avatar {
  width: 52px;
  height: 52px;
  background: radial-gradient(circle at top, var(--win-accent-3), var(--win-accent-2));
  box-shadow: 0 4px 16px rgba(0,0,0,0.45);
}

.hello-halo-avatar-initial {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
}

.hello-halo-handle {
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* Footer engraved-style badges (experience + NHN) */
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(0,0,0,1), rgba(0,0,0,1));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(0,0,0,0.9);
  border: 1px solid rgba(0,0,0,0.9);
  font-size: 0.75rem;
  color: rgba(244,244,244,0.96);
}

.footer-badge .badge-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  opacity: 0.9;
}

.footer-badge .badge-link {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
}

.footer-badge .badge-link:hover {
  text-decoration: underline;
}

.footer-badge-nhn {
  justify-content: center;
  min-width: 96px;
  background: radial-gradient(circle at top left, rgba(0,0,0,1), rgba(0,0,0,1));
  border-color: rgba(0,0,0,0.96);
  color: #fff;
}

/* Experience drawer toggle button (right-side slideout trigger) */
.experience-drawer-toggle {
  position: fixed;
  top: 50%;
  right: -5.5rem;
  transform: translateY(-50%);
  z-index: 1500;
  background: linear-gradient(180deg, var(--win-accent-2), var(--win-accent-1));
  color: #f5feff;
  border-radius: 999px 0 0 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(1, 34, 36, 0.5);
  box-shadow: 0 8px 26px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: right 0.25s ease-out, box-shadow 0.25s ease-out, transform 0.25s ease-out;
}

.experience-drawer-toggle i {
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .experience-drawer-toggle {
    top: auto;
    bottom: 5.5rem;
    transform: none;
    right: -5.5rem;
  }
}

.experience-drawer-toggle.is-visible {
  right: -5.5rem;
}

.experience-drawer-toggle.is-visible:hover {
  right: 0.3rem;
  box-shadow: 0 10px 32px rgba(0,0,0,0.75);
}

/* Tutorial spotlight highlight */
.halo-spotlight {
  position: relative;
  z-index: 20;
  box-shadow: 0 0 0 3px rgba(159,239,244,0.45), 0 0 40px rgba(4,158,187,0.8);
  transition: box-shadow 0.4s ease;
}

.halo-tour-hint {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 1095;
  background: rgba(2, 36, 38, 0.9);
  color: #f5feff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* First-visit experience modal */
.experience-modal {
  border-radius: 18px;
  border: 1px solid rgba(4, 52, 58, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  color: #123337;
}

.experience-modal .modal-header {
  border-bottom: none;
}

.experience-modal .modal-title {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #023d4e;
}

.experience-modal .modal-body {
  background: linear-gradient(135deg, #f4fafb 0%, #ffffff 40%, #f9feff 100%);
}

.experience-modal .form-label {
  color: #34535a;
}

.experience-modal .form-check-label {
  color: #34535a;
}

.experience-modal .form-check-input {
  border-radius: 999px;
}

.experience-modal .btn-primary.btn-sm {
  border-radius: 999px;
}

/* Visitors page: hero timeline card */
.visitors-page .visitors-timeline-card {
  border-radius: 1rem;
  background: color-mix(in srgb, var(--accent-color), white 10%);
  color: #ffffff;
}

.visitors-page .visitors-timeline {
  position: relative;
  list-style: none;
  padding-left: 1.5rem;
  margin: 0;
  counter-reset: daystep;
}

.visitors-page .visitors-timeline::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), rgba(255,255,255,0.1));
  opacity: 0.9;
}
.visitors-page .visitors-timeline li {
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 0.6rem;
}

.visitors-page .visitors-timeline li::before {
  counter-increment: daystep;
  content: counter(daystep);
  position: absolute;
  left: -1rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--contrast-color);
  color: var(--accent-color);
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(4, 158, 187, 0.25);
}

.visitors-page .visitors-timeline strong {
  display: inline-block;
  font-weight: 600;
}

/* Visitors page: Quick Answers info band */
.visitors-page .visitors-quick-answers {
  background: color-mix(in srgb, var(--accent-color), white 92%);
  border-radius: 1rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.visitors-page .visitors-quick-answers h2 {
  margin-bottom: 1.25rem;
}

.visitors-page .visitors-quick-answers h6 {
  color: var(--accent-color);
  font-weight: 600;
}

.visitors-page .visitors-quick-answers .border-md-start {
  border-top: 1px solid rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
  .visitors-page .visitors-quick-answers .border-md-start {
    border-top: none;
    border-left: 1px solid rgba(0,0,0,0.05);
    padding-left: 1.5rem;
  }
}

/* Visitors page: side-by-side info cards */
.visitors-page .visitors-info-card {
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  background: #ffffff;
}

.visitors-page .visitors-info-row {
  align-items: stretch;
}

.visitors-page .visitors-side-image-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.visitors-page .visitors-side-image {
  max-width: 100%;
}

/* Visitors page: general card spacing & readability (excluding Quick Answers) */
.visitors-page .section .card:not(.visitors-quick-answers) {
  border-radius: 1rem;
}

.visitors-page .section .card:not(.visitors-quick-answers) h2,
.visitors-page .section .card:not(.visitors-quick-answers) h3,
.visitors-page .section .card:not(.visitors-quick-answers) h5 {
  margin-bottom: 0.85rem;
}

.visitors-page .section .card:not(.visitors-quick-answers) p.small,
.visitors-page .section .card:not(.visitors-quick-answers) ul.small {
  line-height: 1.5;
}

.visitors-page .section .card:not(.visitors-quick-answers) ul {
  margin-bottom: 0.5rem;
}

.visitors-page .section .card:not(.visitors-quick-answers) .icon-list li,
.visitors-page .section .card:not(.visitors-quick-answers) ul li {
  margin-bottom: 0.35rem;
}

.visitors-page .section .card:not(.visitors-quick-answers) .btn {
  margin-top: 0.75rem;
}

.visitors-page .visitors-info-card h3 {
  margin-bottom: 0.85rem;
}

.visitors-page .visitors-info-card ul {
  padding-left: 1.1rem;
}

.visitors-page .visitors-info-card .btn {
  margin-top: 0.5rem;
}

/* Remove dark overlay on the hero image to show full clockwork artwork */
.hero .hero-image::after {
  background: none !important;
}

/* Make hero cover first viewport and keep it responsive. Move content slightly up for stronger visual impact */
.hero {
  min-height: 100vh;
  display: block;
  position: relative;
}
.hero .hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
}
.hero .hero-image img.hero-crest {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.hero .hero-content {
  position: absolute;
  /* place content 10px below the fixed header; uses --header-height if set elsewhere */
  top: calc(var(--header-height, 88px) + 10px);
  left: 0;
  width: 100%;
  transform: translateY(0);
  z-index: 2;
}
.hero .hero-content .content-box {
  transform: translateY(-6vh); /* push content higher for stronger visual presence */
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero { min-height: 80vh; }
  .hero .hero-wrapper { min-height: 80vh; }
  .hero .hero-image img.hero-crest { height: 80vh; }
  .hero .hero-content { top: calc(var(--header-height, 78px) + 10px); }
  .hero .hero-content .content-box { transform: translateY(-4vh); padding: 0 1rem; }
}

@media (max-width: 576px) {
  .hero { min-height: 70vh; }
  .hero .hero-wrapper { min-height: 70vh; }
  .hero .hero-image img.hero-crest { height: 70vh; }
  .hero .hero-content { top: calc(var(--header-height, 72px) + 10px); }
  .hero .hero-content .content-box { transform: translateY(-2vh); padding: 0 1rem; }
}

/* Ensure hero image scales beautifully */
.hero .hero-image img.hero-crest {
  object-fit: cover;
  object-position: center right;
  transform: translateZ(0);
}

/* Helpers for accessibility and embeds */
.map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.textarea-large {
  min-height: 150px;
}

/* Featured Departments styles */
.featured-departments .section-header h2 { color: var(--accent-color-dark); }
.feature-card { padding: 1.25rem; }
.feature-card .card-title { margin-bottom: .25rem; font-weight: 600; color: var(--heading-color); }
.feature-card .device-note { margin-top: .5rem; font-size: .85rem; color: rgba(255,255,255,0.65); }
.feature-card .badge { font-weight:600; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(3,12,14,0.24); transition: transform .28s ease, box-shadow .28s ease; }
@media (max-width: 576px) { .featured-departments .card { text-align:center; } }

/* Main content contrast: set a lighter background for the primary content area so accent colors stand out */
.main {
  background: var(--background-color);
  padding-top: calc(var(--header-height, 88px) + 12px);
  padding-bottom: 48px;
}

/* Homepage override: allow the hero image to sit behind the fixed header
   without pushing the hero down. Keeps other pages using the header
   offset so we avoid layout shifts site-wide. */
/* If the page has a full-bleed hero, JavaScript adds `.has-hero` to `.main`.
   This removes the global top-padding only when a hero is present so the
   hero can sit behind the fixed header. The global `.main` padding remains
   the default for pages without a hero. */
.main.has-hero {
  padding-top: 0;
}

/* Departments page improvements */
.featured-departments { padding: 2.25rem 0; }
.featured-departments .feature-card { border-radius: 12px; display:flex; flex-direction:column; }
.featured-departments .feature-card .card-title { font-size: 1.05rem; color: var(--heading-color); }
.featured-departments .feature-card .btn { min-width: 120px; }

/* Social Hub (homepage snippets) */
#social-snippets {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.social-snippets .section-title h2 { color: var(--heading-color); }
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.social-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid rgba(3,12,14,0.06);
  box-shadow: 0 14px 34px rgba(3,12,14,0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.social-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(3,12,14,0.10); }
.social-card .card-img-top { width:100%; height:180px; object-fit:cover; display:block; }
.social-card .card-body { padding:1rem; }
.social-card .card-title { font-size:1.05rem; margin-bottom:.35rem; }
.social-card .card-meta { margin-top:.75rem; }
.social-card .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.social-card .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.social-card .card-title { margin-bottom: .4rem; font-weight: 600; }
.social-card .card-text { color: rgba(255,255,255,0.76); margin-bottom: .75rem; }
.social-card .card-meta { margin-top: auto; display:flex; justify-content:space-between; align-items:center; }
.social-card .btn-outline { padding: .45rem .8rem; font-size: .9rem; }

@media (max-width: 992px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .social-card .card-img-top { height: 180px; }
}
@media (max-width: 576px) {
  .social-grid { grid-template-columns: 1fr; }
  .social-card .card-img-top { height: 160px; }
}

/* Patient Journey / Storyboard */
.patient-journey {
  padding: 3.25rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
}
.patient-journey .journey-intro { text-align:center; margin-bottom:1.5rem; }
.journey-steps {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
}
.journey-step {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 1.25rem;
  flex: 1 1 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  box-shadow: 0 8px 24px rgba(3,12,14,0.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.journey-step:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(3,12,14,0.12); }
.journey-step .step-top { display:flex; gap:.75rem; align-items:center; }
.journey-step .step-number { width:36px; height:36px; border-radius:999px; display:inline-grid; place-items:center; font-weight:700; background:var(--accent-color); color:var(--surface-color); }
.journey-step .step-icon { font-size: 1.25rem; color: var(--accent-color); }
.journey-step h5 { margin: 0; font-weight: 700; font-size: 1.05rem; }
.journey-step p { margin: 0; color: rgba(255,255,255,0.85); font-size: .95rem; }
.journey-step .step-meta { display:flex; gap:.5rem; align-items:center; margin-top:.5rem; font-size:.85rem; color: rgba(255,255,255,0.6); }
.journey-step .step-meta a { color: var(--accent-color); text-decoration: underline; }
.journey-connector {
  width: 40px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.journey-connector .bi { color: rgba(255,255,255,0.28); transform: rotate(90deg); font-size:1.1rem; }

@media (max-width: 992px) {
  .journey-steps { gap: .75rem; }
}
@media (max-width: 768px) {
  .journey-steps { flex-direction: column; }
  .journey-connector { display:none; }
}


/* Storyboard styles (horizontal card scroller) */
.patient-storyboard .storyboard-wrap { position: relative; margin-top: 1.5rem; }
.patient-storyboard .storyboard {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  /* provide space so the first/last items can be centered — JS will compute a precise value */
  padding-inline: clamp(1rem, 6vw, 10rem);
  scroll-padding-inline: var(--storyboard-scroll-pad, 2rem);
}
.patient-storyboard .storyboard.auto-scroll { scroll-behavior: smooth; }
.patient-storyboard .storyboard-card {
  /* Narrower cards so content wraps more naturally on most viewports */
  min-width: 220px;
  max-width: 300px;
  width: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(9,20,16,0.06);
  scroll-snap-align: center;
  flex: 0 0 auto;
  position: relative;
  word-break: break-word; /* ensure long words wrap */
  overflow-wrap: break-word;
}
.patient-storyboard .card-inner { padding: 1.25rem 1rem 1.5rem; }
.patient-storyboard .card-header { font-weight:700; font-size:1rem; color:var(--heading-color); margin-bottom:.5rem; }
.patient-storyboard .card-label { color: var(--win-accent-2); font-weight:700; }
.patient-storyboard .card-body p { margin:0 0 .75rem; color: rgba(255,255,255,0.85); }
.patient-storyboard .btn-story { display:inline-block; margin-top:.5rem; padding:.45rem .75rem; font-size:.875rem; border-radius:8px; background:var(--win-accent-1); color:#fff; text-decoration:none; }
.patient-storyboard .card-time { position:absolute; right:12px; bottom:12px; }
.patient-storyboard .time-pill { background: #ffd56a; color:#0b2b24; padding:.28rem .5rem; border-radius:999px; font-weight:700; font-size:.78rem; }

@media (max-width: 992px) {
  .patient-storyboard .storyboard { gap:.75rem; }
  .patient-storyboard .storyboard-card { min-width: 240px; }
}
@media (max-width: 768px) {
  .patient-storyboard .storyboard { gap:.5rem; }
  .patient-storyboard .storyboard-card { width: 86%; min-width:220px; }
}

/* scrollbar and progress bar */
.patient-storyboard .storyboard::-webkit-scrollbar { height: 10px; }
.patient-storyboard .storyboard::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius:10px; }
.patient-storyboard .storyboard::-webkit-scrollbar-thumb { background: var(--win-accent-1); border-radius:10px; }
.patient-storyboard .storyboard-track { height:8px; background: rgba(3,12,14,0.06); border-radius:999px; margin-top:12px; overflow:hidden; }
.patient-storyboard .storyboard-progress { height:100%; background: linear-gradient(90deg, #0bb7a8, #1ea99a); width:0%; border-radius:999px; transition: width .12s linear; }

/* Visual tuning to closely match the provided screenshot */
.patient-storyboard .storyboard-title { font-size: 2.1rem; color: var(--win-accent-1); font-weight:800; margin-bottom:.25rem; }
.patient-storyboard .storyboard-sub { color: rgba(3,12,14,0.6); margin-bottom: 1rem; }

.patient-storyboard .storyboard-step { position: relative; min-width: 240px; max-width: 320px; flex: 0 0 auto; scroll-snap-align: center; }
.patient-storyboard .step-card {
  background: var(--surface-color);
  padding: 1.25rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(3,12,14,0.06);
  border: 1px solid rgba(3,12,14,0.04);
  min-height: 170px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap: .6rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.patient-storyboard .step-badge { color: #f2b800; font-weight:800; text-align:left; font-size:.95rem; }
.patient-storyboard .step-desc { color: var(--default-color); line-height:1.45; margin-bottom: 1.25rem; }
.patient-storyboard .btn-story { margin-top:auto; background: var(--win-accent-1); padding:.6rem .9rem; border-radius:999px; color:#fff; display:inline-block; }

.patient-storyboard .step-dot { position:absolute; right:-18px; top:50%; transform:translateY(-50%); width:28px; height:28px; background:#ffd56a; border-radius:50%; box-shadow: 0 6px 18px rgba(3,12,14,0.12); border:4px solid var(--background-color); }

.patient-storyboard .card-time { position:absolute; left:50%; transform:translateX(-50%); bottom:12px; }
.patient-storyboard .time-pill { display:inline-block; background:#ffd56a; color:#0b2b24; padding:.28rem .55rem; border-radius:999px; font-weight:700; box-shadow: 0 6px 12px rgba(3,12,14,0.06); }

/* Ensure paragraph text inside storyboard cards wraps and doesn't force excessive width */
.patient-storyboard .step-desc,
.patient-storyboard .card-body p,
.patient-storyboard .card-inner p {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* progress rail larger and visible with outer thin rail */
.patient-storyboard .storyboard-track { height:10px; background: #e6eef0; border-radius:999px; margin-top:18px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.6); }
.patient-storyboard .storyboard-progress { height:100%; background: linear-gradient(90deg, #0bb7a8, #0bb7a8); width:0%; border-radius:999px; transition: width .12s linear; box-shadow: 0 6px 12px rgba(11,183,168,0.12); }

@media (max-width: 768px) {
  .patient-storyboard .storyboard-step { width: 86%; min-width:220px; }
  .patient-storyboard .step-dot { display:none; }
  .patient-storyboard .card-time { position: static; transform:none; margin-top:.5rem; }
}

/* hide the connector on the last visible step */
.patient-storyboard .storyboard-step:last-child .step-dot { display: none; }

/* Services accordion removed — replaced by the 6-card grid on the homepage. */
/* Keeping grid-based card styles elsewhere; accordion-specific layout was removed to reduce duplication. */
.accordion-item.active .accordion-panel { display: block; }
.service-features { margin: 0.5rem 0 0; padding-left: 1rem; }
.service-btn { display: inline-block; margin-top: .5rem; color: #fff; background: var(--win-accent-1); padding: .45rem .75rem; border-radius: 8px; text-decoration:none; }

@media (max-width: 768px) {
  .services-accordion { display:block; }
  .services-accordion .accordion-item { width: 100%; min-width: auto; max-width: none; margin-bottom: .75rem; }
  .service-thumb { width:64px; height:64px; }
}

/* Home testimonials tweaks */
.home-testimonials-slider .testimonial-item { padding: 1rem; }
.home-testimonials-slider .testimonial-author img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: #fff;
  border: 2px solid #e9ecef;
  display: inline-block;
}
.home-testimonials-slider .testimonial-author .rounded-circle {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  background: #007bff;
  color: #fff;
}

/* Modern homepage testimonial card */
.testimonial-modern-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(11, 183, 168, 0.10), 0 1.5px 8px rgba(0,0,0,0.04);
  max-width: 420px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow .22s;
}
.testimonial-modern-card:hover {
  box-shadow: 0 16px 48px rgba(11, 183, 168, 0.16), 0 2px 12px rgba(0,0,0,0.08);
}
.testimonial-avatar {
  width: 96px;
  height: 96px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar img,
.testimonial-avatar .rounded-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--accent-color, #0bb7a8);
  box-shadow: 0 2px 12px rgba(11,183,168,0.10);
  object-fit: cover;
  background: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-stars {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.testimonial-quote {
  font-size: 1.18rem;
  color: #222;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.testimonial-author-info {
  margin-top: 0.5rem;
  text-align: center;
}
.testimonial-author-info h5 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.testimonial-author-info span {
  font-size: 0.98rem;
  color: #888;
}
/* Fallback icon for no testimonials */
.testimonial-modern-card .bi-chat-quote-fill {
  color: var(--accent-color, #0bb7a8);
  opacity: 0.7;
}
@media (max-width: 576px) {
  .testimonial-modern-card {
    padding: 1.5rem 0.5rem;
    min-height: 220px;
    max-width: 98vw;
  }
  .testimonial-avatar {
    width: 72px;
    height: 72px;
  }
  .testimonial-avatar img,
  .testimonial-avatar .rounded-circle {
    width: 72px;
    height: 72px;
    font-size: 1.6rem;
  }
  .testimonial-quote {
    font-size: 1rem;
  }
}

/* Highlight panel for Personal Care section */
.highlight-panel {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 96%));
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 0 14px 32px rgba(3,12,14,0.04);
}
.highlight-panel h2 { color: var(--accent-color-dark); font-size:1.6rem; }
.highlight-panel .bullets-list { list-style: none; padding-left: 0; margin: 0 0 1rem 0; }
.highlight-panel .bullets-list li { margin: .6rem 0; padding-left: 1rem; position: relative; color: rgba(3,12,14,0.9); }
.highlight-panel .bullets-list li::before { content: '•'; color: var(--accent-color); position: absolute; left: -0.6rem; }

.image-collage { display:flex; gap:.75rem; }
.image-collage .collage-main { flex:2 1 60%; border-radius:12px; overflow:hidden; }
.image-collage .collage-main img { width:100%; height:100%; object-fit:cover; display:block; }
.image-collage .collage-side { flex:1 1 40%; display:flex; flex-direction:column; gap:.75rem; }
.image-collage .collage-side img { width:100%; height:50%; object-fit:cover; border-radius:12px; display:block; }

@media (max-width: 992px) {
  .social-grid { grid-template-columns: repeat(2,1fr); }
  .image-collage { flex-direction:row; }
}
@media (max-width: 768px) {
  .social-grid { grid-template-columns: 1fr; }
  .highlight-panel { padding:1rem; }
  .image-collage { flex-direction:column; }
}


.department-card { transition: transform .22s ease, box-shadow .22s ease; border-radius: 12px; overflow: hidden; }
.department-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(3,12,14,0.18); }
.department-card .department-image-wrapper { position: relative; }
.department-card .department-image-wrapper img { width: 100%; height: auto; display:block; }

/* Small ribbon for particularly featured items (optional) */
.ribbon { position: absolute; left: 0; top: 8px; background: var(--win-accent-1); color: #fff; padding: 4px 10px; font-size: .8rem; border-radius: 0 8px 8px 0; box-shadow: 0 6px 18px rgba(2,44,46,0.12); }

/* NHN Medical Aid horizontal list (scrollable on small screens) */
.nhn-wrapper {
  padding: 0.5rem 0 1.25rem 0;
}
.nhn-list {
  display: flex;
  gap: 1rem;
  /* flex track for marquee; content is duplicated in HTML for seamless loop */
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  min-width: 200%;
  align-items: center;
  /* animation: continuous scroll to left; paused on hover */
  animation: nhn-scroll 20s linear infinite;
  will-change: transform;
}
.nhn-list::-webkit-scrollbar {
  height: 8px;
}
.nhn-list::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 8px;
}
.nhn-item {
  flex: 0 0 auto;
  min-width: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
  scroll-snap-align: center;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nhn-item h5 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  color: var(--accent-color);
}
.nhn-item p.muted {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(44,48,49,0.7);
}

/* badge styling and marquee animation */
.nhn-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(4,30,31,0.08);
  border: 1px solid rgba(255,255,255,0.06);
}

.nhn-marquee {
  overflow: hidden;
}

@keyframes nhn-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.nhn-list:hover,
.nhn-marquee:hover .nhn-list {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .nhn-item { min-width: 160px; }
  .nhn-badge { font-size: 0.9rem; padding: 0.35rem 0.7rem; }
  .nhn-list { animation-duration: 28s; }
}

/* Sticky sidebar helper for social hub subscribe card */
.social-sidebar {
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .social-sidebar { position: static; top: auto; }
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Service cards & icon polish */
.service-item.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-item.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(3,12,14,0.22);
}
.service-item .service-icon-wrapper i,
.service-item .service-icon-wrapper {
  color: var(--win-accent-1);
}
.service-item .service-icon-wrapper i {
  font-size: 2rem;
}
.service-link,
.btn-outline {
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
}

/* Fade helpers for services filtering (used by services page script) */
#services-grid .col {
  will-change: opacity, transform;
}
.fade-transition {
  transition: opacity 260ms ease, transform 260ms ease;
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.fade-out {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* Tighter Halo badge styles */
.badge {
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.bg-soft-accent {
  background: linear-gradient(90deg, var(--win-accent-4), rgba(255,255,255,0.02));
  border: 1px solid rgba(4,158,187,0.08);
}
.text-teal { color: var(--win-accent-2) !important; }

/* Sticky detail sidebar */
.detail-sidebar {
  position: sticky;
  top: calc(var(--header-height, 88px) + 16px);
  width: 220px;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(3,12,14,0.08);
  border: 1px solid rgba(255,255,255,0.03);
  margin-left: auto;
}
.detail-sidebar .nav-link { color: var(--nav-color); }
.detail-sidebar .nav-link.active { background: var(--win-accent-1); color: #fff; }

/* Decorative section intro banner */
.section-intro-funky {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(4,158,187,0.08), rgba(126,224,232,0.03));
  border: 1px solid rgba(4,158,187,0.06);
}
.section-intro-funky .icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(4,158,187,0.12);
  border-radius: 10px;
  font-size: 1.5rem;
  color: var(--win-accent-1);
}
.section-intro-funky h4 { margin: 0; }

/* Small style for the sidebar collapse toggle */
.detail-sidebar .btn-outline-secondary {
  --bs-btn-padding-y: 0.2rem;
  --bs-btn-padding-x: 0.35rem;
  height: 32px;
  width: 36px;
  display: inline-grid;
  place-items: center;
}

/* Generic fade collapse used on service details 'See more' lists */
.fade-collapse {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  display: none;
}
.fade-collapse.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo svg {
  height: 32px;
  padding-right: 5px;
  color: var(--accent-color);
}

@media (max-width: 575px) {
  .header .logo svg {
    height: 28px;
  }
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 575px) {
  .header .logo h1 {
    font-size: 20px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 10px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 9999;
  }
  
  /* Make sure hamburger is always visible on scrolled header */
  .scrolled .mobile-nav-toggle {
    color: #ffffff;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    /* Use the header height variable if available so the panel starts below the header */
    inset: var(--header-height, 60px) 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  /* Improve vertical rhythm for mobile nav items */
  .navmenu ul > li { border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%); }
  .navmenu ul > li:last-child { border-bottom: 0; }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  /* Clean up Preadmission CTA when menu overlay is open */
  .mobile-nav-active .btn-getstarted { display: none !important; }

  /* Search row styling within mobile menu (white panel) */
  .navmenu .header-search-form { padding: 8px 20px; }
  .navmenu .header-search-form .form-control {
    width: 100% !important;
    border-radius: 10px !important;
    background: #f7f9fb !important;
    color: #1c272a !important;
    border: 1px solid #d5e2e6 !important;
  }
  .navmenu .header-search-form .btn { color: var(--nav-dropdown-color) !important; }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 5px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero .hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px 0;
}

.hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 20%) 0%, color-mix(in srgb, var(--background-color), transparent 50%) 100%);
  z-index: 2;
}

.hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-content {
  position: relative;
  z-index: 3;
  padding: 3rem 0;
  width: 100%;
}

.hero .hero-content .content-box {
  padding: 2rem 0;
}

.hero .hero-content .content-box .badge-accent {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero .hero-content .content-box h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .hero-content .content-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero .hero-content .content-box .cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero .hero-content .content-box .cta-group .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero .hero-content .content-box .cta-group .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .content-box .cta-group .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .hero-content .content-box .cta-group .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.hero .hero-content .content-box .cta-group .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .content-box .info-badges {
  display: flex;
  gap: 2rem;
}

.hero .hero-content .content-box .info-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .hero-content .content-box .info-badges .badge-item i {
  font-size: 2rem;
  color: var(--accent-color);
}

.hero .hero-content .content-box .info-badges .badge-item .badge-content {
  display: flex;
  flex-direction: column;
}

.hero .hero-content .content-box .info-badges .badge-item .badge-content span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
}

.hero .hero-content .content-box .info-badges .badge-item .badge-content strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.features-wrapper {
  background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  padding: 2rem;
  margin-top: 15px;
}
.features-wrapper .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}
.features-wrapper .feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  flex-shrink: 0;
}
.features-wrapper .feature-item .feature-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
}
.features-wrapper .feature-item .feature-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.features-wrapper .feature-item .feature-text p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}
.hero .features-wrapper .feature-item .feature-text p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .hero .hero-content .content-box h1 {
    font-size: 3rem;
  }

  .floating-features .features-wrapper {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (max-width: 992px) {
  .hero .hero-wrapper {
    height: auto;
    min-height: 600px;
  }

  .hero .hero-content .content-box h1 {
    font-size: 2.5rem;
  }

  .hero .floating-features {
    position: relative;
    transform: translateY(0);
    padding: 3rem 0;
  }

  .floating-features .features-wrapper {
    flex-direction: column;
  }

  .floating-features .features-wrapper .feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .floating-features .features-wrapper .feature-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hero .hero-wrapper {
    min-height: 500px;
  }

  .hero .hero-image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

  .hero .hero-content .content-box h1 {
    font-size: 2.2rem;
  }

  .hero .hero-content .content-box p {
    font-size: 1rem;
  }

  .hero .hero-content .content-box .cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero .hero-content .content-box .cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .hero .hero-content .content-box .info-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .content-box {
    padding: 1rem 0;
  }

  .hero .hero-content .content-box h1 {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about .about-image {
  position: relative;
}

.home-about .about-image img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.home-about .about-image .experience-badge {
  position: absolute;
  bottom: 0;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(30%);
}

.home-about .about-image .experience-badge .years {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.home-about .about-image .experience-badge .text {
  font-size: 14px;
  display: block;
}

@media (max-width: 576px) {
  .home-about .about-image .experience-badge {
    right: 15px;
    padding: 15px;
  }

  .home-about .about-image .experience-badge .years {
    font-size: 28px;
  }

  .home-about .about-image .experience-badge .text {
    font-size: 12px;
  }
}

.home-about .about-content h2 {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  .home-about .about-content h2 {
    font-size: 28px;
  }
}

.home-about .about-content .lead {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 500;
}

.home-about .about-content p {
  margin-bottom: 16px;
}

.home-about .feature-item {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--surface-color);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-about .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-about .feature-item .icon {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.home-about .feature-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.home-about .feature-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.home-about .cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.home-about .cta-wrapper .btn {
  padding: 10px 24px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s;
}

.home-about .cta-wrapper .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.home-about .cta-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.home-about .cta-wrapper .btn-outline {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
}

.home-about .cta-wrapper .btn-outline:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.home-about .certifications-row {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.home-about .certifications-row .certification-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.home-about .certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.home-about .certifications .certification-item {
  flex: 0 0 150px;
  text-align: center;
  transition: transform 0.3s;
}

.home-about .certifications .certification-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}

.home-about .certifications .certification-item:hover {
  transform: translateY(-5px);
}

.home-about .certifications .certification-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 576px) {
  .home-about .certifications .certification-item {
    flex: 0 0 120px;
  }
}

@media (max-width: 768px) {
  .home-about .certifications {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .home-about .about-content {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Featured Departments Section
--------------------------------------------------------------*/
.featured-departments .department-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-departments .department-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 75%);
}

.featured-departments .department-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.featured-departments .department-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-departments .department-card:hover .department-image img {
  transform: scale(1.05);
}

.featured-departments .department-content {
  padding: 30px;
  position: relative;
}

.featured-departments .department-icon {
  position: absolute;
  top: -30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.featured-departments .department-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.featured-departments h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 15px 0;
  color: var(--heading-color);
}

.featured-departments p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.featured-departments .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-departments .btn-learn-more span {
  transition: transform 0.3s ease;
}

.featured-departments .btn-learn-more i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.featured-departments .btn-learn-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.featured-departments .btn-learn-more:hover span {
  transform: translateX(3px);
}

.featured-departments .btn-learn-more:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .featured-departments .department-content {
    padding: 25px 20px;
  }

  .featured-departments .department-icon {
    left: 20px;
    width: 50px;
    height: 50px;
    top: -25px;
  }

  .featured-departments .department-icon i {
    font-size: 20px;
  }

  .featured-departments h3 {
    font-size: 20px;
    margin: 35px 0 15px 0;
  }

  .featured-departments p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-card {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.featured-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.featured-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
}

.featured-services .service-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.featured-services .service-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

/* Correct hover selectors and smoother transitions */
.featured-services .service-card:hover .service-icon {
  background: var(--accent-color);
  transform: scale(1.12);
}

.featured-services .service-card:hover .service-icon i {
  color: var(--contrast-color);
}

.featured-services .service-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

/* Heading color change on hover */
.featured-services .service-card:hover .service-content h3 {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.featured-services .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.featured-services .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.featured-services .service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--default-color);
}

.featured-services .service-features li:last-child {
  margin-bottom: 0;
}

.featured-services .service-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.featured-services .service-btn {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.featured-services .service-btn i {
  margin-left: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.featured-services .service-btn:hover {
  color: var(--heading-color);
  text-decoration: none;
}

.featured-services .service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .featured-services .service-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .featured-services .service-icon {
    width: 70px;
    height: 70px;
  }

  .featured-services .service-icon i {
    font-size: 30px;
  }

  .featured-services .service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .featured-services .service-content p {
    font-size: 14px;
  }

  .featured-services .service-features li {
    font-size: 13px;
    margin-bottom: 8px;
  }
}

/*--------------------------------------------------------------
# Find A Doctor Section
--------------------------------------------------------------*/
.find-a-doctor h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.find-a-doctor .search-container {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 2rem;
}

.find-a-doctor .search-form .form-control,
.find-a-doctor .search-form .form-select {
  padding: 0.75rem 1rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.find-a-doctor .search-form .form-control:focus,
.find-a-doctor .search-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.find-a-doctor .search-form .btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.find-a-doctor .search-form .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.find-a-doctor .filter-tabs .nav-pills .nav-link {
  color: var(--default-color);
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  margin: 0 0.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.find-a-doctor .filter-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.find-a-doctor .filter-tabs .nav-pills .nav-link.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Services page category pills */
.services-page #service-categories.nav-pills .nav-link {
  color: color-mix(in srgb, var(--contrast-color), transparent 35%);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1.25rem;
  font-weight: 500;
}

.services-page #service-categories.nav-pills .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.services-page #service-categories.nav-pills .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.find-a-doctor .doctor-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 92%);
}

.find-a-doctor .doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.find-a-doctor .doctor-card .doctor-image {
  position: relative;
  overflow: hidden;
}

.find-a-doctor .doctor-card .doctor-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.find-a-doctor .doctor-card .doctor-image .availability-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.find-a-doctor .doctor-card .doctor-image .availability-badge.online {
  background: color-mix(in srgb, #28a745, transparent 10%);
  color: white;
}

.find-a-doctor .doctor-card .doctor-image .availability-badge.busy {
  background: color-mix(in srgb, #ffc107, transparent 10%);
  color: white;
}

.find-a-doctor .doctor-card .doctor-image .availability-badge.offline {
  background: color-mix(in srgb, var(--default-color), transparent 20%);
  color: white;
}

.find-a-doctor .doctor-card:hover .doctor-image img {
  transform: scale(1.05);
}

.find-a-doctor .doctor-card .doctor-info {
  padding: 1.5rem;
}

.find-a-doctor .doctor-card .doctor-info h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.find-a-doctor .doctor-card .doctor-info .specialty {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.find-a-doctor .doctor-card .doctor-info .experience {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.find-a-doctor .doctor-card .doctor-info .rating {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.find-a-doctor .doctor-card .doctor-info .rating i {
  color: #ffc107;
  font-size: 0.9rem;
  margin-right: 0.125rem;
}

.find-a-doctor .doctor-card .doctor-info .rating .rating-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.find-a-doctor .doctor-card .doctor-info .appointment-actions {
  display: flex;
  gap: 0.5rem;
}

.find-a-doctor .doctor-card .doctor-info .appointment-actions .btn {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.find-a-doctor .doctor-card .doctor-info .appointment-actions .btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.find-a-doctor .doctor-card .doctor-info .appointment-actions .btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.find-a-doctor .doctor-card .doctor-info .appointment-actions .btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.find-a-doctor .doctor-card .doctor-info .appointment-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.find-a-doctor .btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.find-a-doctor .btn-lg:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .find-a-doctor .search-container {
    padding: 1.5rem;
  }

  .find-a-doctor .search-form .row.g-3>* {
    margin-bottom: 1rem;
  }

  .find-a-doctor .filter-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .find-a-doctor .filter-tabs .nav-pills .nav-link {
    margin-bottom: 0.5rem;
  }

  .find-a-doctor .doctor-card .doctor-info .appointment-actions {
    flex-direction: column;
  }

  .find-a-doctor .doctor-card .doctor-info .appointment-actions .btn {
    width: 100%;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 576px) {
  .find-a-doctor h2 {
    font-size: 2rem;
  }

  .find-a-doctor .search-container {
    padding: 1rem;
  }

  .find-a-doctor .doctor-card .doctor-image img {
    height: 200px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.call-to-action .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .call-to-action .content h2 {
    font-size: 2rem;
  }
}

.call-to-action .content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  margin-bottom: 3rem;
}

.call-to-action .cta-buttons .btn-primary,
.call-to-action .cta-buttons .btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 10px 10px 0;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {

  .call-to-action .cta-buttons .btn-primary,
  .call-to-action .cta-buttons .btn-secondary {
    display: block;
    margin-bottom: 15px;
    text-align: center;
  }
}

.call-to-action .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.call-to-action .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.call-to-action .cta-buttons .btn-secondary:hover {
  transform: translateY(-2px);
}

.call-to-action .features-row {
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.call-to-action .feature-card {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.call-to-action .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.call-to-action .feature-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.call-to-action .feature-card .icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-color);
}

.call-to-action .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
}

.call-to-action .feature-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.call-to-action .feature-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.call-to-action .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.call-to-action .feature-card .feature-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .feature-card .feature-link span {
  margin-right: 8px;
}

.call-to-action .feature-card .feature-link i {
  transition: all 0.3s ease;
}

.call-to-action .feature-card .feature-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 20%);
}

.call-to-action .feature-card .feature-link:hover i {
  transform: translateX(5px);
}

.call-to-action .emergency-alert {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 3rem;
  color: var(--contrast-color);
}

.call-to-action .emergency-alert .emergency-content {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-content {
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

.call-to-action .emergency-alert .emergency-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.call-to-action .emergency-alert .emergency-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-text {
    text-align: center;
  }
}

.call-to-action .emergency-alert .emergency-text h4 {
  color: var(--contrast-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.call-to-action .emergency-alert .emergency-text p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
}

.call-to-action .emergency-alert .emergency-btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .call-to-action .emergency-alert .emergency-btn {
    display: block;
    text-align: center;
    width: 100%;
  }
}

.call-to-action .emergency-alert .emergency-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.call-to-action .emergency-alert .emergency-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .call-to-action .emergency-alert {
    text-align: center;
  }

  .call-to-action .emergency-alert .row {
    flex-direction: column;
  }

  .call-to-action .emergency-alert .col-lg-4 {
    margin-top: 1rem;
  }
}

/*--------------------------------------------------------------
# Emergency Info Section
--------------------------------------------------------------*/
.emergency-info .emergency-alert {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: var(--contrast-color);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

@media (max-width: 768px) {
  .emergency-info .emergency-alert {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

.emergency-info .emergency-alert .alert-icon {
  font-size: 3rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .emergency-info .emergency-alert .alert-icon {
    font-size: 2.5rem;
  }
}

.emergency-info .emergency-alert .alert-content {
  flex: 1;
}

.emergency-info .emergency-alert .alert-content h3 {
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

.emergency-info .emergency-alert .alert-content p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.emergency-info .emergency-alert .alert-action .btn-emergency {
  background-color: var(--contrast-color);
  color: #dc3545;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.emergency-info .emergency-alert .alert-action .btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #dc3545;
}

.emergency-info .emergency-alert .alert-action .btn-emergency i {
  font-size: 1.1rem;
}

.emergency-info .emergency-contacts .contact-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.emergency-info .emergency-contacts .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.emergency-info .emergency-contacts .contact-card.urgent {
  border-left-color: #dc3545;
}

.emergency-info .emergency-contacts .contact-card.urgent .card-icon i {
  color: #dc3545;
}

.emergency-info .emergency-contacts .contact-card .card-icon {
  text-align: center;
  margin-bottom: 20px;
}

.emergency-info .emergency-contacts .contact-card .card-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.emergency-info .emergency-contacts .contact-card .card-content {
  text-align: center;
  margin-bottom: 20px;
}

.emergency-info .emergency-contacts .contact-card .card-content h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.emergency-info .emergency-contacts .contact-card .card-content .contact-info,
.emergency-info .emergency-contacts .contact-card .card-content .address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.emergency-info .emergency-contacts .contact-card .card-content .contact-info i,
.emergency-info .emergency-contacts .contact-card .card-content .address i {
  color: var(--accent-color);
  font-size: 1rem;
}

.emergency-info .emergency-contacts .contact-card .card-content .contact-info span,
.emergency-info .emergency-contacts .contact-card .card-content .address span {
  font-weight: 500;
}

.emergency-info .emergency-contacts .contact-card .card-content .description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.emergency-info .emergency-contacts .contact-card .card-content .hours {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
}

.emergency-info .emergency-contacts .contact-card .card-action {
  text-align: center;
}

.emergency-info .emergency-contacts .contact-card .card-action .btn-contact {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.emergency-info .emergency-contacts .contact-card .card-action .btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.emergency-info .quick-actions {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.emergency-info .quick-actions h4 {
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.emergency-info .quick-actions .action-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  color: var(--default-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

@media (max-width: 576px) {
  .emergency-info .quick-actions .action-link {
    margin-bottom: 0.5rem;
  }
}

.emergency-info .quick-actions .action-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.emergency-info .quick-actions .action-link i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.emergency-info .quick-actions .action-link span {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.emergency-info .quick-actions .action-link:hover i {
  color: var(--accent-color);
}

.emergency-info .emergency-tips {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.emergency-info .emergency-tips h4 {
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.emergency-info .emergency-tips .emergency-list {
  list-style: none;
  padding: 0;
}

.emergency-info .emergency-tips .emergency-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
}

.emergency-info .emergency-tips .emergency-list li i {
  color: #28a745;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.emergency-info .emergency-tips .emergency-list li:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .stats-container {
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.about .stat-item {
  text-align: center;
}

.about .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.about .stat-item .stat-label {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 500;
}

.about .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about .cta-buttons .btn-primary,
.about .cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.about .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about .cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid var(--accent-color);
}

.about .cta-buttons .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about .image-section .main-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about .image-section .main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about .image-section .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about .image-section .image-grid .grid-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about .image-section .image-grid .grid-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .image-section .image-grid .grid-item:hover img {
  transform: scale(1.05);
}

.about .certifications-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .certifications-section .section-header {}

/* Social Hub page styles */
.social-hub-hero .hero-panel { background: linear-gradient(180deg, rgba(4,158,187,0.06), rgba(4,158,187,0.02)); border-radius:12px; }
.social-hub-hero .hero-panel h1 { color: var(--heading-color); font-weight:800; }
.featured-post { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00)); border-radius:12px; overflow:hidden; }
.featured-post .featured-media { background-size:cover; background-position:center; min-height:260px; }
.featured-media.hero-media { background-image: url('../img/halo/halo_lobby.jpg'); }
.post-media.media-clockwork { background-image: url('../img/halo/clockwork.png'); }
.post-media.media-halo1 { background-image: url('../img/halo/halo_lobby.jpg'); }
.post-media.media-halo2 { background-image: url('../img/halo/halo_lobby.png'); }
.post-grid .post-card { background: var(--surface-color); border:1px solid rgba(3,12,14,0.04); }
.post-media { height:140px; background-size:cover; background-position:center; }
.post-media[data-image] { background-image: var(--bg-image); }
.post-card .card-excerpt { color: rgba(2,36,36,0.72); }
.social-sidebar .sticky-top { top: calc(var(--header-height,88px) + 18px); }

/* utility: small hero image in header */
.social-hub-hero img { max-height: 140px; object-fit: cover; }

/* Our Team page */
.team-page .team-section {
  margin-bottom: 3rem;
}

.team-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.4));
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  padding: 1.1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
}

.team-avatar-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.75rem;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,0.55);
}

.team-avatar-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  background: radial-gradient(circle at top, #0b1920, #000000);
  color: #f8fafc;
}

.team-body {
  flex: 1;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(159,239,244,0.96);
}

.team-meta {
  font-size: 0.78rem;
}

.team-bio {
  font-size: 0.8rem;
  color: rgba(236,245,247,0.92);
}

.team-organogram .organogram-wrapper {
  border-radius: 18px;
  padding: 3rem 2rem;
  background: #ffffff;
  border: 2px solid rgba(4,158,187,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-organogram .org-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.team-organogram .org-level-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #037f88;
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(4,158,187,0.08);
  border-radius: 999px;
}

.team-organogram .org-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
  justify-items: center;
  align-items: stretch;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.team-organogram .org-card {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  white-space: normal;
  word-break: break-word;
  line-height: 1.25;
}

.team-organogram .org-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.team-organogram .org-card-root {
  padding: 1rem 2rem;
  background: #049ebb;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 6px 20px rgba(4,158,187,0.3);
}

.team-organogram .org-card-directors {
  background: #7c3aed;
  color: #fff;
  border: none;
}

.team-organogram .org-card-management {
  background: #10b981;
  color: #fff;
  border: none;
}

.team-organogram .org-card-staff {
  background: #ef4444;
  color: #fff;
  border: none;
}

.team-organogram .org-card-level-0 {
  background: #e0f7fa;
  color: #006064;
  border: 1px solid #80deea;
}

.team-organogram .org-card-level-1 {
  background: #fff9c4;
  color: #f57f17;
  border: 1px solid #fbc02d;
}

.team-organogram .org-card-level-2 {
  background: #f3e5f5;
  color: #6a1b9a;
  border: 1px solid #ba68c8;
}

.team-organogram .org-card-level-3 {
  background: #ffe0b2;
  color: #e65100;
  border: 1px solid #ff9800;
}

.team-organogram .org-connector-vertical {
  width: 3px;
  height: 30px;
  background: linear-gradient(180deg, rgba(4,158,187,0.6), rgba(4,158,187,0.3));
  margin: 0;
  border-radius: 999px;
}

/* Responsive tuning */
@media (max-width: 992px) {
  .featured-post .featured-media { min-height:180px; }
}

.about .certifications-section .section-header h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about .certifications-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .certifications-section .certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.about .certifications-section .certifications-grid .certification-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.about .certifications-section .certifications-grid .certification-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about .certifications-section .certifications-grid .certification-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.3s ease;
}

.about .certifications-section .certifications-grid .certification-item:hover img {
  filter: grayscale(0) opacity(1);
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 3rem;
  }

  .about .content h2 {
    font-size: 2rem;
  }

  .about .cta-buttons {
    justify-content: center;
  }

  .about .image-section .main-image img {
    height: 300px;
  }

  .about .image-section .image-grid .grid-item img {
    height: 150px;
  }

  .about .stats-container {
    margin: 2rem 0;
  }
}

@media (max-width: 768px) {
  .about .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about .cta-buttons .btn-primary,
  .about .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .about .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .about .certifications-grid .certification-item {
    padding: 1rem;
  }

  .about .certifications-grid .certification-item img {
    max-height: 45px;
  }
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments .department-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  height: fit-content;
}

.departments .department-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.departments .department-card:hover .department-image-wrapper img {
  transform: scale(1.02);
}

.departments .department-card:hover .department-link {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.departments .department-header {
  text-align: center;
  margin-bottom: 20px;
}

.departments .department-header .department-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.departments .department-header .department-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.departments .department-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.departments .department-header .department-subtitle {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.departments .department-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 140px;
}

.departments .department-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.departments .department-image-wrapper .department-stats {
  position: absolute;
  top: 12px;
  right: 12px;
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
}

.departments .department-image-wrapper .department-stats .stat-number {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.departments .department-image-wrapper .department-stats .stat-label {
  font-size: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  text-transform: uppercase;
}

.departments .department-content p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
}

.departments .department-content .department-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.departments .department-content .department-highlights li {
  font-size: 12px;
  color: var(--default-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.departments .department-content .department-highlights li i {
  color: var(--accent-color);
  font-size: 12px;
}

.departments .department-content .department-link {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.departments .featured-department {
  background: linear-gradient(145deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  position: relative;
  overflow: hidden;
}

.departments .featured-department::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%), transparent);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.departments .featured-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.departments .featured-header .featured-badge {
  background: linear-gradient(135deg, #ffa726, #ff7043);
  color: var(--contrast-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.departments .featured-header .featured-badge i {
  font-size: 10px;
}

.departments .featured-header .featured-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.departments .featured-header .featured-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.departments .featured-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.departments .featured-header .featured-subtitle {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.departments .featured-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
  height: 200px;
}

.departments .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.departments .featured-image .featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 20%), transparent);
  padding: 20px;
}

.departments .featured-image .achievement-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.departments .featured-image .achievement-list .achievement-item {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 20px;
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.departments .featured-image .achievement-list .achievement-item i {
  font-size: 12px;
}

.departments .featured-content {
  text-align: center;
}

.departments .featured-content p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
}

.departments .featured-content .featured-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
}

.departments .featured-content .featured-services .service-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.departments .featured-content .featured-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.departments .featured-content .featured-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.departments .featured-content .featured-btn:hover i {
  transform: rotate(45deg);
}

.departments .featured-content .featured-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .departments .featured-department {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .departments .department-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .departments .featured-department {
    padding: 25px;
  }

  .departments .featured-header .featured-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .departments .featured-header .featured-icon i {
    font-size: 28px;
  }

  .departments .featured-header h2 {
    font-size: 24px;
  }

  .departments .featured-image {
    height: 180px;
  }

  .departments .department-image-wrapper {
    height: 120px;
  }

  .departments .featured-services .service-tag {
    font-size: 10px;
    padding: 5px 10px;
  }
}

/*--------------------------------------------------------------
# Department Details Section
--------------------------------------------------------------*/
.department-details .intro {
  margin-bottom: 2rem;
}

.department-details .intro h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.department-details .intro .divider {
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.department-details .intro .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 800px;
  margin: 0 auto;
}

.department-details .department-overview .department-image {
  position: relative;
}

.department-details .department-overview .department-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.department-details .department-overview .department-image .experience-badge {
  position: absolute;
  bottom: -25px;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.department-details .department-overview .department-image .experience-badge span {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.department-details .department-overview .department-image .experience-badge p {
  font-size: 0.85rem;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .department-details .department-overview .department-image .experience-badge {
    width: 100px;
    height: 100px;
    padding: 1rem;
  }

  .department-details .department-overview .department-image .experience-badge span {
    font-size: 1.8rem;
  }

  .department-details .department-overview .department-image .experience-badge p {
    font-size: 0.75rem;
  }
}

.department-details .department-overview .department-services {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.department-details .department-overview .department-services .service-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.department-details .department-overview .department-services .service-card:last-child {
  margin-bottom: 0;
}

.department-details .department-overview .department-services .service-card .icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
}

.department-details .department-overview .department-services .service-card .icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.department-details .department-overview .department-services .service-card .content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.department-details .department-overview .department-services .service-card .content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .department-details .department-overview .department-services {
    margin-top: 3rem;
  }
}

.department-details .department-stats {
  margin-top: 5rem;
  padding: 3rem 0;
  background-color: color-mix(in srgb, var(--background-color), transparent 95%);
  border-radius: 12px;
}

.department-details .department-stats .stat-item {
  text-align: center;
}

.department-details .department-stats .stat-item .number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.department-details .department-stats .stat-item p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0;
}

.department-details .key-services h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.25rem;
}

.department-details .key-services p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.department-details .key-services .service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.department-details .key-services .service-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.department-details .key-services .service-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 0.75rem;
}

.department-details .key-services .cta-wrapper {
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.department-details .key-services .cta-wrapper .cta-content {
  width: 60%;
  padding-right: 2rem;
}

.department-details .key-services .cta-wrapper .cta-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.department-details .key-services .cta-wrapper .cta-content p {
  margin-bottom: 1.75rem;
}

.department-details .key-services .cta-wrapper .cta-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.department-details .key-services .cta-wrapper .cta-content .cta-buttons .btn {
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.department-details .key-services .cta-wrapper .cta-content .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.department-details .key-services .cta-wrapper .cta-content .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.department-details .key-services .cta-wrapper .cta-content .cta-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.department-details .key-services .cta-wrapper .cta-content .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.department-details .key-services .cta-wrapper .cta-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
}

.department-details .key-services .cta-wrapper .cta-image img {
  border-radius: 12px 0 12px 0;
}

@media (max-width: 991px) {
  .department-details .key-services .cta-wrapper {
    flex-direction: column;
  }

  .department-details .key-services .cta-wrapper .cta-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .department-details .key-services .cta-wrapper .cta-image {
    position: relative;
    width: 100%;
  }

  .department-details .key-services .cta-wrapper .cta-image img {
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .department-details .intro h2 {
    font-size: 2.25rem;
  }

  .department-details .key-services h3 {
    font-size: 1.5rem;
  }

  .department-details .department-stats .stat-item .number {
    font-size: 2.25rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-tabs .nav-tabs {
  border: none;
  justify-content: center;
  margin-bottom: 50px;
}

.services .services-tabs .nav-tabs .nav-item {
  margin: 0 10px;
}

.services .services-tabs .nav-tabs .nav-link {
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  color: var(--default-color);
  font-weight: 600;
  padding: 15px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services .services-tabs .nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #007acc 50%));
  transition: left 0.3s ease;
  z-index: -1;
}

.services .services-tabs .nav-tabs .nav-link:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.services .services-tabs .nav-tabs .nav-link:hover::before {
  left: 0;
}

.services .services-tabs .nav-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #007acc 50%));
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.services .services-tabs .nav-tabs .nav-link.active::before {
  left: 0;
}

.services .services-tabs .tab-content {
  padding: 20px 0;
}

.services .service-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.services .service-item:hover {
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .service-item:hover .service-icon-wrapper {
  transform: scale(1.1);
}

.services .service-item:hover .service-icon-wrapper i {
  color: var(--contrast-color);
}

.services .service-item:hover .service-icon-wrapper::before {
  transform: scale(1);
}

.services .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services .service-item.featured {
  border: 2px solid var(--accent-color);
  box-shadow: 0 5px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .service-item.featured .service-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #007acc 50%));
}

.services .service-item.featured .service-icon-wrapper i {
  color: var(--contrast-color);
}

.services .service-item.featured .service-icon-wrapper::before {
  transform: scale(1);
}

.services .service-item.emergency-highlight {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid var(--accent-color);
  text-align: center;
  padding: 50px 30px;
}

.services .service-item.emergency-highlight .service-icon-wrapper {
  margin: 0 auto 30px;
  background: var(--accent-color);
}

.services .service-item.emergency-highlight .service-icon-wrapper i {
  color: var(--contrast-color);
}

.services .service-item.emergency-highlight .emergency-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 576px) {
  .services .service-item.emergency-highlight .emergency-actions {
    flex-direction: column;
    align-items: center;
  }
}

.services .service-item.emergency-highlight .btn-emergency {
  background: #dc3545;
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.services .service-item.emergency-highlight .btn-emergency:hover {
  background: color-mix(in srgb, #dc3545, #000000 20%);
  transform: translateY(-2px);
}

.services .service-item.emergency-highlight .btn-directions {
  background: transparent;
  color: var(--accent-color);
  padding: 15px 25px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.services .service-item.emergency-highlight .btn-directions:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.services .service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.services .service-icon-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #007acc 50%));
  border-radius: 20px;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: 0;
}

.services .service-icon-wrapper i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.services .service-details h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.services .service-details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  line-height: 1.7;
}

.services .service-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services .service-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--default-color);
  font-size: 14px;
}

.services .service-benefits li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 14px;
}

.services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.services .service-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services .service-link:hover {
  color: var(--accent-color);
}

.services .service-link:hover i {
  transform: translateX(3px);
}

.services .services-cta {
  margin-top: 80px;
}

.services .services-cta .cta-content {
  background: var(--surface-color);
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 50px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  position: relative;
  overflow: hidden;
}

.services .services-cta .cta-content::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50%;
}

.services .services-cta .cta-content::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 150px;
  height: 150px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 50%;
}

.services .services-cta .cta-content>* {
  position: relative;
  z-index: 2;
}

.services .services-cta .cta-content i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.services .services-cta .cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.services .services-cta .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.services .services-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 576px) {
  .services .services-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.services .services-cta .cta-buttons .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.services .services-cta .cta-buttons .btn-book:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.services .services-cta .cta-buttons .btn-contact {
  background: transparent;
  color: var(--default-color);
  padding: 15px 30px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.services .services-cta .cta-buttons .btn-contact:hover {
  background: var(--default-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services .services-tabs .nav-tabs {
    flex-wrap: wrap;
  }

  .services .services-tabs .nav-tabs .nav-item {
    margin: 5px;
  }

  .services .services-tabs .nav-tabs .nav-link {
    padding: 12px 20px;
    font-size: 14px;
  }

  .services .service-item {
    padding: 25px 20px;
    text-align: center;
  }

  .services .service-item.emergency-highlight {
    padding: 40px 20px;
  }

  .services .service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
  }

  .services .service-icon-wrapper i {
    font-size: 24px;
  }

  .services .services-cta .cta-content {
    padding: 40px 20px;
  }

  .services .services-cta .cta-content h3 {
    font-size: 24px;
  }

  .services .services-cta .cta-content i {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Service Details 2 Section
--------------------------------------------------------------*/
.service-details-2 .service-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.service-details-2 .service-image img {
  border-radius: 15px;
}

.service-details-2 .service-image .service-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
}

.service-details-2 .service-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .service-details-2 .service-content h2 {
    font-size: 2rem;
  }
}

.service-details-2 .service-content .service-tagline {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.service-details-2 .service-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details-2 .service-content .service-features {
  margin: 2rem 0;
}

.service-details-2 .service-content .service-features h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.service-details-2 .service-content .service-features ul {
  list-style: none;
  padding: 0;
}

.service-details-2 .service-content .service-features ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.service-details-2 .service-content .service-features ul li i {
  color: var(--accent-color);
  margin-right: 0.8rem;
  font-size: 1.1rem;
}

.service-details-2 .service-content .service-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .service-details-2 .service-content .service-actions {
    flex-direction: column;
  }
}

.service-details-2 .service-content .service-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-details-2 .service-content .service-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.service-details-2 .service-content .service-actions .btn-secondary {
  background: transparent;
  color: var(--heading-color);
  padding: 12px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-details-2 .service-content .service-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.service-details-2 .service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-details-2 .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-details-2 .service-card .card-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-details-2 .service-card .card-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.service-details-2 .service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-details-2 .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
}

.service-details-2 .service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-details-2 .service-card .card-link:hover {
  gap: 0.8rem;
  color: color-mix(in srgb, var(--accent-color), black 10%);
}

.service-details-2 .service-card .card-link i {
  transition: transform 0.3s ease;
}

.service-details-2 .service-card .card-link:hover i {
  transform: translateX(3px);
}

.service-details-2 .booking-section {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 2rem;
  border-radius: 15px;
}

.service-details-2 .booking-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.service-details-2 .booking-section p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
}

.service-details-2 .booking-section .availability-info .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-details-2 .booking-section .availability-info .info-item i {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-details-2 .booking-section .availability-info .info-item div {
  display: flex;
  flex-direction: column;
}

.service-details-2 .booking-section .availability-info .info-item div strong {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.service-details-2 .booking-section .availability-info .info-item div span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
}

.service-details-2 .appointment-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-details-2 .appointment-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-details-2 .appointment-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.service-details-2 .appointment-card .btn-appointment {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.service-details-2 .appointment-card .btn-appointment:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.service-details-2 .appointment-card .contact-alternative {
  text-align: center;
  font-size: 0.9rem;
}

.service-details-2 .appointment-card .contact-alternative span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 0.3rem;
}

.service-details-2 .appointment-card .contact-alternative a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.service-details-2 .appointment-card .contact-alternative a:hover {
  color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 992px) {
  .service-details-2 .service-content {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .service-details-2 .booking-section {
    margin-bottom: 2rem;
  }

  .service-details-2 .availability-info .info-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .doctor-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.doctors .doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.doctors .doctor-card .doctor-image {
  position: relative;
  overflow: hidden;
}

.doctors .doctor-card .doctor-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.doctors .doctor-card .doctor-image .doctor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%) 0%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.doctors .doctor-card .doctor-image .doctor-social {
  display: flex;
  gap: 15px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.doctors .doctor-card .doctor-image .doctor-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.doctors .doctor-card .doctor-image .doctor-social .social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.doctors .doctor-card .doctor-image .doctor-social .social-link i {
  font-size: 18px;
}

.doctors .doctor-card .doctor-image:hover .doctor-overlay {
  opacity: 1;
}

.doctors .doctor-card .doctor-image:hover .doctor-social {
  transform: translateY(0);
}

.doctors .doctor-card .doctor-image:hover img {
  transform: scale(1.1);
}

.doctors .doctor-card .doctor-content {
  padding: 30px 25px;
  text-align: center;
}

.doctors .doctor-card .doctor-content .doctor-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.doctors .doctor-card .doctor-content .doctor-specialty {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.doctors .doctor-card .doctor-content .doctor-bio {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.doctors .doctor-card .doctor-content .doctor-experience {
  margin-bottom: 25px;
}

.doctors .doctor-card .doctor-content .doctor-experience .experience-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doctors .doctor-card .doctor-content .btn-appointment {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.doctors .doctor-card .doctor-content .btn-appointment:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.doctors .btn-view-all {
  display: inline-block;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.doctors .btn-view-all:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 768px) {
  .doctors .doctor-card .doctor-content {
    padding: 25px 20px;
  }

  .doctors .doctor-card .doctor-content .doctor-name {
    font-size: 20px;
  }

  .doctors .doctor-card .doctor-content .doctor-specialty {
    font-size: 15px;
  }

  .doctors .doctor-card .doctor-content .doctor-bio {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Appointmnet Section
--------------------------------------------------------------*/
.appointmnet .appointment-info h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.appointmnet .appointment-info p {
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.6;
}

.appointmnet .info-items .info-item .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.appointmnet .info-items .info-item .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.appointmnet .info-items .info-item h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.appointmnet .info-items .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  line-height: 1.5;
}

.appointmnet .emergency-contact .emergency-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
}

.appointmnet .emergency-contact .emergency-card h6 {
  color: var(--heading-color);
  font-weight: 600;
}

.appointmnet .emergency-contact .emergency-card h6 i {
  color: var(--accent-color);
}

.appointmnet .emergency-contact .emergency-card p {
  color: var(--default-color);
  font-size: 0.9rem;
}

.appointmnet .emergency-contact .emergency-card p strong {
  color: var(--accent-color);
}

.appointmnet .appointment-form-wrapper {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.appointmnet .appointment-form .form-control,
.appointmnet .appointment-form .form-select {
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.appointmnet .appointment-form .form-control:focus,
.appointmnet .appointment-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.appointmnet .appointment-form .form-control::placeholder,
.appointmnet .appointment-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.appointmnet .appointment-form .form-select {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.appointmnet .appointment-form .form-select:focus {
  color: var(--default-color);
}

.appointmnet .appointment-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.appointmnet .appointment-form .btn-appointment {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.appointmnet .appointment-form .btn-appointment:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.appointmnet .appointment-form .btn-appointment i {
  font-size: 1.1rem;
}

.appointmnet .process-steps {
  margin-top: 4rem;
}

.appointmnet .process-steps .step-item {
  position: relative;
  padding: 2rem 1rem;
  text-align: center;
}

.appointmnet .process-steps .step-item .step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
}

.appointmnet .process-steps .step-item .step-icon {
  margin: 1.5rem 0 1rem 0;
}

.appointmnet .process-steps .step-item .step-icon i {
  font-size: 3rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.appointmnet .process-steps .step-item h5 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.appointmnet .process-steps .step-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.appointmnet .process-steps .step-item::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: calc(100% - 80px);
  height: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  z-index: 1;
}

@media (max-width: 991px) {
  .appointmnet .process-steps .step-item::before {
    display: none;
  }
}

.appointmnet .process-steps .step-item:last-child::before {
  display: none;
}

@media (max-width: 768px) {
  .appointmnet .appointment-form-wrapper {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .appointmnet .process-steps {
    margin-top: 3rem;
  }

  .appointmnet .process-steps .step-item {
    padding: 1.5rem 0.5rem;
  }
}

/*--------------------------------------------------------------
# Featured Testimonials Section
--------------------------------------------------------------*/
.featured-testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.featured-testimonials .swiper-wrapper {
  height: auto;
}

.featured-testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .featured-testimonials .testimonial-item {
    padding: 20px;
  }
}

.featured-testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.featured-testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.featured-testimonials .testimonial-item .profile {
  gap: 15px;
}

.featured-testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.featured-testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.featured-testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.featured-testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.featured-testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.featured-testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.featured-testimonials .swiper-button-prev,
.featured-testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.featured-testimonials .swiper-button-prev::after,
.featured-testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.featured-testimonials .swiper-button-prev:hover,
.featured-testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.featured-testimonials .swiper-button-prev:hover::after,
.featured-testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #FFD700;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.gallery .isotope-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.gallery .isotope-filters li:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.gallery .isotope-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 576px) {
  .gallery .isotope-filters li {
    margin-bottom: 5px;
  }
}

.gallery .gallery-item {
  margin-bottom: 30px;
}

.gallery .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.gallery .gallery-card:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery .gallery-img:hover img {
  transform: scale(1.05);
}

.gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.gallery .gallery-info {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery .gallery-info h4 {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery .gallery-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 14px;
  margin-bottom: 15px;
}

.gallery .gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery .gallery-link i {
  font-size: 20px;
}

.gallery .gallery-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .gallery .gallery-info h4 {
    font-size: 16px;
  }

  .gallery .gallery-info p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .gallery .isotope-filters li {
    padding: 6px 14px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .gallery .gallery-overlay {
    padding: 15px;
  }

  .gallery .gallery-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .gallery .gallery-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .gallery .gallery-link {
    width: 35px;
    height: 35px;
  }

  .gallery .gallery-link i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq .faq-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
}

.faq .faq-item .faq-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  flex: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq .faq-item .faq-content p {
  padding: 0 25px 20px;
  margin: 0;
  line-height: 1.6;
  color: var(--default-color);
  font-size: 15px;
}

.faq .faq-item.faq-active .faq-header h3 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  transform: rotate(180deg);
}

.faq .faq-item.faq-active .faq-content {
  max-height: 300px;
  overflow: auto;
}

.faq .faq-contact-card {
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  color: var(--contrast-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq .faq-contact-card .card-icon {
  margin-bottom: 20px;
}

.faq .faq-contact-card .card-icon i {
  font-size: 48px;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.faq .faq-contact-card .card-content h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq .faq-contact-card .card-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.faq .faq-contact-card .contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: auto;
}

.faq .faq-contact-card .contact-options .contact-option {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.faq .faq-contact-card .contact-options .contact-option:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
}

.faq .faq-contact-card .contact-options .contact-option i {
  font-size: 20px;
  margin-right: 12px;
}

.faq .faq-contact-card .contact-options .contact-option span {
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 991px) {
  .faq .row {
    flex-direction: column-reverse;
  }

  .faq .faq-contact-card {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .faq .faq-item .faq-header {
    padding: 15px 20px;
  }

  .faq .faq-item .faq-header h3 {
    font-size: 16px;
  }

  .faq .faq-item .faq-content p {
    padding: 0 20px 15px;
    font-size: 14px;
  }

  .faq .faq-contact-card {
    padding: 30px 20px;
  }

  .faq .faq-contact-card .card-icon i {
    font-size: 40px;
  }

  .faq .faq-contact-card .card-content h3 {
    font-size: 24px;
  }

  .faq .faq-contact-card .card-content p {
    font-size: 15px;
  }

  .faq .faq-contact-card .contact-options .contact-option {
    padding: 12px 15px;
  }

  .faq .faq-contact-card .contact-options .contact-option i {
    font-size: 18px;
  }

  .faq .faq-contact-card .contact-options .contact-option span {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding-top: 60px;
  padding-bottom: 60px;
  /* Add your styles here */
}