/* =========================================================
   Dr. Vinoth's Advanced Ortho & Diabetic Clinic
   Premium Design System — style.css
   ========================================================= */

:root {
  --primary: #17aaa8;
  --primary-dark: #0d7377;
  --accent: #f5a623;
  --dark: #0f172a;
  --secondary: #f8fafc;
  --text: #475569;
  --light-bg: #f5fcfc;
  --white: #ffffff;
  --border: #e6f2f2;

  --gradient: linear-gradient(135deg, #17aaa8, #0d7377);
  --gradient-gold: linear-gradient(135deg, #f8c460, #f5a623);
  --gradient-soft: linear-gradient(160deg, #f5fcfc 0%, #ffffff 60%);

  --shadow-sm: 0 4px 16px rgba(13, 115, 119, 0.07);
  --shadow-md: 0 18px 45px -22px rgba(13, 115, 119, 0.35);
  --shadow-lg: 0 40px 90px -40px rgba(13, 115, 119, 0.45);
  --shadow-gold: 0 20px 45px -22px rgba(245, 166, 35, 0.55);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;

  --font-display: "Plus Jakarta Sans", "Poppins", sans-serif;
  --font-body: "Inter", "Poppins", sans-serif;

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
/* Prevent horizontal overflow and white space on the right */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }

p { margin-bottom: 1rem; }

a { color: var(--primary-dark); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

::selection { background: var(--primary); color: #fff; }

.container-x {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 85px;
}

.section { padding: 40px; position: relative; }
.section-tight {     padding: 40px; }
.bg-soft { background: var(--gradient-soft); }
.bg-light { background: var(--light-bg); }
.bg-dark-teal { background: var(--dark); color: rgba(255,255,255,.72); }
.bg-dark-teal h1, .bg-dark-teal h2, .bg-dark-teal h3, .bg-dark-teal h4 { color: #fff; }

/* ---------- Utility text ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #0dcaf0;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}
.eyebrow-light { color: var(--accent); }
.lead { font-size: 1.06rem; color: var(--text); max-width: 62ch; }
.text-gold { color: var(--accent); }
.text-teal { color: #0dcaf0; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn-x {
  --btn-bg: #0e9c9a;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .3s;
}
.btn-x:hover { color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-x::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.45), transparent 80%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}
.btn-x:hover::after { transform: translateX(120%); }
.btn-gold { --btn-bg: var(--gradient-gold); color: #3b2a05; box-shadow: var(--shadow-gold); }
.btn-gold:hover { color: #3b2a05; }
.btn-ghost {
  --btn-bg: #0dcaf0;
  color: var(--primary-dark);
  border: 1.5px solid rgba(23,170,168,.4);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { color: var(--primary-dark); background: rgba(23,170,168,.08); box-shadow: var(--shadow-sm); }
.btn-light { --btn-bg: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.35); box-shadow: none; }
.btn-sm {     padding: 11px 22px;
    font-size: .85rem;
    color: white;
}

/* ripple */
.ripple-ink {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,.55);
  animation: ripple .65s linear;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* ---------- Header & Mobile Specific Fixes ---------- */
.topbar {
    background: var(--dark);
    color: rgb(255, 255, 255);
    font-size: 14px;
    padding: 10px 0;
}
.topbar a { color: rgb(255, 255, 255); }
.topbar a:hover { color: var(--accent); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    /* border-bottom: 1px solid rgba(23,170,168,.12); */
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 0; }

.brand img {
    object-fit: contain;
    width: 240px;
    height: 71px;
}

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu > li > a {
    position: relative;
    display: block;
    padding: 10px 14px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: .93rem;
    color: var(--dark);
    border-radius: var(--radius-pill);
}

.has-drop { position: relative; }
.drop {
    position: absolute; top: 100%; left: 0;
    min-width: 232px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 10px;
    list-style: none; margin: 8px 0 0;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all .35s var(--ease);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 9px 14px; border-radius: 10px; font-size: .9rem; color: #ffffff; }
.drop a:hover { background: var(--light-bg); color: var(--primary-dark); }

/* Dropdown Menu Border & Line styling */
.nav-menu .dropdown-menu {
    border: 1px solid #f5a623 !important;
}
.nav-menu .dropdown-menu li:not(:last-child) .dropdown-item {
    border-bottom: 1px solid rgba(245, 166, 35, 0.3);
}
.nav-menu .dropdown-menu .dropdown-item:hover {
    background-color: rgba(245, 166, 35, 0.15) !important;
    color: #f5a623 !important;
}

/* Hamburger Menu button styling */


.hamburger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    position: relative;
    cursor: pointer;
}
.hamburger span {
    position: absolute; left: 11px; right: 11px; height: 2px;
    background: var(--dark); border-radius: 2px;
    transition: transform .4s var(--ease), opacity .3s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav Drawer Styles */
.mobile-nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(85vw, 320px);
    background: #fff;
    z-index: 1000;
    padding: 20px 20px 30px;
    transform: translateX(105%);
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(15,23,42,.3);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mobile-links-wrapper a {
    display: block;
    padding: 12px 4px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 1.05rem;
    transition: color 0.2s;
}
.mobile-nav .mobile-links-wrapper a:hover {
    color: #17847b;
}

.nav-overlay {
    position: fixed; inset: 0;
    background: rgba(15,23,42,.45);
    backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden;
    transition: .4s; z-index: 999;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* Mobile Navigation Layout Fixes */
.mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding: 20px 20px 20px !important;
}

.mobile-links-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 4px;
}

.mobile-nav .mobile-links-wrapper > a, 
.mobile-nav .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 11px 4px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 1rem;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 100%;
    text-align: left;
    text-decoration: none;
}

/* Mobile Dropdown Submenu Styling */
.mobile-submenu {
    display: none;
    background: #f8f9fa;
    padding-left: 12px;
    border-left: 2px solid #17847b;
    margin: 6px 0;
    border-radius: 6px;
}

.mobile-submenu a {
    font-size: 0.88rem !important;
    padding: 8px 10px !important;
    border-bottom: 1px solid rgba(0,0,0,0.04) !important;
    color: #333 !important;
    font-weight: 500 !important;
}

.mobile-dropdown-item.active .mobile-submenu {
    display: block;
}

.mobile-dropdown-item.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-footer-action {
    background: #fff;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
/* Responsive Media Queries */
@media (max-width: 991px) {
    .desktop-nav-menu,
    .desk-only,
    .desk-only-btn {
        display: none !important;
    }
    .hamburger {
        display: block;
    }
}

@media (min-width: 992px) {
    .hamburger,
    .mobile-nav,
    .nav-overlay {
        display: none !important;
    }
    .nav-menu .has-drop:hover > .dropdown-menu,
    .nav-menu .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
        margin-top: 0;
    }
}

/* ---------- Hero ---------- */

/* ===========================
   TOPBAR
=========================== */

.topbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgb(255 242 242 / 20%);
    backdrop-filter:blur(8px);
    transition:.35s;
}

.topbar span,
.topbar a,
.topbar i{
    color:#fff;
    font-size:14px;
    text-decoration:none;
}

.topbar a:hover{
    color:#f8b133;
}

.topbar.hide{
    transform:translateY(-100%);
}

/* ===========================
   HEADER
=========================== */

.site-header{
    position:absolute;
    top:45px;
    left:0;
    width:100%;
    z-index:9998;
    background:rgba(0,0,0,.15);
    backdrop-filter:blur(12px);
    transition:.35s ease;
}

.nav-inner{
    min-height:80px;
}

.brand-logo{
    background:#fff;
    border-radius:12px;
    padding:0px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li{
    position:relative;
}

.nav-menu a{
    color:#fff !important;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.nav-menu a:hover,
.nav-menu a.active{
    color:#f8b133 !important;
}

/* Dropdown */

.dropdown-menu{
    background:#17847b;
    border:none;
    border-radius:10px;
}

.dropdown-item{
    color:#fff;
}

.dropdown-item:hover{
    background:rgba(255,255,255,.12);
    color:#fff;
}

/* Scroll Header */

.site-header.scrolled{
    position:fixed;
    top:0;
    background:#00d4ff;
    backdrop-filter:none;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* ===========================
   HERO
=========================== */

.hero-section{
    position:relative;
    overflow:hidden;
}

.carousel,
.carousel-inner,
.carousel-item{
    height:100vh;
}

.hero-banner{
    width:100%;
    height:100vh;
    object-fit:cover;
}

/* Overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgb(83 120 112 / 40%) 0%, rgb(0 0 0 / 49%) 45%, rgb(0 90 90 / 22%) 100%);
    z-index:1;
}

/* Hero Content */

.hero-content{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    transform:translateY(-50%);
    z-index:2;
}

.hero-content .container-x{
    max-width:1320px;
    margin:0 auto;
}

.hero-content .hero-text{
    max-width:620px;
    text-align:left;
}

.hero-content h1{
    font-size:72px;
    font-weight:700;
    line-height:1.1;
    color:#fff;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#00e6ff;
}

.hero-content p{
    color:#fff;
    font-size:22px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:18px;
    justify-content:flex-start;
}

@media (max-width:991px){

    .hero-content{
        text-align:center;
    }

    .hero-content .hero-text{
        margin:auto;
        text-align:center;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-content h1{
        font-size:44px;
    }
}
/* ===========================
   Buttons
=========================== */

.btn-x{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
}

.btn-ghost{
    border:1px solid rgba(255,255,255,.5);
    color:#fff;
}

.btn-ghost:hover{
    background:#fff;
    color:#111;
}

/* ===========================
   Carousel Controls
=========================== */

.carousel-control-prev,
.carousel-control-next{
    width:70px;
    z-index:5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:50px;
    height:50px;
    display: none;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:991px){

    .topbar{
        display:none;
    }

    .site-header{
        top:0;
    }

    .carousel,
    .carousel-inner,
    .carousel-item,
    .hero-banner{
        height:75vh;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-btns{
        justify-content:center;
        flex-wrap:wrap;
    }

}

@media(max-width:576px){

    .carousel,
    .carousel-inner,
    .carousel-item,
    .hero-banner{
        height:40vh;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-tag{
        font-size:12px;
    }

}
.hero {
  position: relative;
  min-height: min(94vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(1200px 620px at 78% 12%, rgba(23,170,168,.16), transparent 60%),
              radial-gradient(900px 520px at 6% 82%, rgba(245,166,35,.14), transparent 62%),
              var(--gradient-soft);
  padding: 70px 0 90px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(23,170,168,.22);
  box-shadow: var(--shadow-sm);
  font-size: .82rem; font-weight: 600; color: var(--primary-dark);
  backdrop-filter: blur(8px);
}
.hero-badge b { background: var(--gradient); color: #fff; border-radius: var(--radius-pill); padding: 4px 12px; font-size: .74rem; letter-spacing: .08em; }
.hero h1 { margin: 22px 0 18px; }
.hero .type-line { color: var(--primary-dark); }
.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: 42% 42% 34px 34px / 30% 30% 34px 34px;
  overflow: hidden;
  background: var(--gradient);
  box-shadow: var(--shadow-lg);
}
/* Desktop default height */
.hero-photo img {
    width: 100%;
    display: block;
    mix-blend-mode: normal;
    height: 865px;
    object-fit: cover;
}
.hero-ring {
  position: absolute; inset: -6% -4%;
  border: 1.5px dashed rgba(23,170,168,.35);
  border-radius: 50%;
  animation: spin 42s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow-md);
  font-size: .84rem;
  font-weight: 600;
  color: var(--dark);
  animation: floaty 6s ease-in-out infinite;
}
.float-card span.ico { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--light-bg); color: var(--primary-dark); }
.float-card small { display: block; font-weight: 500; color: var(--text); font-size: .74rem; }
.fc-1 { top: 12%; left: -6%; }
.fc-2 { bottom: 20%; right: -4%; animation-delay: 1.6s; }
.fc-3 { bottom: 2%; left: 4%; animation-delay: .8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particles i {
  position: absolute; display: block;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(23,170,168,.28);
  animation: rise linear infinite;
}
.particles i:nth-child(even) { background: rgba(245,166,35,.3); }
@keyframes rise { from { transform: translateY(20px) scale(.6); opacity: 0; } 20% { opacity: 1; } to { transform: translateY(-560px) scale(1.1); opacity: 0; } }

.scroll-ind {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--primary-dark);
}
.scroll-ind .mouse { width: 24px; height: 40px; border: 1.5px solid rgba(23,170,168,.55); border-radius: 14px; position: relative; }
.scroll-ind .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 3px; background: var(--primary); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
@media (max-width: 991px) {
    .hero-photo img {
        height: 450px; /* Tablet view-kku */
    }
}

@media (max-width: 575px) {
    .hero-photo img {
        height: 350px; /* Small mobile screen-kku perfect-ah irukkum */
    }
   .hero-cta {
        display: flex;
        flex-direction: row !important; /* Button renduமே side-by-side varum */
        gap: 8px !important;
        width: 100%;
    }

    .hero-cta .btn-x {
        flex: 1; /* Both buttons will share equal width */
                padding: 13px 0px !important;
        font-size: 12px;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }

    /* Icons size reduction for mobile */
    .hero-cta .btn-x svg {
        width: 14px !important;
        height: 14px !important;
        flex-shrink: 0;
    }
}

.about-image{
    width:100%;
    height:780px;
    object-fit:cover;
    border-radius:20px;
}

@media (max-width:991px){
    .about-image{
        height:400px;
    }
}

@media (max-width:576px){
    .about-image{
        height:340px;
    }
}
/* ---------- Stats ---------- */
/* .stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; }
.stat {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(23,170,168,.14);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--primary-dark); line-height: 1; }
.stat .num sup { color: var(--accent); font-size: .5em; top: -.7em; }
.stat p { margin: 8px 0 0; font-size: .84rem; letter-spacing: .04em; } */

/* ---------- Clean Stat Strip Styles ---------- */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(23, 170, 168, 0.08);
    margin: 20px 0;
}

.stat {
    text-align: center;
    padding: 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.stat:last-child {
    border-right: none;
}

.stat .num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: #0dcaf0;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat .num sup {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f5a623;
}

.stat p {
    font-size: 0.92rem;
    font-weight: 600;
    color: #555555;
    margin: 0;
}

/* Responsive for Tablets and Mobiles */
@media (max-width: 991px) {
    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat:nth-child(2) {
        border-right: none; /* remove right border for 2nd item in 2-column layout */
    }
}

@media (max-width: 575px) {
    .stat-strip {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding-bottom: 15px;
    }
    .stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}


/* ---------- Cards ---------- */
.card-x {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.card-x::before {
  content: "";
  position: absolute; inset: 0;
  background: #0dcaf0;
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.card-x > * { position: relative; z-index: 1; }
.card-x:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-x:hover::before { opacity: 1; }
.card-x:hover h3, .card-x:hover p, .card-x:hover a, .card-x:hover .ico-box { color: #fff; }
.card-x:hover .ico-box { background: rgba(255,255,255,.18); }
.ico-box {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: var(--light-bg);
  color: var(--primary-dark);
  margin-bottom: 20px;
  transition: .45s var(--ease);
}
.ico-box svg { width: 30px; height: 30px; }
.card-x h3 { font-size: 1.16rem; margin-bottom: 10px; transition: color .4s; }
.card-x p { font-size: .93rem; margin-bottom: 16px; transition: color .4s; }
.card-link { font-family: var(--font-display); font-weight: 600; font-size: .86rem; display: inline-flex; align-items: center; gap: 8px; }
.card-link svg { width: 16px; transition: transform .35s var(--ease); }
.card-x:hover .card-link svg { transform: translateX(6px); }

.card-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card-media:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-media .thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-media .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.card-media:hover .thumb img { transform: scale(1.09); }
.card-media .body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.tag {
  display: inline-block; padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--light-bg); color: var(--primary-dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.tag-gold { background: rgba(245,166,35,.14); color: #a76c05; }

.glass-panel {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 4vw, 48px);
}

.gradient-card {
  border-radius: var(--radius-lg);
  background: var(--gradient);
  color: rgba(255,255,255,.86);
  padding: clamp(30px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gradient-card h2, .gradient-card h3 { color: #fff; }
.gradient-card::after {
  content: "";
  position: absolute; width: 420px; height: 420px; right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(245,166,35,.35), transparent 65%);
  border-radius: 50%;
}

/* ---------- Feature list ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.check-list li::before {
  content: "✓";
  flex: 0 0 24px; height: 24px; margin-top: 3px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #0dcaf0;
  color: #fff; font-size: .72rem; font-weight: 700;
}

/* ---------- Page banner ---------- */
.page-banner {
  position: relative;
  padding: clamp(70px, 10vw, 140px) 0 clamp(56px, 7vw, 100px);
  background: radial-gradient(900px 460px at 85% 0%, rgba(23,170,168,.2), transparent 60%),
              radial-gradient(700px 380px at 0% 100%, rgba(245,166,35,.16), transparent 65%),
              var(--dark);
  color: rgba(255,255,255,.75);
  overflow: hidden;
}
.page-banner h1 { color: #fff; }
.page-banner .lead { color: rgba(255,255,255,.72); }
.breadcrumb-x { display: flex; gap: 10px; align-items: center; font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.breadcrumb-x a { color: var(--accent); }
.banner-blob { position: absolute; width: 480px; height: 480px; border-radius: 50%; border: 1px dashed rgba(255,255,255,.14); right: -120px; top: -140px; animation: spin 60s linear infinite; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--primary), rgba(245,166,35,.6)); }
.timeline-item { position: relative; margin-bottom: 34px; }
.timeline-item::before {
  content: ""; position: absolute; left: -32px; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 3px solid var(--primary);
  box-shadow: 0 0 0 6px rgba(23,170,168,.12);
}
.timeline-item h4 { margin: 0 0 6px; font-size: 1.05rem; }
.timeline-item .year { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: .82rem; letter-spacing: .14em; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.quote-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.quote-card .mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: rgba(23,170,168,.18); }
.stars { color: var(--accent); letter-spacing: 3px; font-size: .95rem; }
.who { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--gradient); color: #fff; font-weight: 700; font-family: var(--font-display); }

.slider-x { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform .8s var(--ease); }
.slider-track > * { min-width: 100%; padding: 0 6px; }
.slider-nav { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.slider-nav button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border); background: #fff; color: var(--primary-dark);
  cursor: pointer; transition: .35s var(--ease);
}
.slider-nav button:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-3px); }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.slider-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(23,170,168,.25); cursor: pointer; transition: .3s; }
.slider-dots span.active { width: 28px; border-radius: 9px; background: var(--gradient); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #94a3b8; white-space: nowrap; display: inline-flex; align-items: center; gap: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Accordion ---------- */
.acc-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; margin-bottom: 14px; overflow: hidden; transition: box-shadow .4s var(--ease), border-color .4s; }
.acc-item.open { box-shadow: var(--shadow-md); border-color: rgba(23,170,168,.3); }
.acc-head {
  width: 100%; text-align: left; border: 0; background: transparent;
  padding: 20px 58px 20px 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--dark);
  position: relative; cursor: pointer;
}
.acc-head::after {
  content: "+";
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--light-bg); color: var(--primary-dark);
  font-size: 1.1rem; transition: .4s var(--ease);
}
.acc-item.open .acc-head::after { content: "−"; background: var(--gradient); color: #fff; transform: translateY(-50%) rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc-body .inner { padding: 0 24px 22px; font-size: .95rem; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-bar button {
  padding: 10px 22px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); background: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--dark);
  cursor: pointer; transition: .35s var(--ease);
}
.filter-bar button:hover { border-color: var(--primary); color: var(--primary-dark); }
.filter-bar button.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }

.masonry { columns: 3; column-gap: 20px; }
.masonry .g-item { break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; position: relative; cursor: zoom-in; box-shadow: var(--shadow-sm); }
.masonry .g-item img { width: 100%; display: block; transition: transform 1.1s var(--ease); }
.masonry .g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,115,119,.75));
  opacity: 0; transition: opacity .45s var(--ease);
}
.masonry .g-item .cap { position: absolute; left: 20px; bottom: 16px; z-index: 2; color: #fff; font-family: var(--font-display); font-weight: 600; opacity: 0; transform: translateY(14px); transition: .45s var(--ease); }
.masonry .g-item:hover img { transform: scale(1.08); }
.masonry .g-item:hover::after, .masonry .g-item:hover .cap { opacity: 1; transform: translateY(0); }
.g-item.hide { display: none; }

.lightbox { position: fixed; inset: 0; background: rgba(15,23,42,.92); display: grid; place-items: center; z-index: 1200; opacity: 0; visibility: hidden; transition: .4s; padding: 30px; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox .close-lb, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.3rem;
  transition: .3s;
}
.lightbox .close-lb:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: var(--gradient); border-color: transparent; }
.close-lb { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; }
.lb-next { right: 26px; top: 50%; }

/* ---------- Forms ---------- */
.form-x label { font-family: var(--font-display); font-weight: 600; font-size: .84rem; color: var(--dark); margin-bottom: 7px; display: block; }
.form-x .control {
  width: 100%; padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff; color: var(--dark);
  font-family: var(--font-body); font-size: .95rem;
  transition: border-color .3s, box-shadow .3s;
}
.form-x .control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(23,170,168,.13); }
.form-x .control.invalid { border-color: #e5484d; box-shadow: 0 0 0 4px rgba(229,72,77,.12); }
.err { color: #e5484d; font-size: .78rem; min-height: 16px; display: block; margin-top: 4px; }
.field { margin-bottom: 18px; }

.modal-x { position: fixed; inset: 0; background: rgba(15,23,42,.6); backdrop-filter: blur(6px); display: grid; place-items: center; z-index: 1300; opacity: 0; visibility: hidden; transition: .35s; padding: 24px; }
.modal-x.open { opacity: 1; visibility: visible; }
.modal-card { background: #fff; border-radius: var(--radius-lg); padding: 44px 38px; max-width: 460px; text-align: center; box-shadow: var(--shadow-lg); transform: scale(.9); transition: transform .45s var(--ease); }
.modal-x.open .modal-card { transform: scale(1); }
.tick { width: 84px; height: 84px; margin: 0 auto 20px; border-radius: 50%; background: var(--gradient); display: grid; place-items: center; color: #fff; font-size: 2.2rem; box-shadow: var(--shadow-md); }

/* ---------- Floating buttons ---------- */
.floaties { position: fixed; right: 20px; bottom: 22px; z-index: 950; display: flex; flex-direction: column; gap: 12px; }
.floaties a, .floaties button {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  border: 0; cursor: pointer;
  color: #fff; box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.floaties a:hover, .floaties button:hover { transform: translateY(-4px) scale(1.06); color: #fff; }
.fab-wa { background: #25d366; }
.fab-call { background: var(--gradient); }
.fab-book { background: var(--gradient-gold); color: #3b2a05 !important; }
.fab-top { background: var(--dark); opacity: 0; visibility: hidden; }
.fab-top.show { opacity: 1; visibility: visible; }
.floaties .pulse-ring::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid currentColor; animation: pulseRing 2.4s ease-out infinite; opacity: .6;
}
@keyframes pulseRing { to { transform: scale(1.7); opacity: 0; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.65); padding: clamp(56px, 7vw, 96px) 0 0; position: relative; overflow: hidden; }
.site-footer h5 { color: #fff; font-family: var(--font-display); font-size: 1rem; margin-bottom: 20px; letter-spacing: .01em; }
.site-footer a { color: rgba(255,255,255,.66); font-size: .93rem; }
.site-footer a:hover { color: var(--accent); }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-brand img { width: 240px; margin-bottom: 16px; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); transition: .35s var(--ease); }
.social a:hover { background: var(--gradient); border-color: transparent; transform: translateY(-4px); }
.footer-bottom { margin-top: 54px; border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .85rem; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.footer-glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(23,170,168,.22), transparent 65%); left: -180px; bottom: -280px; }

/* ---------- Map ---------- */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); line-height: 0; }
.map-frame iframe { width: 100%; height: 440px; border: 0; filter: grayscale(.2) contrast(1.03); }

/* ---------- Misc ---------- */
.divider-wave { display: block; width: 100%; height: auto; }
.hover-glow:hover { box-shadow: 0 0 0 6px rgba(23,170,168,.1), var(--shadow-lg); }
.badge-soft { display: inline-block; padding: 7px 16px; border-radius: var(--radius-pill); background: rgba(23,170,168,.1); color: var(--primary-dark); font-size: .78rem; font-weight: 700; }
.ba-slider { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); user-select: none; }
.ba-slider img { display: block; width: 100%; }
.ba-after { position: absolute; inset: 0; width: 50%; overflow: hidden; border-right: 3px solid #fff; }
.ba-after img { width: 100vw; max-width: none; height: 100%; object-fit: cover; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; cursor: ew-resize; }
.ba-handle::after { content: "⇄"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.video-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-wrap img { width: 100%; display: block; filter: brightness(.72); }
.play-btn { position: absolute; inset: 0; margin: auto; width: 92px; height: 92px; border-radius: 50%; background: rgba(255,255,255,.9); border: 0; display: grid; place-items: center; color: var(--primary-dark); font-size: 1.5rem; cursor: pointer; }
.play-btn::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255,255,255,.7); animation: pulseRing 2.4s ease-out infinite; }


.site-header{
    width:100%;
}

.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
    gap:30px;
}

/* Logo */

.brand{
    flex:0 0 auto;
}

.brand-logo{
    height:70px;
    width:auto;
    display:block;
}

/* Menu */

.desktop-nav-menu{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
    margin:0;
    padding:0;
    list-style:none;
}

.nav-menu li{
    position:relative;
}

.nav-menu a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    white-space:nowrap;
}

/* Right Side */

.nav-actions{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:15px;
}

/* Buttons */

.btn-x{
    white-space:nowrap;
}

/* Hamburger */

.hamburger{
    display:none;
}

/* Responsive */

@media(max-width:991px){

    .desktop-nav-menu{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .nav-inner{
        min-height:75px;
    }

    .brand-logo{
        height:60px;
    }

    .nav-actions .btn-ghost,
    .nav-actions .btn-x{
        display:none;
    }
}

/* ==========================
   Desktop
========================== */

@media (min-width:1200px){

    .nav-inner{
        display:flex;
        align-items:center;
        justify-content:space-between;
        height:90px;
    }

    .desktop-nav-menu{
        display:flex;
    }

    .hamburger,
    .mobile-nav,
    .nav-overlay{
        display:none;
    }

}


/* ==========================
   Tablet
========================== */

@media (max-width:991.98px){

    /* Topbar Hide */

    .topbar{
        display:none;
    }

    /* Header */

    .site-header{
        top:0;
    }

    .nav-inner{
        height:75px;
    }

    .brand-logo{
        width:55px;
        height:55px;
    }

    /* Hide Desktop Menu */

    .desktop-nav-menu{
        display:none;
    }

    /* Hide Desktop Buttons */

    .nav-actions .btn-x{
        display:none;
    }

    /* Show Hamburger */

    .hamburger{
        display:flex;
        align-items:center;
        justify-content:center;
        width:45px;
        height:45px;
        border:none;
        background:#33a08d;
    }

    .hamburger span{
        display:block;
        width:24px;
        height:2px;
        background:#fff;
        margin:4px 0;
        transition:.3s;
    }

}


/* ==========================
   Mobile Menu
========================== */

.mobile-nav{

    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    max-width:90%;
    height:100vh;

    background:#fff;

    z-index:99999;

    transition:.35s;

    overflow-y:auto;

    padding:25px;
}

.mobile-nav.active{
    right:0;
}

.nav-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.5);

    visibility:hidden;
    opacity:0;

    transition:.3s;

    z-index:99990;
}

