/* ================================================================
   MediCure Clinic — Main Stylesheet
   Theme: Dark Navy + White | Professional Medical
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ----------------------------------------- */
:root {
    --dark-bg:       #05101f;
    --dark-card:     #0b1829;
    --dark-border:   #1a2a42;
    --accent-cyan:   #00c8e0;
    --accent-gold:   #d4a034;
    --accent-red:    #e74c3c;
    --text-white:    #f0f4f8;
    --text-muted:    #8aa0b8;
    --text-light:    #c5d5e5;
    --gradient-1:    linear-gradient(135deg, #05101f 0%, #0d2040 100%);
    --gradient-btn:  linear-gradient(135deg, #00c8e0 0%, #0090a8 100%);
    --gradient-gold: linear-gradient(135deg, #d4a034 0%, #f0c060 100%);
    --shadow-glow:   0 0 30px rgba(0,200,224,0.15);
    --shadow-card:   0 8px 32px rgba(0,0,0,0.4);
    --radius:        12px;
    --radius-lg:     20px;
    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'Outfit', sans-serif;
    --transition:    all 0.3s ease;
}

/* ---- Base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-white);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Scrollbar --------------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--accent-cyan); border-radius: 3px; }

/* ================================================================
   PRELOADER
================================================================ */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--dark-bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}
#preloader .loader {
    width: 60px; height: 60px;
    border: 3px solid var(--dark-border);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   TOP INFO BAR
================================================================ */
.top-bar {
    background: #03080f;
    border-bottom: 1px solid var(--dark-border);
    padding: 7px 0;
    font-size: 12.5px;
}
.top-bar a { color: var(--text-muted); transition: var(--transition); }
.top-bar a:hover { color: var(--accent-cyan); }
.top-bar .social-icons a {
    width: 28px; height: 28px;
    background: var(--dark-border);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; margin-left: 5px;
    transition: var(--transition);
}
.top-bar .social-icons a:hover { background: var(--accent-cyan); color: #fff; }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
    background: rgba(5,16,31,0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dark-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.navbar-brand {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white) !important;
    display: flex; align-items: center; gap: 10px;
}
.navbar-brand .brand-icon {
    width: 100px; height: 100px;
    background: var(--gradient-btn);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff;
}
.navbar-brand .brand-sub {
    font-size: 10px; font-family: var(--font-body);
    color: var(--accent-cyan); letter-spacing: 1.5px;
    text-transform: uppercase; display: block; line-height: 1;
}

.nav-link {
    color: var(--text-light) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px !important;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}
.nav-link::after {
    content: ''; position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px; background: var(--accent-cyan);
    transform: scaleX(0); transition: var(--transition);
    border-radius: 1px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--accent-cyan) !important; }

/* Dropdown */
.dropdown-menu {
    background: #0b1829;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: var(--shadow-card);
    min-width: 220px;
}
.dropdown-item {
    color: var(--text-light);
    font-size: 13.5px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: rgba(0,200,224,0.1);
    color: var(--accent-cyan);
}
.mega-dropdown { position: static !important; }
.mega-dropdown .dropdown-menu {
    width: 100%; left: 0; right: 0;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px; padding: 16px;
}
.mega-dropdown:hover .dropdown-menu { display: grid; }
.mega-dropdown .dropdown-menu .col-head {
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--accent-cyan); margin-bottom: 8px; padding: 0 14px;
}

/* Book Appointment Button */
.btn-book {
    background: var(--gradient-gold);
    color: #1a1000 !important;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    letter-spacing: 0.5px;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,160,52,0.4);
    color: #1a1000 !important;
}
.btn-book::after { display: none !important; }

/* Mobile Toggle */
.navbar-toggler {
    border: 1px solid var(--dark-border);
    padding: 6px 10px;
}
.navbar-toggler-icon { filter: invert(1); }

/* ================================================================
   HERO SLIDER
================================================================ */
.hero-swiper { height: 90vh; min-height: 560px; position: relative; }
.hero-swiper .swiper-slide {
    position: relative; overflow: hidden;
}
.hero-swiper .slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.swiper-slide-active .slide-bg { transform: scale(1); }
.hero-swiper .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(5,16,31,0.92) 40%, rgba(5,16,31,0.3) 100%);
}
.hero-swiper .slide-content {
    position: relative; z-index: 2;
    padding: 0 60px;
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,200,224,0.12);
    border: 1px solid rgba(0,200,224,0.3);
    color: var(--accent-cyan);
    padding: 6px 16px; border-radius: 50px;
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-swiper h1 {
    font-size: clamp(38px, 5.5vw, 70px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 18px;
    line-height: 1.1;
}
.hero-swiper h1 span { color: var(--accent-cyan); }
.hero-swiper p {
    font-size: 17px; color: var(--text-light);
    margin-bottom: 32px; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-custom {
    background: var(--gradient-btn);
    color: #fff !important;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600; font-size: 14px;
    border: none; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.btn-outline-custom {
    background: transparent;
    color: var(--text-white) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500; font-size: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-custom:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan) !important;
    background: rgba(0,200,224,0.08);
}

/* Swiper nav */
.hero-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.4); width: 8px; height: 8px;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: var(--accent-cyan); width: 28px; border-radius: 4px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--accent-cyan);
    background: rgba(5,16,31,0.6);
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid var(--dark-border);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 16px; }