.nav-overlay.active{

    visibility:visible;
    opacity:1;

}

.mobile-links-wrapper a{

    display:block;

    padding:14px 0;

    text-decoration:none;

    color:#222;

    font-weight:600;

    border-bottom:1px solid #eee;

}

.mobile-dropdown-toggle{

    border:none;
    background:none;

    padding:14px 0;

    font-weight:600;

}

.mobile-submenu{

    display:none;

    padding-left:15px;

}

.mobile-submenu a{

    font-size:15px;

    padding:10px 0;

}


/* ==========================
   Mobile
========================== */

@media(max-width:767px){

    .brand-logo{
        width:50px;
        height:50px;
    }

    .mobile-nav{
        width:100%;
        max-width:100%;
    }

    .mobile-footer-action .btn-x{
        width:100%;
    }

}


/* ==========================
   Small Mobile
========================== */

@media(max-width:480px){

    .nav-inner{
        height:70px;
    }

    .brand-logo{
        width:45px;
        height:45px;
    }

}

.mobile-nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    transition: .4s ease;
    overflow-y: auto;
}

.mobile-nav.open{
    right: 0;
}

/* ==========================================
   MOBILE HEADER
========================================== */

@media (max-width:991px){

    /* Topbar Hide */
    .topbar{
        display:none;
    }

    /* Header */
    .site-header{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:70px;
        background:rgba(12,74,74,.96);
        backdrop-filter:blur(12px);
        z-index:9999;
    }

    .container-x{
        width:100%;
        padding:0 15px;
    }

    .nav-inner{
        display:flex;
        align-items:center;
        justify-content:space-between;
        height:70px;
    }

    /* Logo */
    .brand{
        display:flex;
        align-items:center;
    }

    .brand-logo{
        width:170px;
        height:auto;
        padding:4px;
        border-radius:8px;
        background:#fff;
    }

    /* Desktop Hide */
    .desktop-nav-menu,
    .btn-ghost,
    .desk-only,
    .desk-only-btn{
        display:none !important;
    }

    /* Right Side */
    .nav-actions{
        display:flex;
        align-items:center;
        margin-left:auto;
    }

    /* Hamburger */
    .hamburger{
        display:flex;
        width:42px;
        height:42px;
        border:none;
        background:transparent;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:6px;
        cursor:pointer;
        padding:0;
    }

    .hamburger span{
        width:24px;
        height:2px;
        background:#000000;
        border-radius:5px;
        transition:.3s;
    }

    /* Mobile Menu */
    .mobile-nav{
        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        max-width:85%;
        height:100vh;
        background:#ffffff;
        overflow-y:auto;
        z-index:10000;
        transition:.35s ease;
        padding:20px;
        box-shadow:-10px 0 35px rgba(0,0,0,.15);
    }

    .mobile-nav.open{
        right:0;
    }

    .mobile-nav-header{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .mobile-nav-header img{
        width:150px;
        height:auto;
    }

    .mobile-links-wrapper{
        margin-top:20px;
    }

    .mobile-links-wrapper a,
    .mobile-dropdown-toggle{
        display:flex;
        align-items:center;
        justify-content:space-between;
        width:100%;
        padding:14px 0;
        color:#222;
        text-decoration:none;
        border-bottom:1px solid #eee;
        font-weight:600;
        background:none;
        border-left:0;
        border-right:0;
        border-top:0;
    }

    .mobile-submenu{
        display:none;
        padding-left:15px;
    }

    .mobile-submenu a{
        padding:10px 0;
        font-size:14px;
        color:#555;
    }

    .mobile-dropdown-item.active .mobile-submenu{
        display:block;
    }

    /* Overlay */
    .nav-overlay{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.5);
        opacity:0;
        visibility:hidden;
        transition:.3s;
        z-index:9998;
    }

    .nav-overlay.open{
        opacity:1;
        visibility:visible;
    }

    /* Hero */
    .hero-section{
        margin-top:70px;
    }

    .hero-banner{
        height:330px;
        object-fit:cover;
    }

    .hero-content{
        padding:0 0px;
        text-align:left;
    }

    .hero-content h1{
        font-size:22px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:15px;
    }

}

/* ==========================================
   DESKTOP
========================================== */

@media(min-width:992px){

    .mobile-nav,
    .nav-overlay,
    .hamburger{
        display:none !important;
    }

}

.site-header{
    position:absolute;
    top:45px;
    left:0;
    width:100%;
    z-index:999;
     background:rgb(255 242 242 / 20%);
}

.site-header::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(30,45,50,.45);
    backdrop-filter:blur(12px);
    z-index:-1;
}

.container-x{
    max-width:1400px;
    width:100%;
    margin:auto;
    padding:0 30px;
}

/* Main Header */
.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 0;
    height:88px;
}

/* Logo */
.brand{
    flex:0 0 auto;
}

.brand-logo{
    width:230px;
    height:72px;
    object-fit:contain;
    background:#fff;
    border-radius:12px;
    padding:8px 15px;
    display:block;
}

/* Center Menu */
.desktop-nav-menu{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:38px;
    margin:0;
    padding:0;
    list-style:none;
}

.nav-menu li{
    position:relative;
}

.nav-menu a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.nav-menu a:hover,
.nav-menu a.active{
    color:#ffb84d;
}

/* Right Buttons */
.nav-actions{
    display:flex;
    align-items:center;
    gap:15px;
    flex:0 0 auto;
}

.btn-x{
    white-space:nowrap;
}

.hamburger{
    display:none;
}

/* Dropdown */
.dropdown-menu{
    border:none;
    border-radius:12px;
    overflow:hidden;
    margin-top:20px;
}

.dropdown-item{
    padding:12px 18px;
}

/* Mobile */
@media(max-width:991px){

    .topbar{
        display:none;
    }

    .site-header{
        top:0;
    }

    .nav-inner{
        height:80px;
    }

    .brand-logo{
        width:180px;
        height:60px;
    }

    .desktop-nav-menu{
        display:none;
    }

    .btn-ghost,
    .nav-actions .btn-x{
        display:none;
    }

    .hamburger{
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:5px;
        width:42px;
        height:42px;
        background:none;
        border:none;
        cursor:pointer;
    }

    .hamburger span{
        width:28px;
        height:3px;
        background:#000000;
        border-radius:3px;
        display:block;
    }

    .nav-actions{
        margin-left:auto;
    }
}

.doctor-image{
    text-align:center;
}

.doctor-image img{
    width:100%;
    max-width:400px;
    height:480px;
    object-fit:cover;
    border-radius:20px;
}

@media (max-width:991px){
    .doctor-image img{
        max-width:320px;
        height:380px;
        margin-bottom:25px;
    }
}

@media (max-width:576px){
    .doctor-image img{
        max-width:280px;
        height:330px;
    }
}

.doctor-profile .doctor-image{
    text-align:center;
}

.doctor-profile .doctor-image img{
    width:100%;
    max-width:380px;   /* Image width */
    height:450px;      /* Height குறைச்சது */
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

@media (max-width:991px){
    .doctor-profile .doctor-image{
        margin-bottom:30px;
    }

    .doctor-profile .doctor-image img{
        max-width:320px;
        height:380px;
    }
}

@media (max-width:576px){
    .doctor-profile .doctor-image img{
        max-width:280px;
        height:330px;
    }
}

.hero-tag{
        color: #fcb34c;
}

.awards-section{
    background:#f8fbfc;
}

.sub-title{
    color:#1ecef1;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.award-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:5px solid #17847b;
    height:100%;
}

.award-card h4{
    margin-bottom:25px;
    color:#1ecef1;
    font-weight:700;
}

.award-item{
    padding-bottom:18px;
    margin-bottom:18px;
    border-bottom:1px solid #ececec;
}

.award-item:last-child{
    border-bottom:none;
    margin-bottom:0;
}

.award-item h6{
    font-weight:700;
    color:#222;
    margin-bottom:6px;
}

.award-item p{
    margin:0;
    color:#666;
    font-size:15px;
    line-height:1.7;
}

.award-card:hover{
    transform:translateY(-8px);
    transition:.3s;
}

/* =========================================
   CLINIC LOCATION SECTION
========================================= */

.clinic-contact-section {
    background: #f7fbfb;
    padding: 90px 0;
}

.location-eyebrow {
    display: inline-block;
    color: #17847b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.location-title {
    color: #17353e;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.location-desc {
    max-width: 680px;
    margin: 0 auto;
    color: #68777b;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   MAP BOX
========================================= */

.clinic-map-box {
    position: relative;
    width: 100%;
    height: 570px;
    border-radius: 28px;
    overflow: hidden;
    background: #e9eeee;
    box-shadow: 0 20px 60px rgba(0, 50, 55, .12);
}

.clinic-map {
    position: absolute;
    inset: 0;
}

.clinic-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* =========================================
   FLOATING CLINIC CARD
========================================= */

.clinic-info-card {
    position: absolute;
    top: 13px;
    left: 926px;

    width: 390px;
    max-width: calc(100% - 70px);

    background: rgba(255, 255, 255, .97);
    padding: 32px;

    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .18);

    backdrop-filter: blur(12px);
}


/* Icon */

.clinic-card-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e5f6f4;
    color: #17847b;

    border-radius: 14px;

    font-size: 21px;

    margin-bottom: 18px;
}


/* Label */

.clinic-card-label {
    display: block;

    color: #17847b;
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 7px;
}


/* Heading */

.clinic-info-card h3 {
    color: #17353e;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;

    margin-bottom: 12px;
}


/* Address */

.clinic-info-card > p {
    color: #69777b;
    font-size: 14px;
    line-height: 1.7;

    margin-bottom: 22px;
}


/* =========================================
   DETAILS
========================================= */

.clinic-details {
    border-top: 1px solid #e8eeee;
    padding-top: 18px;
}

.clinic-detail {
    display: flex;
    gap: 13px;
    margin-bottom: 17px;
}

.clinic-detail:last-child {
    margin-bottom: 0;
}

.clinic-detail > i {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf8f7;
    color: #17847b;

    border-radius: 10px;

    font-size: 15px;
}

.clinic-detail strong {
    display: block;

    color: #253c42;
    font-size: 13px;

    margin-bottom: 3px;
}

.clinic-detail span,
.clinic-detail a {
    display: block;

    color: #737f82;

    font-size: 12px;
    line-height: 1.6;

    text-decoration: none;
}

.clinic-detail a:hover {
    color: #17847b;
}


/* =========================================
   BUTTONS
========================================= */

.clinic-card-buttons {
    display: flex;
    gap: 10px;

    margin-top: 23px;
}

.clinic-btn {
    min-height: 45px;

    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: .3s ease;
}

.clinic-btn-primary {
    background: #17847b;
    color: #fff;
}

.clinic-btn-primary:hover {
    background: #106b64;
    color: #fff;

    transform: translateY(-2px);
}

.clinic-btn-outline {
    background: #fff;

    color: #17847b;

    border: 1px solid #17847b;
}

.clinic-btn-outline:hover {
    background: #17847b;
    color: #fff;

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .clinic-contact-section {
        padding: 70px 0;
    }

    .location-title {
        font-size: 34px;
    }

    .clinic-map-box {
        height: 600px;
    }

    .clinic-info-card {
        width: 360px;
        top: 25px;
        left: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .clinic-contact-section {
        padding: 55px 0;
    }

    .location-title {
        font-size: 28px;
    }

    .location-desc {
        font-size: 14px;
    }

    .clinic-map-box {
        height: 650px;
        border-radius: 20px;
    }

    .clinic-info-card {
        top: 15px;
        left: 15px;

        width: calc(100% - 30px);
        max-width: none;

        padding: 23px;
        display: none;

        border-radius: 18px;
    }

    .clinic-info-card h3 {
        font-size: 21px;
    }

    .clinic-card-buttons {
        flex-direction: column;
    }

    .clinic-btn {
        width: 100%;
    }

}

.topbar {
    width: 100%;
    background: rgb(23 53 62 / 20%);
    color: #fff;
    min-height: 46px;
    display: flex;
    align-items: center;
}

.topbar-inner {
    width: 100%;
}

.topbar-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
}

.top-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.top-left span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    font-size: 14px;
}

.top-left i {
    font-size: 13px;
}

.top-left a {
    color: #fff;
    text-decoration: none;
}

.top-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.top-right a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s ease;
}

.top-right a:hover {
    color: #f5a623;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .topbar {
        min-height: auto;
        padding: 9px 0;
    }

    .topbar-content {
        gap: 20px;
    }

    .top-left {
        gap: 15px;
    }

    .top-left span {
        font-size: 12px;
    }

    .top-right {
        gap: 13px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .topbar {
        padding: 8px 0;
        display: none;
    }

    .topbar-content {
        flex-direction: column;
        gap: 8px;
    }

    .top-left {
        width: 100%;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .top-left span {
        white-space: normal;
        justify-content: center;
        font-size: 11px;
    }

    .top-right {
        gap: 16px;
    }

    .top-right a {
        font-size: 13px;
    }

}


/* Small Mobile */

@media (max-width: 480px) {

    .topbar-content {
        gap: 7px;
    }

    .top-left span {
        font-size: 10.5px;
    }

    .top-right {
        gap: 14px;
    }

}

    .treatmentsSwiper {
        width: 100%;
        padding: 10px 5px 55px;
        overflow: hidden;
    }

    .treatmentsSwiper .swiper-slide {
        height: auto;
        display: flex;
    }

    .treatmentsSwiper .card-media {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .treatmentsSwiper .body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .treatmentsSwiper .thumb {
        height: 230px;
        overflow: hidden;
    }

    .treatmentsSwiper .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

    .treatmentsSwiper .card-media:hover .thumb img {
        transform: scale(1.05);
    }

    .treatmentsSwiper .body h3 {
        font-size: 1.08rem;
        line-height: 1.4;
    }

    .treatmentsSwiper .body p {
        font-size: .92rem;
    }

    .treatmentsSwiper .swiper-button-next,
    .treatmentsSwiper .swiper-button-prev {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #0e9c9a;
        color: #fff;
        top: auto;
        bottom: 0;
        margin: 0;
    }

    .treatmentsSwiper .swiper-button-prev {
        left: calc(50% - 55px);
    }

    .treatmentsSwiper .swiper-button-next {
        right: calc(50% - 55px);
    }

    .treatmentsSwiper .swiper-button-next::after,
    .treatmentsSwiper .swiper-button-prev::after {
        font-size: 16px;
        font-weight: 700;
    }

    .treatmentsSwiper .swiper-pagination {
        bottom: 12px;
    }

    .treatmentsSwiper .swiper-pagination-bullet-active {
        background: #0e9c9a;
    }


    /* Tablet */
    @media (max-width: 991px) {

        .treatmentsSwiper .thumb {
            height: 220px;
        }

    }


    /* Mobile */
    @media (max-width: 767px) {

        .treatmentsSwiper {
            padding-left: 0;
            padding-right: 0;
        }

        .treatmentsSwiper .thumb {
            height: 210px;
        }

        .treatmentsSwiper .body h3 {
            font-size: 1rem;
        }

        .treatmentsSwiper .body p {
            font-size: .9rem;
        }

    }


    /* =========================================
   PAGE BANNER
========================================= */

.page-banner {
    background-image: url("../images/about-banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    position: relative;
}

/* Dark Overlay */

.page-banner-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.50);

    z-index: 1;
}

/* Banner Content */

.page-banner-content {
    position: relative;
    z-index: 2;

    padding: 80px 0;

    max-width: 850px;
}

/* Breadcrumb */

.breadcrumb-x {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 500;

    color: #fff;
}

.breadcrumb-x a {
    color: #fff;
    text-decoration: none;

    transition: .3s ease;
}

.breadcrumb-x a:hover {
    color: #f5a623;
}

.breadcrumb-x span {
    color: rgba(255,255,255,.75);
}

/* Heading */

.page-banner h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 700;

    line-height: 1.15;
}