/* ================================================================
   STATS BAR
================================================================ */
.stats-bar {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 22px 0;
}
.stat-item { text-align: center; padding: 10px 20px; }
.stat-item .stat-num {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-muted); margin-top: 4px;
}
.stat-divider {
    width: 1px; background: var(--dark-border);
    height: 50px; align-self: center;
}

/* ================================================================
   SECTION COMMONS
================================================================ */
section { padding: 90px 0; }
.section-tag {
    display: inline-block;
    background: rgba(0,200,224,0.1);
    border: 1px solid rgba(0,200,224,0.25);
    color: var(--accent-cyan);
    font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 50px;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 700; color: var(--text-white);
    margin-bottom: 14px; line-height: 1.2;
}
.section-title span { color: var(--accent-cyan); }
.section-subtitle {
    color: var(--text-muted); font-size: 15px;
    max-width: 560px; line-height: 1.7;
}

/* ================================================================
   ABOUT SECTION (home preview)
================================================================ */
.about-section { background: var(--dark-bg); }
.about-img-wrapper {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-img-wrapper img { width: 100%; height: 480px; object-fit: cover; }
.about-exp-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--gradient-gold);
    border-radius: var(--radius);
    padding: 16px 22px; text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.about-exp-badge .num {
    font-family: var(--font-display); font-size: 44px; font-weight: 700;
    color: #1a1000; line-height: 1;
}
.about-exp-badge .label {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px; color: #3d2800;
}
.about-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.about-check .check-icon {
    width: 26px; height: 26px; min-width: 26px;
    background: rgba(0,200,224,0.12);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--accent-cyan); font-size: 11px;
}

/* ================================================================
   SERVICE CARDS
================================================================ */
.services-section { background: #060e1c; }
.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute;
    inset: 0; background: var(--gradient-btn);
    opacity: 0; transition: var(--transition);
    border-radius: var(--radius-lg);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: var(--accent-cyan); }
.service-card:hover::before { opacity: 0.05; }
.service-card .svc-icon {
    width: 58px; height: 58px;
    background: rgba(0,200,224,0.1);
    border: 1px solid rgba(0,200,224,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--accent-cyan);
    margin-bottom: 18px; position: relative; z-index: 1;
    transition: var(--transition);
}
.service-card:hover .svc-icon {
    background: var(--accent-cyan); color: #fff; border-color: var(--accent-cyan);
}
.service-card h5 {
    font-size: 17px; font-weight: 600; margin-bottom: 10px;
    position: relative; z-index: 1;
}
.service-card p {
    font-size: 13.5px; color: var(--text-muted);
    margin-bottom: 16px; position: relative; z-index: 1;
}
.service-card .read-more {
    color: var(--accent-cyan); font-size: 13px;
    font-weight: 500; display: flex; align-items: center; gap: 6px;
    position: relative; z-index: 1; transition: var(--transition);
}
.service-card:hover .read-more { gap: 10px; }

/* ================================================================
   TREATMENTS GRID
================================================================ */
.treatments-section { background: var(--dark-bg); }
.treatment-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 20px 18px;
    display: flex; align-items: center; gap: 14px;
    transition: var(--transition); cursor: pointer;
}
.treatment-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0,200,224,0.06);
    transform: translateX(4px);
}
.treatment-card .t-icon {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: #fff;
}
.treatment-card h6 { font-size: 14px; font-weight: 500; margin: 0; }
.treatment-card .t-arrow { margin-left: auto; color: var(--text-muted); font-size: 12px; transition: var(--transition); }
.treatment-card:hover .t-arrow { color: var(--accent-cyan); }