/* Description */

.page-banner p {
    margin-top: 18px;
    margin-bottom: 0;

    max-width: 700px;

    color: rgba(255,255,255,.9);

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .page-banner {
        min-height: 340px;
    }

    .page-banner-content {
        padding: 65px 0;
    }

    .page-banner h1 {
        font-size: 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .page-banner {
        min-height: 300px;

        background-position: center;
    }

    .page-banner-content {
        padding: 55px 15px;
    }

    .breadcrumb-x {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .page-banner h1 {
        font-size: 30px;
    }

    .page-banner p {
        font-size: 15px;
        line-height: 1.6;
    }

}

/* =====================================================
   DOCTORS SECTION
===================================================== */

.doctors-section {
    overflow: hidden;
}

.doctor-about-card {
    background: #ffffff;
    border: 1px solid rgba(23, 53, 62, 0.08);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.doctor-about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(23, 53, 62, 0.12);
}


/* Image */

.doctor-about-image {
    width: 100%;
    height: 330px;
    background: #eef8f8;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.doctor-about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.5s ease;
}

.doctor-about-card:hover .doctor-about-image img {
    transform: scale(1.03);
}


/* Content */

.doctor-about-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.doctor-speciality {
    display: inline-flex;
    align-items: center;
    width: fit-content;

    padding: 7px 14px;
    margin-bottom: 12px;

    border-radius: 50px;

    background: rgba(14, 156, 154, 0.09);
    color: #0E9C9A;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.doctor-about-content h3 {
    margin-bottom: 7px;
    color: #17353E;
    font-size: 1.65rem;
    font-weight: 700;
}

.doctor-about-content h6 {
    color: #66777d;
    font-size: 0.88rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 18px;
}

.doctor-about-content p {
    color: #64757b;
    font-size: 0.94rem;
    line-height: 1.75;
    margin-bottom: 12px;
}


/* Tags */

.doctor-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.doctor-about-tags span {
    padding: 7px 11px;

    background: #f5fafa;
    border: 1px solid rgba(14, 156, 154, 0.12);

    border-radius: 30px;

    color: #006D6F;
    font-size: 12px;
    font-weight: 600;
}


/* Button */

.doctor-about-content .btn-x {
    align-self: flex-start;
}


/* Mobile */

@media (max-width: 767px) {

    .doctor-about-image {
        height: 132px;
    }

    .doctor-about-content {
        padding: 24px;
    }

    .doctor-about-content h3 {
        font-size: 1.4rem;
    }

}

/* =========================================================
   ROBOTIC JOINT REPLACEMENT
   MODERN TREATMENT DETAIL LAYOUT
========================================================= */

:root {
    --primary: #0e9c9a;
    --primary-dark: #006d6f;
    --accent: #f5a623;
    --dark: #17353e;
    --soft: #f5faf9;
    --border: #dfecec;
    --text: #5f7074;
    --white: #ffffff;
}


/* =========================================================
   BANNER
========================================================= */

.treatment-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(4, 35, 43, .96),
            rgba(4, 35, 43, .72),
            rgba(4, 35, 43, .25)
        ),
        url("../images/robotic-replacement-banner.webp")
        center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.treatment-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(14,156,154,.25),
            transparent 60%
        );
}

.hero-breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
    font-size: .9rem;
}

.hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.hero-label {
    display: inline-block;
    color: var(--accent);
    letter-spacing: 3px;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.treatment-hero h2 {
    max-width: 800px;
    font-size: clamp(2.8rem, 5vw, 60px);
    line-height: 1.02;
    margin: 0;
}

.treatment-hero h2 span {
    display: block;
    color: var(--accent);
}


/* =========================================================
   MAIN TREATMENT LAYOUT
========================================================= */

.robotic-treatment-layout {
    padding: 90px 0;
    background: #fff;
}

.robotic-layout-grid {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 55px;
    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.treatment-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(23,53,62,.07);
    margin-bottom: 22px;
}

.sidebar-title {
    background: var(--dark);
    color: #fff;
    padding: 22px 24px;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.treatment-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.treatment-menu li {
    margin: 0;
}

.treatment-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 22px;
    color: var(--dark);
    text-decoration: none;
    font-size: .91rem;
    border-left: 3px solid transparent;
    transition: .3s ease;
}

.treatment-menu li a i {
    color: #9aabad;
    font-size: .8rem;
    transition: .3s ease;
}

.treatment-menu li a:hover,
.treatment-menu li.active a {
    background: rgba(14,156,154,.07);
    color: var(--primary);
    border-left-color: var(--primary);
}

.treatment-menu li a:hover i,
.treatment-menu li.active a i {
    color: var(--primary);
}


/* =========================================================
   SIDEBAR APPOINTMENT CARD
========================================================= */

.sidebar-appointment {
    position: relative;
    overflow: hidden;
    padding: 30px 24px;
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            var(--primary-dark),
            var(--primary)
        );
    color: #fff;
}

.sidebar-appointment::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.sidebar-appointment i {
    font-size: 32px;
    color: var(--accent);
}

.sidebar-appointment h4 {
    margin: 18px 0 10px;
    font-size: 1.25rem;
}

.sidebar-appointment p {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    line-height: 1.7;
}

.sidebar-appointment .btn-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
    padding: 13px 18px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.sidebar-appointment .btn-sidebar:hover {
    background: #fff;
    color: var(--dark);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.robotic-content {
    min-width: 0;
}

.content-image {
    margin-bottom: 45px;
}

.content-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.eyebrow {
    display: inline-block;
    color: #ffffff;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.robotic-content h2 {
    color: var(--dark);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.15;
    margin: 12px 0 22px;
}

.robotic-content h2 span {
    display: block;
    color: var(--primary);
}

.robotic-content p {
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 18px;
}

.intro-text {
    font-size: 1.06rem;
}


/* =========================================================
   FEATURE ROW
========================================================= */

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.feature-item {
    padding: 22px;
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 17px;
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(14,156,154,.1);
    color: var(--primary);
    font-size: 20px;
}

.feature-item h5 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 7px;
}

.feature-item p {
    margin: 0;
    font-size: .84rem;
    line-height: 1.65;
}


/* =========================================================
   SECTION HEAD
========================================================= */

.section-head {
    margin-bottom: 40px;
}

.section-head h2 {
    color: var(--dark);
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 12px 0;
}

.section-head h2 span {
    color: var(--primary);
}

.section-head p {
    max-width: 700px;
    color: var(--text);
    line-height: 1.8;
}

.section-head.center {
    text-align: center;
}

.section-head.center p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   SYMPTOMS
========================================================= */

.robotic-symptoms {
    padding: 80px 0;
    background: var(--soft);
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.symptom-card {
    position: relative;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: .3s ease;
}

.symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(23,53,62,.08);
}

.symptom-card > span {
    position: absolute;
    right: 22px;
    top: 18px;
    color: #c7d4d5;
    font-weight: 800;
}

.symptom-card i {
    font-size: 28px;
    color: var(--primary);
}

.symptom-card h4 {
    color: var(--dark);
    margin: 18px 0 8px;
}

.symptom-card p {
    color: var(--text);
    font-size: .9rem;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   DIAGNOSIS / TREATMENT
========================================================= */

.diagnosis-section {
    padding: 80px 0;
}

.diagnosis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.content-box {
    height: 100%;
    padding: 38px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
}

.content-box.dark-box {
    background: var(--dark);
    border-color: var(--dark);
}

.number-title {
    display: block;
    margin-bottom: 12px;
    color: rgba(14,156,154,.35);
    font-size: 2.4rem;
    font-weight: 800;
}

.dark-box .number-title {
    color: rgba(255,255,255,.2);
}

.content-box h3 {
    color: var(--dark);
    font-size: 1.7rem;
    margin: 10px 0 15px;
}

.dark-box h3 {
    color: #fff;
}

.modern-check {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.modern-check li {
    position: relative;
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid #edf2f2;
    color: var(--text);
    font-size: .92rem;
}

.modern-check li::before {
    content: "\f26a";
    font-family: bootstrap-icons;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.dark-box p,
.dark-box .modern-check li {
    color: rgba(255,255,255,.7);
}

.dark-box .modern-check li {
    border-color: rgba(255,255,255,.1);
}

.dark-box .modern-check li::before {
    color: var(--accent);
}


/* =========================================================
   ADVANTAGES
========================================================= */

.advantages-section {
    padding: 80px 0;
    background: var(--soft);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.advantage-card {
    position: relative;
    overflow: hidden;
    padding: 30px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: .3s;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(23,53,62,.08);
}

.advantage-number {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2.7rem;
    font-weight: 800;
    color: rgba(14,156,154,.07);
}

.advantage-card i {
    font-size: 30px;
    color: var(--primary);
}

.advantage-card h4 {
    color: var(--dark);
    margin: 20px 0 10px;
}

.advantage-card p {
    color: var(--text);
    font-size: .88rem;
    line-height: 1.7;
}


/* =========================================================
   PROCEDURE
========================================================= */

.robotic-process {
    padding: 85px 0;
}

.process-wrapper {
    max-width: 850px;
    margin: 55px auto 0;
    position: relative;
}

.process-line {
    position: absolute;
    left: 31px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #d8e8e8;
}

.process-item {
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.process-count {
    position: relative;
    z-index: 2;
    min-width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    box-shadow: 0 0 0 8px #fff;
}

.process-content {
    flex: 1;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 17px;
}

.process-content > span {
    color: var(--accent);
    font-size: .68rem;
    letter-spacing: 2px;
    font-weight: 800;
}

.process-content h3 {
    color: var(--dark);
    margin: 7px 0;
    font-size: 1.2rem;
}

.process-content p {
    color: var(--text);
    margin: 0;
    font-size: .9rem;
    line-height: 1.7;
}


/* =========================================================
   RECOVERY
========================================================= */

.recovery-section {
    padding: 80px 0;
    background: var(--soft);
}

.recovery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.recovery-card {
    padding: 25px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.recovery-card span {
    color: var(--accent);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.recovery-card i {
    display: block;
    margin: 18px 0 14px;
    color: var(--primary);
    font-size: 27px;
}

.recovery-card h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 8px;
}

.recovery-card p {
    color: var(--text);
    font-size: .84rem;
    line-height: 1.65;
    margin: 0;
}


/* =========================================================
   AFTERCARE
========================================================= */

.aftercare-section {
    padding: 80px 0;
}

.aftercare-box {
    padding: 45px;
    background: var(--dark);
    border-radius: 25px;
    color: #fff;
}

.aftercare-heading {
    max-width: 650px;
    margin-bottom: 35px;
}

.aftercare-heading h2 {
    color: #fff;
    font-size: 2.5rem;
    margin: 10px 0;
}

.aftercare-heading h2 span {
    display: block;
    color: var(--primary);
}

.aftercare-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.aftercare-list > div {
    padding: 22px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 15px;
}

.aftercare-list i {
    color: var(--accent);
    font-size: 25px;
}

.aftercare-list p {
    color: rgba(255,255,255,.72);
    margin: 14px 0 0;
    font-size: .86rem;
    line-height: 1.65;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 80px 0;
    background: var(--soft);
}

.robotic-faq {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    background: transparent;
    border: 0;
    color: var(--dark);
    text-align: left;
    font-weight: 600;
}

.faq-item button i {
    color: var(--primary);
    font-size: 20px;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text);
    line-height: 1.75;
    transition: .35s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active button i {
    transform: rotate(45deg);
}


/* =========================================================
   CTA
========================================================= */

.robotic-cta {
    padding: 70px 0 90px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px;
    border-radius: 28px;
    background:
        linear-gradient(
            120deg,
            var(--primary-dark),
            var(--primary)
        );
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin: 12px 0;
}

.cta-inner h2 span {
    display: block;
    color: var(--accent);
}

.cta-inner p {
    max-width: 650px;
    color: rgba(255,255,255,.75);
    margin: 0;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-gold {
    background: var(--accent);
    color: #fff;
}

.btn-gold:hover {
    background: #fff;
    color: var(--dark);
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,.6);
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--dark);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .robotic-layout-grid {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 35px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recovery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .aftercare-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 991px) {

    .robotic-treatment-layout {
        padding: 60px 0;
    }

    .robotic-layout-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .treatment-sidebar {
        position: relative;
        top: auto;
        order: 1;
    }

    .robotic-content {
        order: 2;
    }

    .treatment-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .treatment-menu li a {
        border-bottom: 1px solid var(--border);
    }

    .content-image img {
        height: 430px;
    }

    .symptom-grid,
    .diagnosis-grid {
        grid-template-columns: 1fr;
    }

    .recovery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 767px) {

    .treatment-hero {
        min-height: 500px;
    }

    .treatment-hero h2 {
        font-size: 2.6rem;
    }

    .robotic-treatment-layout,
    .robotic-symptoms,
    .diagnosis-section,
    .advantages-section,
    .robotic-process,
    .recovery-section,
    .aftercare-section,
    .faq-section {
        padding: 55px 0;
    }

    .treatment-menu {
        grid-template-columns: 1fr;
    }

    .content-image {
        margin-bottom: 30px;
    }

    .content-image img {
        height: 350px;
        border-radius: 18px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .advantage-grid,
    .recovery-grid,
    .aftercare-list {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 28px 22px;
    }

    .aftercare-box {
        padding: 30px 22px;
    }

    .aftercare-heading h2 {
        font-size: 2rem;
    }

    .process-item {
        gap: 15px;
    }

    .process-count {
        min-width: 52px;
        height: 52px;
        font-size: .7rem;
    }

    .process-line {
        left: 25px;
    }

    .process-content {
        padding: 20px;
    }

    .cta-inner {
        padding: 32px 22px;
        border-radius: 20px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn-x {
        width: 100%;
    }
}

/* =====================================================
   ROBOTIC TREATMENT DETAIL
===================================================== */

.treatment-detail-section {
    background: #fff;
}

.treatment-sidebar {
    position: sticky;
    top: 110px;
}

/* SIDEBAR */

.sidebar-box {
    background: #f7fbfb;
    border: 1px solid #e5eeee;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #00a6a6;
    margin-bottom: 7px;
}

.sidebar-box h4 {
    font-size: 20px;
    color: #17353e;
    margin-bottom: 18px;
}

.treatment-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.treatment-menu li {
    margin-bottom: 5px;
}

.treatment-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 13px;
    border-radius: 10px;
    color: #50666b;
    text-decoration: none;
    font-size: 14px;
    transition: .3s ease;
}

.treatment-menu li a i {
    font-size: 13px;
    opacity: 0;
    transform: translateX(-5px);
    transition: .3s ease;
}

.treatment-menu li a:hover,
.treatment-menu li.active a {
    background: #006d6f;
    color: #fff;
}

.treatment-menu li a:hover i,
.treatment-menu li.active a i {
    opacity: 1;
    transform: translateX(0);
}


/* APPOINTMENT SIDEBAR */

.sidebar-appointment {
    background: #006d6f;
    color: #fff;
    border-radius: 22px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}

.sidebar-appointment::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    right: -60px;
    bottom: -60px;
}

.appointment-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f5a623;
    color: #17353e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 20px;
}

.sidebar-appointment > span {
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
    opacity: .75;
}

.sidebar-appointment h4 {
    font-size: 20px;
    line-height: 1.35;
    margin: 8px 0 12px;
}

.sidebar-appointment p {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5a623;
    color: #17353e;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-btn:hover {
    color: #17353e;
    background: #fff;
}

.sidebar-call {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}


/* MAIN CONTENT */

.treatment-main-content {
    min-width: 0;
}

.treatment-main-image {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 45px;
}

.treatment-main-image img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}


/* CONTENT */

.content-block {
    margin-bottom: 55px;
}

.content-eyebrow {
    display: block;
    color: #009c9c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 10px;
}

.content-block h2,
.content-block h3 {
    color: #17353e;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-block h2 {
    font-size: clamp(28px, 3vw, 42px);
}

.content-block h3 {
    font-size: 30px;
}

.content-block h2 span,
.content-block h3 span {
    color: #009c9c;
}

.content-block p {
    color: #637579;
    line-height: 1.85;
    font-size: 15px;
}

.content-block .large-text {
    font-size: 18px;
    line-height: 1.8;
    color: #40565b;
}


/* HIGHLIGHTS */

.treatment-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f6fbfb;
    border: 1px solid #e4eeee;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 55px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 20px;
    border-right: 1px solid #dfe9e9;
}

.highlight-item:last-child {
    border-right: 0;
}

.highlight-item i {
    color: #009c9c;
    font-size: 25px;
}

.highlight-item strong,
.highlight-item span {
    display: block;
}

.highlight-item strong {
    color: #17353e;
    font-size: 14px;
}

.highlight-item span {
    color: #78898c;
    font-size: 11px;
    margin-top: 3px;
}


/* TWO COLUMN LIST */

.two-column-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 25px;
    margin-top: 25px;
}

.two-column-list div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #53686d;
    font-size: 14px;
}

.two-column-list i {
    color: #009c9c;
    margin-top: 2px;
}


/* IMAGE CONTENT */

.content-image-section {
    margin-bottom: 60px;
}

.inner-image {
    border-radius: 20px;
    overflow: hidden;
}

.inner-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}


/* TECHNOLOGY */

.dark-treatment-box {
    background: #17353e;
    color: #fff;
    padding: 45px;
    border-radius: 25px;
    margin-bottom: 60px;
}

.dark-treatment-heading {
    max-width: 650px;
    margin-bottom: 35px;
}

.dark-treatment-heading h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.3;
}

.dark-treatment-heading h3 span {
    color: #00b7b5;
}

.dark-treatment-heading p {
    color: rgba(255,255,255,.68);
    line-height: 1.8;
}

.content-eyebrow.light {
    color: #f5a623;
}

.technology-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.technology-item {
    display: flex;
    gap: 20px;
    padding: 25px 20px 25px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.technology-item > span {
    color: #f5a623;
    font-weight: 700;
    font-size: 13px;
}

.technology-item h5 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 16px;
}

.technology-item p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.7;
}


/* JOURNEY */

.journey-list {
    border-left: 1px solid #dbe8e8;
    margin-top: 30px;
}

.journey-item {
    display: flex;
    gap: 22px;
    position: relative;
    padding: 0 0 30px 28px;
}

.journey-item:last-child {
    padding-bottom: 0;
}

.journey-number {
    position: absolute;
    left: -18px;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #009c9c;
    color: #009c9c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.journey-item h5 {
    color: #17353e;
    margin-bottom: 7px;
    font-size: 17px;
}

.journey-item p {
    margin: 0;
    font-size: 14px;
}


/* RECOVERY */

.recovery-content-box {
    background: #f7fbfb;
    border: 1px solid #e1eeee;
    border-radius: 22px;
    padding: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.recovery-content-box h3 {
    color: #17353e;
    font-size: 28px;
    line-height: 1.3;
}

.recovery-content-box h3 span {
    color: #009c9c;
}

.recovery-content-box p {
    color: #637579;
    line-height: 1.8;
}

.recovery-content-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recovery-content-box li {
    padding: 10px 0;
    border-bottom: 1px solid #e1eeee;
    color: #52666b;
    font-size: 14px;
}

.recovery-content-box li i {
    color: #009c9c;
    margin-right: 8px;
}


/* FAQ */

.faq-content {
    margin-bottom: 60px;
}

.custom-faq {
    margin-top: 25px;
    border-top: 1px solid #dce8e8;
}

.faq-row {
    border-bottom: 1px solid #dce8e8;
}

.faq-row button {
    width: 100%;
    background: none;
    border: 0;
    padding: 20px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #17353e;
    font-size: 15px;
    font-weight: 600;
}

.faq-row button i {
    color: #009c9c;
    font-size: 20px;
    transition: .3s;
}

.faq-row-answer {
    display: none;
    color: #697b7f;
    font-size: 14px;
    line-height: 1.8;
    padding: 0 30px 20px 5px;
}

.faq-row.open .faq-row-answer {
    display: block;
}

.faq-row.open button i {
    transform: rotate(45deg);
}


/* FINAL CTA */

.treatment-bottom-cta {
    background: #006d6f;
    color: #fff;
    border-radius: 24px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.treatment-bottom-cta > div:first-child {
    max-width: 600px;
}

.treatment-bottom-cta > div:first-child > span {
    color: #f5a623;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.treatment-bottom-cta h3 {
    font-size: 27px;
    line-height: 1.35;
    margin: 8px 0;
}

.treatment-bottom-cta h3 strong {
    color: #f5a623;
}

.treatment-bottom-cta p {
    color: rgba(255,255,255,.72);
    font-size: 13px;
    margin: 0;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.cta-actions .btn-x {
    white-space: nowrap;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .treatment-sidebar {
        position: static;
    }

    .treatment-highlight {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        border-right: 0;
        border-bottom: 1px solid #dfe9e9;
        padding: 15px 5px;
    }

    .highlight-item:last-child {
        border-bottom: 0;
    }

    .technology-list {
        grid-template-columns: 1fr;
    }

    .recovery-content-box {
        grid-template-columns: 1fr;
    }

    .treatment-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .treatment-detail-section {
        padding-top: 35px !important;
    }

    .treatment-main-image {
        border-radius: 16px;
        margin-bottom: 30px;
    }

    .treatment-main-image img {
        aspect-ratio: 4 / 3;
    }

    .content-block {
        margin-bottom: 40px;
    }

    .content-block h2 {
        font-size: 29px;
    }

    .content-block h3 {
        font-size: 25px;
    }

    .two-column-list {
        grid-template-columns: 1fr;
    }

    .dark-treatment-box {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .recovery-content-box {
        padding: 25px 20px;
        gap: 20px;
    }

    .treatment-bottom-cta {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .treatment-bottom-cta h3 {
        font-size: 23px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn-x {
        width: 100%;
        justify-content: center;
    }

}

/* =====================================================
   TREATMENT SIDEBAR
===================================================== */

.treatment-sidebar {
    position: sticky;
    top: 110px;
}


/* TREATMENT MENU */

.sidebar-card {
    background: #fff;
    border: 1px solid #e1eeee;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 12px 35px rgba(23, 53, 62, .06);
}

.sidebar-title {
    background: #17353e;
    color: #fff;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 700;
}

.sidebar-title i {
    color: #f5a623;
    font-size: 20px;
}

.sidebar-treatment-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.sidebar-treatment-list li {
    border-bottom: 1px solid #edf3f3;
}

.sidebar-treatment-list li:last-child {
    border-bottom: 0;
}

.sidebar-treatment-list a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    color: #17353e;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 500;
    transition: .3s ease;
}

.sidebar-treatment-list a i {
    color: #9aabab;
    font-size: 15px;
    transition: .3s ease;
}

.sidebar-treatment-list a:hover {
    color: #0e9c9a;
    background: #f5faf9;
    padding-left: 25px;
}

.sidebar-treatment-list a:hover i {
    color: #0e9c9a;
    transform: translateX(4px);
}


/* ACTIVE TREATMENT */

.sidebar-treatment-list li.active a {
    background: rgba(14, 156, 154, .08);
    color: #0e9c9a;
    font-weight: 700;
    border-left: 4px solid #0e9c9a;
    padding-left: 16px;
}

.sidebar-treatment-list li.active a i {
    color: #f5a623;
}


/* =====================================================
   APPOINTMENT CARD
===================================================== */

.sidebar-appointment {
    position: relative;
    overflow: hidden;
    padding: 30px 25px;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        #006d6f,
        #0e9c9a
    );
    color: #fff;
    box-shadow: 0 15px 40px rgba(14, 156, 154, .18);
}

.sidebar-appointment::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.sidebar-appointment::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: -50px;
    bottom: -50px;
    border-radius: 50%;
    background: rgba(245,166,35,.12);
}

.appointment-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: rgba(255,255,255,.13);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.appointment-icon i {
    font-size: 23px;
    color: #f5a623;
}

.sidebar-appointment > span {
    position: relative;
    z-index: 1;
    display: block;
    color: #f5a623;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.sidebar-appointment h3 {
    position: relative;
    z-index: 1;
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 15px;
}

.sidebar-appointment h3 strong {
    display: block;
    color: #fff;
}

.sidebar-appointment p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,.78);
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.sidebar-btn {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f5a623;
    color: #17353e;
    text-decoration: none;
    padding: 13px 17px;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 700;
    transition: .3s ease;
}

.sidebar-btn:hover {
    background: #fff;
    color: #17353e;
}

.sidebar-btn i {
    font-size: 17px;
}

.sidebar-call {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 18px;
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
}

.sidebar-call i {
    color: #f5a623;
    margin-right: 7px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .treatment-sidebar {
        position: static;
        margin-top: 40px;
    }

}

@media (max-width: 575px) {

    .sidebar-appointment {
        padding: 25px 20px;
    }

}

/* =====================================================
   CLINIC FACILITIES PAGE
===================================================== */

.clinic-facility-hero {
    min-height: 470px;
    background:
        linear-gradient(
            90deg,
            rgba(4,35,43,.96),
            rgba(4,35,43,.72),
            rgba(4,35,43,.25)
        ),
        url("../images/clinic-facilities-banner.webp")
        center/cover no-repeat;
}


/* =====================================================
   MAIN FACILITY CONTENT
===================================================== */

.facility-content {
    width: 100%;
}

.facility-main-image {
    width: 100%;
    overflow: hidden;
    border-radius: 26px;
    margin-bottom: 40px;
}

.facility-main-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

.facility-main-image:hover img {
    transform: scale(1.03);
}


/* =====================================================
   INTRO
===================================================== */

.facility-intro {
    margin-bottom: 45px;
}

.facility-intro h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    margin: 12px 0 22px;
    color: #17353e;
}

.facility-intro h2 span {
    display: block;
    color: #0e9c9a;
}

.facility-intro p {
    color: #666;
    line-height: 1.8;
}

.facility-intro .intro-text {
    font-size: 1.08rem;
}


/* =====================================================
   FACILITY GRID
===================================================== */

.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 45px;
}

.facility-card {
    display: flex;
    gap: 18px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e2eeee;
    border-radius: 20px;
    transition: .3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14,156,154,.35);
    box-shadow: 0 15px 40px rgba(0,0,0,.07);
}

.facility-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: rgba(14,156,154,.10);
    color: #0e9c9a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.facility-card h4 {
    color: #17353e;
    font-size: 1.05rem;
    margin: 2px 0 8px;
}

.facility-card p {
    color: #777;
    font-size: .9rem;
    line-height: 1.7;
    margin: 0;
}


/* =====================================================
   HIGHLIGHT BOX
===================================================== */

.facility-highlight {
    background: #f5faf9;
    border-radius: 25px;
    padding: 45px;
    margin-bottom: 45px;
    border: 1px solid #e1eeee;
}

.facility-highlight-content {
    max-width: 760px;
}

.facility-highlight h2 {
    font-size: 2.3rem;
    color: #17353e;
    line-height: 1.2;
    margin: 12px 0 18px;
}

.facility-highlight h2 span {
    display: block;
    color: #0e9c9a;
}

.facility-highlight p {
    color: #666;
    line-height: 1.8;
}


/* =====================================================
   COMFORT SECTION
===================================================== */

.facility-comfort {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
    margin-top: 10px;
}

.comfort-image {
    overflow: hidden;
    border-radius: 25px;
}