/* ================================================================
   WHY CHOOSE US
================================================================ */
.why-section { background: #060e1c; }
.why-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center;
    transition: var(--transition);
}
.why-card:hover { border-color: var(--accent-cyan); transform: translateY(-4px); }
.why-card .why-num {
    font-family: var(--font-display); font-size: 60px; font-weight: 700;
    color: rgba(0,200,224,0.08); line-height: 1; margin-bottom: 8px;
}
.why-card .why-icon {
    width: 64px; height: 64px;
    background: var(--gradient-btn);
    border-radius: 16px; margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff;
}
.why-card h5 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 13.5px; color: var(--text-muted); }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section { background: var(--dark-bg); }
.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
}
.testimonial-card .stars { color: #f0c040; font-size: 14px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14px; color: var(--text-light); font-style: italic; margin-bottom: 18px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gradient-btn);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff; font-weight: 700;
}
.testimonial-card .author-name { font-weight: 600; font-size: 14px; }
.testimonial-card .author-city { font-size: 12px; color: var(--text-muted); }

/* ================================================================
   APPOINTMENT CTA SECTION
================================================================ */
.appt-cta {
    background: linear-gradient(135deg, #061628 0%, #0d2a50 100%);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 70px 0;
}
.appt-cta h2 { font-size: clamp(28px, 3vw, 44px); }

/* ================================================================
   FORMS
================================================================ */
.form-control, .form-select {
    background: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    color: var(--text-white) !important;
    border-radius: var(--radius) !important;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}
.form-control::placeholder { color: var(--text-muted) !important; }
.form-control:focus, .form-select:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 0 3px rgba(0,200,224,0.12) !important;
    background: #0d1f35 !important;
}
.form-select option { background: var(--dark-card); color: var(--text-white); }
.form-label { font-size: 13px; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 6px; }

.btn-submit {
    background: var(--gradient-btn);
    color: #fff; border: none;
    padding: 13px 36px;
    border-radius: 50px; font-weight: 600;
    font-size: 15px; cursor: pointer;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.btn-whatsapp {
    background: #25d366;
    color: #fff; border: none;
    padding: 13px 36px;
    border-radius: 50px; font-weight: 600;
    font-size: 15px; cursor: pointer;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
}
.btn-whatsapp:hover { background: #1eb855; transform: translateY(-2px); color: #fff; }

/* ================================================================
   APPOINTMENT PAGE FORM
================================================================ */
.appointment-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.appt-info-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.appt-info-card .info-row {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--dark-border);
}
.appt-info-card .info-row:last-child { border-bottom: none; }
.appt-info-card .info-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(0,200,224,0.1);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--accent-cyan); font-size: 16px;
}

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-section { background: var(--dark-bg); }
.contact-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center; transition: var(--transition);
}
.contact-card:hover { border-color: var(--accent-cyan); transform: translateY(-4px); }
.contact-card .c-icon {
    width: 60px; height: 60px;
    background: var(--gradient-btn);
    border-radius: 16px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff;
}
.contact-card h6 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.contact-card p { font-size: 15px; font-weight: 600; margin: 0; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--dark-border); }
.map-wrapper iframe { width: 100%; height: 380px; border: none; display: block; }

/* ================================================================
   GALLERY PAGE
================================================================ */
.gallery-section { background: var(--dark-bg); }
.gallery-filter { margin-bottom: 32px; }
.filter-btn {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-muted);
    padding: 8px 20px; border-radius: 50px;
    font-size: 13px; cursor: pointer; transition: var(--transition);
    margin: 4px;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--accent-cyan); border-color: var(--accent-cyan);
    color: #fff;
}
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    cursor: pointer; margin-bottom: 20px;
}
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(5,16,31,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i { font-size: 28px; color: var(--accent-cyan); }

/* ================================================================
   BLOG PAGE
================================================================ */
.blog-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition); height: 100%;
}
.blog-card:hover { border-color: var(--accent-cyan); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; display: block; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .blog-body { padding: 20px; }
.blog-badge {
    background: rgba(0,200,224,0.1); color: var(--accent-cyan);
    font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px; display: inline-block; margin-bottom: 10px;
}
.blog-card h5 { font-size: 17px; margin-bottom: 10px; color: var(--text-white); transition: var(--transition); }
.blog-card:hover h5 { color: var(--accent-cyan); }
.blog-card p { font-size: 13.5px; color: var(--text-muted); }
.blog-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 14px; margin-top: 14px; }

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
    background: linear-gradient(135deg, #05101f 0%, #0d2040 100%);
    border-bottom: 1px solid var(--dark-border);
    padding: 70px 0 50px;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,224,0.08) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 54px); margin-bottom: 12px; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item { font-size: 13px; color: var(--text-muted); }
.breadcrumb-item a { color: var(--accent-cyan); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--dark-border); }