.comfort-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.comfort-content h2 {
    color: #17353e;
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 12px 0 20px;
}

.comfort-content h2 span {
    display: block;
    color: #0e9c9a;
}

.comfort-content p {
    color: #666;
    line-height: 1.8;
}

.comfort-content .btn-x {
    margin-top: 15px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .facility-grid {
        grid-template-columns: 1fr 1fr;
    }

    .facility-comfort {
        grid-template-columns: 1fr;
    }

    .comfort-image img {
        height: 420px;
    }

}


@media (max-width: 767px) {

    .clinic-facility-hero {
        min-height: 430px;
    }

    .facility-main-image img {
        height: 320px;
    }

    .facility-grid {
        grid-template-columns: 1fr;
    }

    .facility-card {
        padding: 23px 20px;
    }

    .facility-highlight {
        padding: 30px 22px;
    }

    .facility-highlight h2 {
        font-size: 1.9rem;
    }

    .comfort-image img {
        height: 300px;
    }

    .comfort-content h2 {
        font-size: 1.9rem;
    }

}

/* =====================================================
   VINOTH ORTHO - COMPREHENSIVE CARE
===================================================== */

.vinoth-care-section {
    padding: 100px 0;
    background: #F8FCFC;
    position: relative;
    overflow: hidden;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.vinoth-care-heading {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.vinoth-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 18px;

    background: rgba(14, 156, 154, 0.10);
    color: #0E9C9A;

    border-radius: 50px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.vinoth-care-heading h2 {
    margin: 0 auto 18px;

    max-width: 850px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 800;

    color: #17353E;
}

.vinoth-care-heading p {
    max-width: 760px;

    margin: 0 auto;

    font-family: "Inter", sans-serif;

    font-size: 16px;
    line-height: 1.8;

    color: #637C84;
}


/* =====================================================
   CARE GRID
===================================================== */

.vinoth-care-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

    max-width: 1250px;

    margin: 0 auto;
}


/* =====================================================
   CARE ITEM
===================================================== */

.vinoth-care-item {
    position: relative;

    min-height: 285px;

    padding: 32px 28px;

    background: #ffffff;

    border: 1px solid rgba(14, 156, 154, 0.13);

    border-radius: 18px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

    cursor: pointer;
}


/* Decorative background */

.vinoth-care-item::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -50px;
    top: -50px;

    background: rgba(14, 156, 154, 0.06);

    border-radius: 50%;

    transition: 0.4s ease;
}


/* Hover */

.vinoth-care-item:hover {
    transform: translateY(-8px);

    border-color: rgba(14, 156, 154, 0.35);

    box-shadow:
        0 20px 45px rgba(23, 53, 62, 0.10);
}

.vinoth-care-item:hover::before {
    transform: scale(1.5);

    background: rgba(14, 156, 154, 0.10);
}


/* =====================================================
   ICON
===================================================== */

.vinoth-care-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(14, 156, 154, 0.10);

    border-radius: 14px;

    margin-bottom: 28px;

    transition: 0.4s ease;
}

.vinoth-care-icon svg {
    width: 28px;
    height: 28px;

    fill: none;

    stroke: #0E9C9A;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition: 0.4s ease;
}

.vinoth-care-item:hover .vinoth-care-icon {
    background: #0E9C9A;

    transform: translateY(-3px);
}

.vinoth-care-item:hover .vinoth-care-icon svg {
    stroke: #ffffff;
}


/* =====================================================
   TEXT
===================================================== */

.vinoth-care-text {
    position: relative;
    z-index: 2;

    flex: 1;
}

.vinoth-care-text > span {
    display: block;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 14px;

    font-weight: 700;

    color: #F5A623;

    margin-bottom: 8px;
}

.vinoth-care-text h4 {
    margin: 0 0 12px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 20px;

    line-height: 1.35;

    font-weight: 700;

    color: #17353E;
}

.vinoth-care-text p {
    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: #71868D;
}


/* =====================================================
   ARROW
===================================================== */

.vinoth-care-arrow {
    position: relative;
    z-index: 2;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 22px;

    border: 1px solid rgba(14, 156, 154, 0.25);

    border-radius: 50%;

    transition: 0.4s ease;
}

.vinoth-care-arrow svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: #0E9C9A;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition: 0.4s ease;
}

.vinoth-care-item:hover .vinoth-care-arrow {
    background: #0E9C9A;

    border-color: #0E9C9A;

    transform: translateX(5px);
}

.vinoth-care-item:hover .vinoth-care-arrow svg {
    stroke: #ffffff;
}


/* =====================================================
   ACTIVE / CLICKED CARD
===================================================== */

.vinoth-care-item.active {
    border-color: #0E9C9A;

    box-shadow:
        0 0 0 3px rgba(14, 156, 154, 0.10),
        0 20px 45px rgba(14, 156, 154, 0.12);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .vinoth-care-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vinoth-care-heading h2 {
        font-size: 36px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .vinoth-care-section {
        padding: 70px 0;
    }

    .vinoth-care-heading {
        margin-bottom: 35px;
    }

    .vinoth-care-heading h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .vinoth-care-heading p {
        font-size: 15px;
    }

    .vinoth-care-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .vinoth-care-item {
        min-height: auto;

        padding: 25px 22px;
    }

    .vinoth-care-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 20px;
    }

    .vinoth-care-text h4 {
        font-size: 19px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .vinoth-care-section {
        padding: 55px 0;
    }

    .vinoth-care-heading h2 {
        font-size: 26px;
    }

    .vinoth-tag {
        font-size: 11px;

        padding: 7px 14px;
    }

}

/* =====================================================
   VINOTH ORTHO - FACILITIES SECTION
===================================================== */

.vinoth-facilities-section {
    padding: 90px 0 100px;
    background: #f7fbfb;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.vinoth-facilities-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.vinoth-section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;

    background: rgba(23, 170, 168, 0.10);
    color: #079b99;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.4px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.vinoth-facilities-heading h2 {
    margin: 0 0 20px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 800;

    color: #17263c;
}

.vinoth-facilities-heading p {
    max-width: 760px;

    margin: 0 auto;

    font-family: "Inter", sans-serif;

    font-size: 16px;
    line-height: 1.8;

    color: #657890;
}


/* =====================================================
   FACILITY LIST
===================================================== */

.vinoth-facilities-list {
    display: flex;
    flex-direction: column;

    gap: 32px;
}


/* =====================================================
   FACILITY CARD
===================================================== */

.vinoth-facility-card {
     height: 100%;
    padding: 38px 25px;

    position: relative;

    display: grid;

    grid-template-columns: 42% 58%;

    min-height: 310px;

    background: #ffffff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(23, 50, 70, 0.07);

    border: 1px solid rgba(23, 170, 168, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* Hover */

.vinoth-facility-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(23, 50, 70, 0.12);
}


/* =====================================================
   IMAGE
===================================================== */

.vinoth-facility-image {

    width: 100%;
    height: 100%;

    min-height: 310px;

    overflow: hidden;
}

.vinoth-facility-image img {

    width: 100%;
    height: 100%;

    min-height: 310px;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.vinoth-facility-card:hover
.vinoth-facility-image img {

    transform: scale(1.05);
}


/* =====================================================
   CONTENT
===================================================== */

.vinoth-facility-content {

    position: relative;

    padding: 50px 60px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}


/* =====================================================
   NUMBER
===================================================== */

.vinoth-facility-number {

    position: absolute;

    top: 18px;
    right: 28px;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 58px;

    line-height: 1;

    font-weight: 800;

    color: rgb(23 170 168 / 42%);

    pointer-events: none;
}


/* =====================================================
   ICON
===================================================== */

.vinoth-facility-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(23, 170, 168, 0.10);

    color: #0a9e9c;

    margin-bottom: 18px;

    transition: all 0.3s ease;
}

.vinoth-facility-icon i {

    font-size: 21px;
}

.vinoth-facility-card:hover
.vinoth-facility-icon {

    background: #17aaa8;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =====================================================
   TITLE
===================================================== */

.vinoth-facility-content h3 {
    margin: 0 0 15px;

    width: 100%;
    max-width: 600px;

    text-align: center;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 26px;

    line-height: 1.35;

    font-weight: 700;

    color: #17263c;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.vinoth-facility-content p {

    max-width: 650px;

    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: #687b91;
}


/* =====================================================
   REVERSE CARD
===================================================== */

.vinoth-facility-card.reverse {

    grid-template-columns: 58% 42%;
}


/*
   Important:
   Reverse image and content positions
*/

.vinoth-facility-card.reverse
.vinoth-facility-image {

    order: 2;
}

.vinoth-facility-card.reverse
.vinoth-facility-content {

    order: 1;
}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 991px) {

    .vinoth-facilities-section {

        padding: 70px 0 80px;
    }


    .vinoth-facilities-heading {

        margin-bottom: 45px;
    }


    .vinoth-facilities-heading h2 {

        font-size: 36px;
    }


    .vinoth-facility-card,
    .vinoth-facility-card.reverse {

        grid-template-columns: 1fr;

        min-height: auto;
    }


    .vinoth-facility-card.reverse
    .vinoth-facility-image {

        order: 1;
    }


    .vinoth-facility-card.reverse
    .vinoth-facility-content {

        order: 2;
    }


    .vinoth-facility-image {

        min-height: 280px;

        height: 280px;
    }


    .vinoth-facility-image img {

        min-height: 280px;
    }


    .vinoth-facility-content {

        min-height: 300px;

        padding: 40px;
    }

}


/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 767px) {

    .vinoth-facilities-section {

        padding: 55px 0 65px;
    }


    .vinoth-facilities-heading {

        margin-bottom: 35px;
    }


    .vinoth-facilities-heading h2 {

        font-size: 29px;

        line-height: 1.3;
    }


    .vinoth-facilities-heading p {

        font-size: 14px;

        line-height: 1.7;
    }


    .vinoth-facilities-list {

        gap: 24px;
    }


    .vinoth-facility-image {

        height: 230px;

        min-height: 230px;
    }


    .vinoth-facility-image img {

        height: 230px;

        min-height: 230px;
    }


    .vinoth-facility-content {

        min-height: 280px;

        padding: 35px 25px;
    }


    .vinoth-facility-number {

        font-size: 48px;

        top: 15px;
        right: 20px;
    }


    .vinoth-facility-icon {

        width: 46px;
        height: 46px;

        margin-bottom: 15px;
    }


    
    .vinoth-facility-content h3 {
        width: 100%;
        text-align: center;
    }


    .vinoth-facility-content p {

        font-size: 13.5px;

        line-height: 1.75;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .vinoth-facilities-heading h2 {

        font-size: 25px;
    }


    .vinoth-facility-image {

        height: 210px;

        min-height: 210px;
    }


    .vinoth-facility-image img {

        height: 210px;

        min-height: 210px;
    }


    .vinoth-facility-content {

        min-height: 300px;

        padding: 30px 22px;
    }

}

/* =====================================================
   VINOTH CLINIC
   WHY PATIENTS CHOOSE OUR FACILITIES
===================================================== */

.vinoth-why-section {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================
   COMMON SECTION HEADING
========================= */

.vinoth-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.vinoth-section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 20px;

    border-radius: 50px;

    background: rgba(14, 156, 154, 0.10);

    color: #0E9C9A;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 18px;
}

.vinoth-section-heading h2 {
    margin: 0 0 15px;

    color: #17353E;

    font-size: 38px;
    line-height: 1.25;

    font-weight: 700;
}

.vinoth-section-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #667f88;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   FACILITY CARD
========================= */

.vinoth-facility-card {
    height: 100%;

    padding: 38px 25px;

    text-align: center;

    background: #f7fbfb;

    border: 1px solid #edf3f3;

    border-radius: 22px;

    transition: all 0.35s ease;
}

.vinoth-facility-card:hover {
    transform: translateY(-8px);

    background: #ffffff;

    border-color: rgba(14, 156, 154, 0.25);

    box-shadow: 0 18px 45px rgba(23, 53, 62, 0.10);
}


/* Icon */

.vinoth-facility-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(14, 156, 154, 0.10);

    color: #0E9C9A;

    font-size: 31px;

    transition: all 0.3s ease;
}

.vinoth-facility-card:hover .vinoth-facility-icon {
    background: #0E9C9A;

    color: #ffffff;

    transform: scale(1.05);
}


/* Card Heading */

.vinoth-facility-card h3 {
    margin: 0 0 12px;

    color: #17353E;

    font-size: 20px;

    font-weight: 700;
}


/* Card Text */

.vinoth-facility-card p {
    margin: 0;

    color: #667f88;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   PATIENT CARE PROCESS
===================================================== */

.vinoth-process-section {
    padding: 105px 0;

    background: #f7fbfb;
}


/* Process Wrapper */

.vinoth-process-wrapper {
    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    max-width: 1050px;

    margin: 75px auto 0;
}


/* Green Connecting Line */

.vinoth-process-line {
    position: absolute;

    top: 35px;

    left: 12%;

    right: 12%;

    height: 2px;

    background: #0E9C9A;

    z-index: 0;
}


/* Process Item */

.vinoth-process-item {
    position: relative;

    z-index: 1;

    text-align: center;
}


/* Number Circle */

.vinoth-process-number {
    width: 70px;
    height: 70px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 3px solid #0E9C9A;

    color: #0E9C9A;

    font-size: 22px;

    font-weight: 700;

    transition: all 0.3s ease;
}

.vinoth-process-item:hover .vinoth-process-number {
    background: #0E9C9A;

    color: #ffffff;

    transform: translateY(-5px);
}


/* Process Heading */

.vinoth-process-content h3 {
    margin: 0 0 10px;

    color: #17353E;

    font-size: 20px;

    font-weight: 700;
}


/* Process Description */

.vinoth-process-content p {
    margin: 0 auto;

    max-width: 220px;

    color: #667f88;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .vinoth-why-section {
        padding: 80px 0;
    }

    .vinoth-section-heading h2 {
        font-size: 32px;
    }

    .vinoth-process-wrapper {
        grid-template-columns: repeat(2, 1fr);

        gap: 55px 30px;

        margin-top: 55px;
    }

    .vinoth-process-line {
        display: none;
    }

}


@media (max-width: 767px) {

    .vinoth-why-section {
        padding: 65px 0;
    }

    .vinoth-section-heading {
        margin-bottom: 40px;
    }

    .vinoth-section-heading h2 {
        font-size: 28px;
    }

    .vinoth-section-heading p {
        font-size: 14px;
    }

    .vinoth-facility-card {
        padding: 32px 22px;
    }

    .vinoth-process-section {
        padding: 70px 0;
    }

    .vinoth-process-wrapper {
        grid-template-columns: 1fr;

        gap: 40px;

        margin-top: 45px;
    }

    .vinoth-process-number {
        width: 62px;
        height: 62px;
    }

}


@media (max-width: 480px) {

    .vinoth-section-heading h2 {
        font-size: 25px;
    }

    .vinoth-section-tag {
        font-size: 10px;

        padding: 8px 16px;
    }

    .vinoth-facility-card h3 {
        font-size: 18px;
    }

    .vinoth-facility-card p {
        font-size: 13px;
    }

    .vinoth-process-content h3 {
        font-size: 18px;
    }

}

/* =====================================================
   WHY PATIENTS - CARDS
===================================================== */

.vinoth-why-card {
    height: 100%;

    padding: 38px 25px;

    text-align: center;

    background: #f7fbfb;

    border: 1px solid #edf3f3;

    border-radius: 22px;

    transition: all 0.35s ease;
}

.vinoth-why-card:hover {
    transform: translateY(-8px);

    background: #ffffff;

    border-color: rgba(14, 156, 154, 0.25);

    box-shadow: 0 18px 45px rgba(23, 53, 62, 0.10);
}


/* ICON */

.vinoth-why-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(14, 156, 154, 0.10);

    color: #0E9C9A;

    font-size: 31px;

    transition: all 0.3s ease;
}

.vinoth-why-card:hover .vinoth-why-icon {
    background: #0E9C9A;

    color: #ffffff;

    transform: scale(1.05);
}


/* TITLE */

.vinoth-why-card h3 {
    margin: 0 0 12px;

    color: #17353E;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.4;
}


/* TEXT */

.vinoth-why-card p {
    margin: 0;

    color: #667f88;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    line-height: 1.7;
}

@media (max-width: 767px) {

    .vinoth-why-card {
        padding: 32px 22px;
    }

}

@media (max-width: 480px) {

    .vinoth-why-card h3 {
        font-size: 18px;
    }

    .vinoth-why-card p {
        font-size: 13px;
    }

}

/* =====================================================
   CONTACT HERO
===================================================== */

.vinoth-contact-hero {
    padding: 60px 0 85px;
    background:
        linear-gradient(
            135deg,
            #f0fbfb 0%,
            #ffffff 55%,
            #eefafa 100%
        );
    position: relative;
    overflow: hidden;
}

.vinoth-contact-hero::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: rgba(14, 156, 154, 0.08);
}

.vinoth-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
    margin: auto;
}

.vinoth-contact-tag {
    display: inline-flex;
    padding: 9px 20px;
    border-radius: 50px;
    background: rgba(14, 156, 154, 0.10);
    color: #0E9C9A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.vinoth-contact-hero h1 {
    margin: 0 0 20px;
    color: #17353E;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
}

.vinoth-contact-hero h1 span {
    color: #0E9C9A;
}

.vinoth-contact-hero p {
    max-width: 720px;
    margin: auto;
    color: #637C84;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.vinoth-contact-breadcrumb {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.vinoth-contact-breadcrumb a {
    color: #0E9C9A;
    text-decoration: none;
}

.vinoth-contact-breadcrumb i {
    color: #9aaeb3;
}

.vinoth-contact-breadcrumb span {
    color: #687b91;
}


/* =====================================================
   CONTACT INFO
===================================================== */

.vinoth-contact-info-section {
    padding: 0 0 90px;
    background: #ffffff;
}

.vinoth-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -35px;
    position: relative;
    z-index: 5;
}

.vinoth-contact-info-card {
    padding: 27px 22px;
    display: flex;
    align-items: center;
    gap: 17px;
    background: #ffffff;
    border: 1px solid #e8f0f0;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(23, 53, 62, 0.07);
    transition: 0.35s ease;
}

.vinoth-contact-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 156, 154, 0.25);
}

.vinoth-contact-info-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(14, 156, 154, 0.10);
    color: #0E9C9A;
    font-size: 21px;
}

.vinoth-contact-info-card span {
    display: block;
    margin-bottom: 5px;
    color: #0E9C9A;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.vinoth-contact-info-card h3 {
    margin: 0 0 3px;
    color: #17353E;
    font-size: 15px;
    font-weight: 700;
}

.vinoth-contact-info-card p {
    margin: 0;
    color: #748991;
    font-size: 12px;
}


/* =====================================================
   MAIN CONTACT
===================================================== */

.vinoth-contact-main {
    padding: 30px 0;
    background: #f7fbfb;
}

.vinoth-contact-left {
    height: 100%;
    padding: 25px 10px 25px 0;
}

.vinoth-contact-left h2 {
    margin: 20px 0 18px;
    color: #17353E;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 800;
}

.vinoth-contact-left h2 span {
    color: #0E9C9A;
}

.vinoth-contact-left > p {
    margin: 0;
    color: #687f87;
    font-size: 15px;
    line-height: 1.8;
    max-width: 500px;
}


/* =====================================================
   DETAILS
===================================================== */

.vinoth-contact-details {
    margin-top: 35px;
}

.vinoth-contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.vinoth-detail-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(14, 156, 154, 0.10);
    color: #0E9C9A;
}

.vinoth-contact-detail strong {
    display: block;
    margin-bottom: 4px;
    color: #17353E;
    font-size: 15px;
}

.vinoth-contact-detail p {
    margin: 0;
    color: #71868d;
    font-size: 14px;
    line-height: 1.6;
}


/* =====================================================
   EMERGENCY
===================================================== */

.vinoth-emergency-box {
    margin-top: 35px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #17353E;
    border-radius: 18px;
    color: #ffffff;
}

.vinoth-emergency-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0E9C9A;
    border-radius: 13px;
}

.vinoth-emergency-box span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #8edbd9;
}

.vinoth-emergency-box h4 {
    margin: 4px 0 6px;
    font-size: 16px;
    color: #f0f0f0;
}

.vinoth-emergency-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.vinoth-emergency-box a i {
    margin-left: 5px;
}


/* =====================================================
   FORM CARD
===================================================== */

.vinoth-contact-form-card {
    height: 100%;
    padding: 45px;
    background: #ffffff;
    border: 1px solid #e6eeee;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(23, 53, 62, 0.08);
}

.vinoth-form-heading > span {
    color: #0E9C9A;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.vinoth-form-heading h2 {
    margin: 8px 0 8px;
    color: #17353E;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.vinoth-form-heading p {
    margin: 0 0 30px;
    color: #71868D;
    font-size: 14px;
}


/* =====================================================
   INPUT
===================================================== */

.vinoth-contact-form-card label {
    display: block;
    margin-bottom: 8px;
    color: #17353E;
    font-size: 13px;
    font-weight: 600;
}

.vinoth-input,
.vinoth-textarea {
    position: relative;
}

.vinoth-input i,
.vinoth-textarea i {
    position: absolute;
    left: 17px;
    top: 17px;
    color: #0E9C9A;
    z-index: 2;
}

.vinoth-input input,
.vinoth-input select,
.vinoth-textarea textarea {
    width: 100%;
    border: 1px solid #e1ebeb;
    border-radius: 12px;
    padding: 14px 15px 14px 45px;
    background: #fbfdfd;
    color: #17353E;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    outline: none;
    transition: 0.3s ease;
}

.vinoth-input input:focus,
.vinoth-input select:focus,
.vinoth-textarea textarea:focus {
    border-color: #0E9C9A;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 156, 154, 0.08);
}

.vinoth-textarea i {
    top: 17px;
}

.vinoth-textarea textarea {
    resize: vertical;
    min-height: 130px;
}


/* =====================================================
   SUBMIT
===================================================== */

.vinoth-contact-submit {
    width: 100%;
    border: 0;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    background: #0E9C9A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.35s ease;
}

.vinoth-contact-submit:hover {
    background: #006D6F;
    transform: translateY(-2px);
}


/* =====================================================
   MAP
===================================================== */

.vinoth-map-section {
    padding: 50px 0;
    background: #ffffff;
}

.vinoth-map-heading {
    text-align: center;
    margin-bottom: 45px;
}

.vinoth-map-heading h2 {
    margin: 15px 0 12px;
    color: #17353E;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 38px;
    font-weight: 800;
}

.vinoth-map-heading p {
    margin: 0;
    color: #71868D;
    font-size: 15px;
}

.vinoth-map-wrapper {
    height: 430px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #e4eeee;
    box-shadow: 0 18px 45px rgba(23, 53, 62, 0.08);
}

.vinoth-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* =====================================================
   FINAL CTA
===================================================== */

.vinoth-contact-cta {
    padding: 75px 0;
    background: #f7fbfb;
}

.vinoth-contact-cta-inner {
    padding: 45px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background: #17353E;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.vinoth-contact-cta-inner::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -120px;
    bottom: -170px;
    border-radius: 50%;
    background: rgba(14, 156, 154, 0.18);
}

.vinoth-contact-cta-inner > div {
    position: relative;
    z-index: 2;
}

.vinoth-contact-cta-inner span {
    color: #8edbd9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.vinoth-contact-cta-inner h2 {
    margin: 10px 0 8px;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.vinoth-contact-cta-inner p {
    margin: 0;
    color: #b8c9cc;
    font-size: 14px;
}

.vinoth-contact-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.vinoth-btn-primary,
.vinoth-btn-outline {
    padding: 14px 21px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: 0.3s ease;
}

.vinoth-btn-primary {
    background: #0E9C9A;
    color: #ffffff;
}

.vinoth-btn-primary:hover {
    background: #12b5b2;
    color: #ffffff;
}

.vinoth-btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
}

.vinoth-btn-outline:hover {
    background: #ffffff;
    color: #17353E;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .vinoth-contact-hero {
        padding: 75px 0;
    }

    .vinoth-contact-hero h1 {
        font-size: 42px;
    }

    .vinoth-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vinoth-contact-main {
        padding: 75px 0;
    }

    .vinoth-contact-left {
        padding-right: 0;
    }

    .vinoth-contact-form-card {
        padding: 35px;
    }

    .vinoth-contact-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .vinoth-contact-hero {
        padding: 60px 0;
    }

    .vinoth-contact-hero h1 {
        font-size: 32px;
    }

    .vinoth-contact-hero p {
        font-size: 14px;
    }

    .vinoth-contact-info-section {
        padding-bottom: 60px;
    }

    .vinoth-contact-info-grid {
        grid-template-columns: 1fr;
        margin-top: -20px;
    }

    .vinoth-contact-main {
        padding: 60px 0;
    }

    .vinoth-contact-left h2 {
        font-size: 30px;
    }

    .vinoth-contact-form-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .vinoth-form-heading h2 {
        font-size: 25px;
    }

    .vinoth-map-section {
        padding: 65px 0;
    }

    .vinoth-map-heading h2 {
        font-size: 30px;
    }

    .vinoth-map-wrapper {
        height: 330px;
        border-radius: 16px;
    }

    .vinoth-contact-cta {
        padding: 55px 0;
    }

    .vinoth-contact-cta-inner {
        padding: 35px 25px;
        border-radius: 18px;
    }

    .vinoth-contact-cta-inner h2 {
        font-size: 24px;
    }

    .vinoth-contact-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .vinoth-btn-primary,
    .vinoth-btn-outline {
        justify-content: center;
        width: 100%;
    }

}


@media (max-width: 480px) {

    .vinoth-contact-hero h1 {
        font-size: 28px;
    }

    .vinoth-contact-info-card {
        padding: 22px 18px;
    }

    .vinoth-contact-left h2 {
        font-size: 27px;
    }

}

/* =====================================================
   DR. VINOTH DETAILED PROFILE
===================================================== */

.doctor-profile-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #eef8f8;
}

.doctor-profile-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.doctor-profile-content h3 {
    font-size: 38px;
    margin: 10px 0 20px;
}

.doctor-profile-content p {
    line-height: 1.8;
}

.doctor-detail-block {
    border-top: 1px solid rgba(23, 53, 62, 0.08);
}

.doctor-education-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.education-item {
    display: flex;
    gap: 20px;
    padding: 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(23, 53, 62, 0.08);
}

.education-year {
    min-width: 70px;
    height: fit-content;
    padding: 8px 10px;
    border-radius: 8px;
    background: #e8f7f7;
    color: #006d6f;
    font-weight: 700;
    text-align: center;
    font-size: 13px;
}

.education-item h4 {
    margin-bottom: 6px;
    font-size: 18px;
}

.education-item p {
    margin: 0;
    line-height: 1.6;
    color: #66757a;
}

.doctor-experience-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.experience-point {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid rgba(23, 53, 62, 0.08);
}

.experience-point > span {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #e8f7f7;
    color: #0e9c9a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-point h5 {
    margin-bottom: 5px;
    font-size: 18px;
}

.experience-point p {
    margin: 0;
    line-height: 1.6;
    color: #68777b;
}