/* ================================================================
   TREATMENT / SERVICE DETAIL PAGE
================================================================ */
.detail-img { border-radius: var(--radius-lg); overflow: hidden; }
.detail-img img { width: 100%; height: 380px; object-fit: cover; }
.benefits-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--dark-border);
    font-size: 14px;
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list li i { color: var(--accent-cyan); font-size: 14px; }
.sidebar-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg); padding: 24px;
    margin-bottom: 20px;
}
.sidebar-card h6 { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 16px; }

/* ================================================================
   ABOUT PAGE
================================================================ */
.team-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition); text-align: center; padding-bottom: 24px;
}
.team-card:hover { border-color: var(--accent-cyan); transform: translateY(-4px); }
.team-card img { width: 100%; height: 260px; object-fit: cover; object-position: top; }
.team-card h5 { font-size: 18px; margin: 16px 16px 4px; }
.team-card p { font-size: 13px; color: var(--accent-cyan); margin: 0 16px; }
.cert-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--dark-card); border: 1px solid var(--dark-border);
    border-radius: var(--radius); padding: 14px 18px; margin: 6px;
    font-size: 13px;
}
.cert-badge i { color: var(--accent-gold); font-size: 18px; }

/* ================================================================
   FOOTER
================================================================ */
footer {
    background: #030b17;
    border-top: 1px solid var(--dark-border);
    padding: 70px 0 0;
}
.footer-brand { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text-white); }
.footer-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.8; margin: 14px 0 20px; }
.footer-social a {
    width: 36px; height: 36px; background: var(--dark-border);
    border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--text-muted); margin-right: 8px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent-cyan); color: #fff; }
.footer h6 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 13.5px; color: var(--text-muted);
    transition: var(--transition);
    display: flex; align-items: center; gap: 7px;
}
.footer-links a:hover { color: var(--accent-cyan); padding-left: 4px; }
.footer-links a i { font-size: 10px; color: var(--accent-cyan); }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px; font-size: 13.5px; color: var(--text-muted);
}
.footer-contact-item i { color: var(--accent-cyan); margin-top: 3px; min-width: 14px; }
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid var(--dark-border);
    padding: 18px 0; text-align: center;
    font-size: 13px; color: var(--text-muted);
}
.footer-bottom a { color: var(--accent-cyan); }
.footer-map { border-radius: var(--radius); overflow: hidden; margin-top: 16px; }
.footer-map iframe { width: 100%; height: 200px; border: none; display: block; filter: brightness(0.8) contrast(1.1); }

/* ================================================================
   WHATSAPP FLOATING BUTTON
================================================================ */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    text-decoration: none; transition: var(--transition);
    animation: pulse-wa 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); color: #fff; }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
}
.wa-float .wa-tooltip {
    position: absolute; right: 70px;
    background: #333; color: #fff;
    font-size: 13px; padding: 5px 12px; border-radius: 20px;
    white-space: nowrap; opacity: 0; pointer-events: none;
    transition: var(--transition);
    font-family: var(--font-body);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ================================================================
   SCROLL TO TOP
================================================================ */
.scroll-top {
    position: fixed; bottom: 28px; left: 28px;
    width: 44px; height: 44px; z-index: 998;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    color: var(--accent-cyan); font-size: 16px; cursor: pointer;
    transition: var(--transition);
}
.scroll-top:hover { background: var(--accent-cyan); color: #fff; border-color: var(--accent-cyan); }
.scroll-top.visible { display: flex; }

/* ================================================================
   ALERT / SUCCESS MESSAGES
================================================================ */
.alert-success-custom {
    background: rgba(0,200,224,0.1);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 14px;
}
.alert-error-custom {
    background: rgba(231,76,60,0.1);
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 14px;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 992px) {
    .hero-swiper { height: 70vh; }
    .hero-swiper .slide-content { padding: 0 30px; }
    .mega-dropdown .dropdown-menu { grid-template-columns: repeat(2, 1fr); }
    .stat-divider { display: none; }
}
@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero-swiper { height: 85vh; min-height: 500px; }
    .hero-swiper .slide-content { padding: 0 20px; max-width: 100%; }
    .hero-swiper h1 { font-size: 32px; }
    .hero-swiper p { font-size: 14px; }
    .hero-btns { flex-direction: column; }
    .appointment-wrapper { padding: 24px; }
    footer { padding: 50px 0 0; }
    .top-bar .d-none-sm { display: none; }
}
@media (max-width: 576px) {
    .hero-swiper { height: 90vh; }
    .stats-bar .stat-item { padding: 10px; }
    .stat-item .stat-num { font-size: 28px; }
    .wa-float { bottom: 20px; right: 20px; }
    .scroll-top { bottom: 20px; left: 20px; }
}