.clinic-mission-box {
    padding: 45px;
    border-radius: 24px;
    background: linear-gradient(135deg, #006d6f, #0e9c9a);
    color: #fff;
    text-align: center;
}

.clinic-mission-box .eyebrow {
    color: #f5a623;
}

.clinic-mission-box h3 {
    max-width: 800px;
    margin: 12px auto 15px;
    font-size: 30px;
    color: #fff;
}

.clinic-mission-box p {
    max-width: 750px;
    margin: auto;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.doctor-profile-closing .gradient-card {
    padding: 50px;
}

.doctor-profile-closing h2 {
    max-width: 700px;
}

.doctor-profile-closing p {
    max-width: 780px;
    line-height: 1.8;
}

@media (max-width: 767px) {

    .doctor-profile-image img {
        height: 420px;
    }

    .doctor-profile-content h3 {
        font-size: 30px;
    }

    .education-item {
        padding: 18px;
        gap: 12px;
    }

    .education-year {
        min-width: 60px;
    }

    .clinic-mission-box {
        padding: 30px 20px;
    }

    .clinic-mission-box h3 {
        font-size: 24px;
    }

    .doctor-profile-closing .gradient-card {
        padding: 30px 20px;
    }

}

/* =====================================================
   ABOUT PAGE - CLEAN PREMIUM SPACING
===================================================== */

.about-page .section {
    padding: 50px 0;
}

.about-page .section-head {
    margin-bottom: 10px;
}

.about-page .section-head h2 {
    margin-bottom: 18px;
}

.about-page .section-head .lead {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   ABOUT INTRO
===================================================== */

.about-intro {
    padding-top: 110px;
    padding-bottom: 110px;
}

.about-intro-image {
    border-radius: 24px;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-intro-content {
    padding-left: 25px;
}

.about-intro-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 22px;
}

.about-intro-content p {
    line-height: 1.8;
    color: var(--text);
}

.about-intro-content .check-list {
    padding-left: 0;
}


/* =====================================================
   DOCTORS
===================================================== */

.doctors-section {
    padding: 110px 0;
}

.doctor-about-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    background: #fff;
    border: 1px solid rgba(23, 53, 62, 0.08);
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 12px 40px rgba(20, 50, 60, 0.06);
    transition: all .3s ease;
}

.doctor-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(20, 50, 60, 0.10);
}

.doctor-about-image {
    height: 100%;
    min-height: 270px;
    border-radius: 18px;
    overflow: hidden;
}

.doctor-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-about-content {
    padding: 8px 5px;
}

.doctor-about-content h3 {
    font-size: 27px;
    margin: 8px 0 10px;
}

.doctor-about-content h6 {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    font-weight: 500;
}

.doctor-about-content p {
    font-size: 15px;
    line-height: 1.75;
}

.doctor-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.doctor-about-tags span {
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 50px;
    background: rgba(14, 156, 154, .08);
    color: #000000;
}


/* =====================================================
   DOCTOR PROFILE
===================================================== */

.doctor-profile-section {
    padding: 110px 0;
}

.doctor-profile-intro {
    padding: 10px 0 50px;
}

.doctor-profile-image {
    border-radius: 24px;
    overflow: hidden;
}

.doctor-profile-image img {
    width: 100%;
    height: 605px;
    object-fit: cover;
}

.doctor-profile-content {
    padding-left: 20px;
}

.doctor-profile-content h3 {
    font-size: 36px;
    margin: 8px 0 20px;
}

.doctor-profile-content p {
    line-height: 1.85;
    margin-bottom: 18px;
}


/* =====================================================
   EDUCATION
===================================================== */

.doctor-detail-block {
    margin-top: 80px !important;
    padding-top: 70px !important;
    border-top: 1px solid rgba(23, 53, 62, .08);
}

.doctor-education-list {
    position: relative;
    padding-left: 30px;
}

.doctor-education-list::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: rgba(14, 156, 154, .25);
}

.education-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    padding-bottom: 32px;
}

.education-item:last-child {
    padding-bottom: 0;
}

.education-item::before {
    content: "";
    position: absolute;
    left: -29px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(14, 156, 154, .10);
}

.education-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.education-item h4 {
    font-size: 19px;
    margin-bottom: 6px;
}

.education-item p {
    margin: 0;
    line-height: 1.7;
    color: var(--text);
}


/* =====================================================
   EXPERTISE
===================================================== */

.expertise-section {
    padding: 110px 0;
}

.expertise-card {
    height: 100%;
    padding: 32px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(23, 53, 62, .07);
    transition: .3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 156, 154, .25);
    box-shadow: 0 15px 40px rgba(20, 50, 60, .07);
}

.expertise-card .ico-box {
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.expertise-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* =====================================================
   MISSION / VISION
===================================================== */

.mission-section {
    padding: 100px 0;
}

.mission-box {
    padding: 45px 50px;
    border-radius: 24px;
    background: #f8fcfc;
    border: 1px solid rgba(14, 156, 154, .10);
    height: 100%;
}

.mission-box h3 {
    font-size: 27px;
    margin: 12px 0 15px;
}

.mission-box p {
    line-height: 1.8;
    margin-bottom: 0;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-us {
    padding: 100px 0;
}

.why-item {
    display: flex;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(23, 53, 62, .10);
}

.why-item:first-child {
    padding-top: 0;
}

.why-item:last-child {
    border-bottom: 0;
}

.why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(14, 156, 154, .10);
    color: var(--primary);
    font-size: 21px;
}

.why-item h4 {
    margin: 0 0 7px;
    font-size: 18px;
}

.why-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}


/* =====================================================
   CTA
===================================================== */

.about-cta {
    padding: 100px 0;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .about-page .section,
    .doctors-section,
    .doctor-profile-section,
    .expertise-section,
    .mission-section,
    .why-us,
    .about-cta {
        padding: 75px 0;
    }

    .about-intro {
        padding: 75px 0;
    }

    .about-intro-content {
        padding-left: 0;
    }

    .doctor-profile-content {
        padding-left: 0;
    }

    .doctor-about-card {
        grid-template-columns: 180px 1fr;
    }

}


@media (max-width: 767px) {

    .about-page .section,
    .doctors-section,
    .doctor-profile-section,
    .expertise-section,
    .mission-section,
    .why-us,
    .about-cta,
    .about-intro {
        padding: 60px 0;
    }

    .about-intro-image img {
        height: 350px;
    }

    .doctor-about-card {
        display: block;
        padding: 18px;
    }

    .doctor-about-image {
        height: 300px;
        min-height: 0;
        margin-bottom: 20px;
    }

    .doctor-profile-image img {
        height: 380px;
    }

    .doctor-profile-content h3 {
        font-size: 30px;
    }

    .doctor-detail-block {
        margin-top: 55px !important;
        padding-top: 50px !important;
    }

    .education-item {
        grid-template-columns: 65px 1fr;
        gap: 18px;
    }

    .mission-box {
        padding: 30px;
    }

}

/* =====================================================
   CUSTOM POPUP MODAL
===================================================== */

body.modal-open {
    overflow: hidden;
}


/* Modal */

.custom-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* Active */

.custom-modal.active {
    visibility: visible;
    opacity: 1;
}


/* Overlay */

.custom-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(10, 30, 35, 0.72);

    backdrop-filter: blur(7px);
}


/* Modal Box */

.custom-modal-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 720px;

    max-height: 90vh;
    overflow-y: auto;

    background: #ffffff;

    border-radius: 20px;

    padding: 40px;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);

    transform: translateY(30px) scale(.97);

    transition: transform 0.35s ease;
}


.custom-modal.active .custom-modal-box {
    transform: translateY(0) scale(1);
}


/* Close Button */

.custom-modal-close {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;

    background: #f1f7f7;

    color: #17353E;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition: all .25s ease;
}


.custom-modal-close:hover {
    background: #0E9C9A;
    color: #ffffff;
}


/* Header */

.modal-header-content {
    padding-right: 35px;
    margin-bottom: 25px;
}


.modal-header-content h2 {
    margin-top: 8px;
    margin-bottom: 10px;
}


.modal-header-content p {
    margin-bottom: 0;
    color: #68777b;
}


/* Form */

.custom-modal-box label {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;
    font-weight: 600;

    color: #17353E;
}


.custom-modal-box .form-control {
    min-height: 50px;

    border: 1px solid #dce7e7;

    border-radius: 9px;

    padding: 12px 15px;

    font-size: 14px;

    box-shadow: none;

    transition: all .25s ease;
}


.custom-modal-box textarea.form-control {
    min-height: 120px;
    resize: vertical;
}


.custom-modal-box .form-control:focus {
    border-color: #0E9C9A;

    box-shadow: 0 0 0 3px rgba(14, 156, 154, .10);
}


/* Button */

.custom-modal-box .btn-x {
    min-height: 52px;

    border: 0;

    border-radius: 9px;
}


/* Mobile */

@media (max-width: 767px) {

    .custom-modal {
        padding: 12px;
    }

    .custom-modal-box {

        max-height: 94vh;

        padding: 30px 20px;

        border-radius: 16px;
    }

    .custom-modal-close {

        width: 35px;
        height: 35px;

        top: 12px;
        right: 12px;

        font-size: 24px;
    }

    .modal-header-content {
        padding-right: 30px;
    }

    .modal-header-content h2 {
        font-size: 25px;
    }

}

/* =====================================================
   HEADER ACTION BUTTONS
===================================================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-actions .btn-x {
    white-space: nowrap;
    min-width: max-content;
    padding: 12px 18px;
    font-size: 14px;
}


/* Enquiry Button */

.nav-actions .enquiry-btn {
    background: #0E9C9A;
    color: #fff;
    border: 1px solid #0E9C9A;
}


/* Appointment Button */

.nav-actions .appointment-btn {
    background: #08BFE0;
    color: #fff;
    border: 1px solid #08BFE0;
}


/* Hover */

.nav-actions .btn-x:hover {
    transform: translateY(-1px);
}

/* =====================================================
   GALLERY PAGE
===================================================== */

.gallery-banner {
    background:
        linear-gradient(rgba(10, 60, 63, .55), rgba(10, 60, 63, .55)),
        url("../images/gallery/g1.jpg") center/cover no-repeat;
}


/* =====================================================
   INTRO
===================================================== */

.gallery-intro {
    padding-bottom: 35px;
}

.gallery-intro-content {
    max-width: 760px;
}

.gallery-intro-content h2 {
    margin: 12px 0 18px;
}

.gallery-intro-content h2 span {
    color: #0E9C9A;
}

.gallery-intro-content p {
    color: #687b80;
}


/* =====================================================
   FILTER
===================================================== */

.gallery-filter-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.gallery-filter {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 7px;
    background: #f3f8f8;
    border: 1px solid #e2eeee;
    border-radius: 50px;
}

.gallery-filter-btn {
    border: 0;
    background: transparent;
    color: #49666b;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #0E9C9A;
    color: #fff;
    box-shadow: 0 8px 20px rgba(14, 156, 154, .18);
}


/* =====================================================
   GALLERY GRID
===================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 20px;
}

.gallery-item {
    min-width: 0;
    transition:
        opacity .3s ease,
        transform .3s ease;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.gallery-tall {
    grid-row: span 2;
}


/* =====================================================
   CARD
===================================================== */

.gallery-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #eef5f5;
    box-shadow: 0 12px 35px rgba(18, 68, 72, .08);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.gallery-card:hover img {
    transform: scale(1.07);
}


/* =====================================================
   OVERLAY
===================================================== */

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(8, 48, 52, .85),
            rgba(8, 48, 52, .05) 65%
        );

    opacity: 0;
    transition: opacity .35s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    width: 100%;
    transform: translateY(15px);
    transition: transform .35s ease;
}

.gallery-card:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay span {
    display: block;
    color: #f5a623;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    padding-right: 55px;
}


/* =====================================================
   VIEW BUTTON
===================================================== */

.gallery-view {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;

    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .3s ease;
}

.gallery-view:hover {
    background: #F5A623;
    border-color: #F5A623;
    transform: rotate(5deg);
}


/* =====================================================
   FILTER HIDDEN
===================================================== */

.gallery-hidden {
    opacity: 0;
    transform: scale(.96);
}


/* =====================================================
   LIGHTBOX
===================================================== */

.gallery-lightbox {
    position: fixed;
    inset: 0;

    z-index: 99999;

    background: rgba(4, 24, 27, .94);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-content {
    position: relative;
    max-width: 1000px;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;

    border-radius: 12px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.45);
}


/* =====================================================
   LIGHTBOX CAPTION
===================================================== */

.lightbox-caption {
    padding-top: 18px;
}

.lightbox-caption span {
    color: #F5A623;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-caption h3 {
    color: #fff;
    font-size: 20px;
    margin: 5px 0 0;
}


/* =====================================================
   LIGHTBOX BUTTONS
===================================================== */

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    border: 0;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: rgba(255,255,255,.12);

    backdrop-filter: blur(8px);

    transition: all .3s ease;

    z-index: 2;
}

.lightbox-close {
    top: 25px;
    right: 25px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #0E9C9A;
}


/* =====================================================
   CTA
===================================================== */

.gallery-cta-section {
    padding-top: 20px;
}

.gallery-cta {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 55px 60px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #006D6F,
            #0E9C9A
        );

    box-shadow:
        0 20px 50px rgba(14, 156, 154, .18);
}

.gallery-cta h2 {
    color: #fff;
    max-width: 650px;
    margin: 8px 0 12px;
}

.gallery-cta p {
    color: rgba(255,255,255,.8);
    margin: 0;
    max-width: 650px;
}

.gallery-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.gallery-cta-actions .btn-x {
    white-space: nowrap;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }

    .gallery-item.gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item.gallery-tall {
        grid-row: span 1;
    }

    .gallery-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 35px;
    }

}


@media (max-width: 575px) {

    .gallery-filter {
        width: 100%;
        border-radius: 16px;
        padding: 6px;
    }

    .gallery-filter-btn {
        flex: 1 1 auto;
        padding: 9px 12px;
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
        gap: 15px;
    }

    .gallery-item.gallery-large,
    .gallery-item.gallery-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-overlay {
        opacity: 1;
        padding: 20px;
    }

    .gallery-overlay-content {
        transform: translateY(0);
    }

    .gallery-lightbox {
        padding: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

    .gallery-cta {
        padding: 35px 25px;
        border-radius: 18px;
    }

    .gallery-cta-actions {
        width: 100%;
    }

    .gallery-cta-actions .btn-x {
        width: 100%;
        justify-content: center;
    }

}

.specialised-knowledge-card {
    background: #ffffff;
    padding: 42px;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(14, 156, 154, 0.10);
    border: 1px solid rgba(14, 156, 154, 0.08);
}

.specialised-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8f8f7;
    color: #0E9C9A;
    border-radius: 14px;
    margin-bottom: 22px;
}

.specialised-icon i {
    font-size: 26px;
    color: #0E9C9A;
}

.specialised-label {
    display: block;
    color: #0E9C9A;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.specialised-knowledge-card h3 {
    color: #17353E;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 18px;
}

.specialised-knowledge-card p {
    color: #61747A;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

.slider-x {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

.slider-track > .flex-shrink-0 {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
}

@media (max-width: 991.98px) {
    .slider-track > .flex-shrink-0 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .slider-track > .flex-shrink-0 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}