/* Font display swap — shows system font instantly while Poppins loads */
@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

/* Variables */
:root {
    --primary: #2f8f5b;
    --logo-green: #2f8f5b;
    --header-ivory: #f8f6ea;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #1a4d2e;
    --white: #ffffff;
    --body-bg: #ffffff;
    --body-color: #374151;
}

/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--body-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Global section lightening */
section { background-color: #ffffff; }
section.bg-light, .bg-light { background-color: #f6fdf9 !important; }

/* =============================================
   NAVBAR — Revamped
   ============================================= */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 0;
    background: linear-gradient(135deg, #0a2416 0%, #0f3520 60%, #0a2416 100%);
    border-bottom: 1px solid rgba(79, 209, 138, 0.15);
    transition: all 0.35s ease;
    /* top accent line */
    box-shadow: inset 0 3px 0 0 #2f8f5b;
}

.site-navbar.navbar-scrolled {
    background: rgba(10, 36, 22, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 3px 0 0 #2f8f5b, 0 4px 20px rgba(0,0,0,0.35);
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0;
    text-decoration: none;
}
.navbar-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(47,200,120,0.3));
    transition: filter 0.3s;
}
.site-navbar.navbar-scrolled .navbar-logo { height: 56px; }
.navbar-brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: #e8f5ee;
    letter-spacing: -0.01em;
    line-height: 1;
}
.brand-accent { color: #4dd98a; }

/* Nav links */
.site-nav-link {
    color: rgba(232, 245, 238, 0.85) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.55rem 0.85rem !important;
    border-radius: 6px;
    transition: all 0.25s ease;
    position: relative;
}
.site-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: #4dd98a;
    border-radius: 2px;
    transition: left 0.25s, right 0.25s;
}
.site-nav-link:hover,
.site-nav-link.active {
    color: #ffffff !important;
    background: rgba(79, 209, 138, 0.1) !important;
}
.site-nav-link:hover::after,
.site-nav-link.active::after {
    left: 12px; right: 12px;
}

/* Book Now button */
.navbar-book-btn {
    background: linear-gradient(135deg, #2f8f5b, #1e6b42);
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    border: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 3px 14px rgba(47,143,91,0.4);
}
.navbar-book-btn:hover {
    background: linear-gradient(135deg, #37a66b, #2f8f5b);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47,143,91,0.5);
}

/* Custom hamburger */
.site-toggler {
    border: none;
    background: transparent;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #4dd98a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-logo { height: 56px; }
    .site-navbar.navbar-scrolled .navbar-logo { height: 48px; }
    .navbar-brand-text { font-size: 1.15rem; }
    .navbar-collapse {
        background: #0a2416;
        border-top: 1px solid rgba(79,209,138,0.15);
        padding: 1rem;
        margin-top: 0.25rem;
    }
    .site-nav-link { padding: 0.7rem 1rem !important; }
    .navbar-book-btn { margin: 0.5rem 0; display: block; text-align: center; }
}

/* Dropdown */
.navbar .dropdown-menu {
    background: #0f3520;
    border: 1px solid rgba(79,209,138,0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    border-radius: 8px;
    padding: 0.5rem 0;
}
.navbar .dropdown-item {
    color: rgba(232,245,238,0.85);
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.navbar .dropdown-item:hover {
    background: rgba(79,209,138,0.12);
    color: #fff;
}

/* Social dropdown */
.social-dropdown .fa-whatsapp  { color: #25D366; }
.social-dropdown .fa-facebook  { color: #1877F2; }
.social-dropdown .fa-instagram { color: #E4405F; }
.social-dropdown .fa-twitter   { color: #1DA1F2; }
.social-dropdown .fa-tiktok    { color: #aaa; }

/* Header and Title Styles */
h1, h2, h3, h4, h5, h6 {
    color: #1a4d2e;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #1a4d2e;
    position: relative;
    padding-bottom: 0.5rem;
}

h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #2f8f5b;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #87CEEB;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #0f2433 url("../img/why-choose-us.jpg") center/cover no-repeat;
}

.hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

/* Book Appointment Button */
.btn-book-appointment {
    background-color: #00a0dc;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book-appointment:hover {
    background-color: #0082b3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Main content sections */
.section {
    padding: 5rem 0;
}

/* Appointment Form Styling */
.appointment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.appointment-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.appointment-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #2c6cff, #1a56ff);
}

.appointment-form-wrapper h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.appointment-form .form-label {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.appointment-form .form-control,
.appointment-form .form-select {
    border: 2px solid #e9ecef;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    border-color: #2c6cff;
    box-shadow: 0 0 0 0.2rem rgba(44, 108, 255, 0.15);
}

.appointment-form .form-text {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.appointment-form .alert-info {
    background-color: rgba(44, 108, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: #2c3e50;
}

.appointment-form .alert-info ul {
    padding-left: 1.2rem;
}

.appointment-form .btn-submit {
    background: linear-gradient(to right, #2c6cff, #1a56ff);
    color: white;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 108, 255, 0.2);
}

.appointment-form .btn-submit:hover {
    background: linear-gradient(to right, #1a56ff, #0040ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 108, 255, 0.3);
}

.appointment-form .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(44, 108, 255, 0.2);
}

/* Form sections */
.form-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-section-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-section-title i {
    margin-right: 0.5rem;
    color: #2c6cff;
}

/* Medical aid section */
#medical-aid-fields {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

/* Time and Date Input Styling */
.appointment-form input[type="date"],
.appointment-form input[type="time"] {
    min-height: 45px;
}

/* Notes Textarea Styling */
.appointment-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Group Spacing */
.appointment-form .mb-3 {
    margin-bottom: 1.5rem !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .appointment-form-wrapper {
        padding: 25px;
    }
    
    .appointment-form .btn-primary {
        width: 100%;
    }
}

/* =============================================
   HERO EXTRAS
   ============================================= */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(79,209,138,0.18);
    border: 1px solid rgba(79,209,138,0.4);
    color: #4dd98a;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero-title { text-shadow: 0 2px 18px rgba(0,0,0,0.4); line-height: 1.15; }
.hero-accent { color: #4dd98a; }
.hero-sub { max-width: 520px; opacity: 0.9; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    border-left: 3px solid #2f8f5b;
    padding-left: 0.75rem;
}
.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #4dd98a;
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.15rem;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0 3.5rem;
    min-height: 260px;
    display: flex;
    align-items: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,36,22,0.72) 0%, rgba(15,53,32,0.60) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb-dark {
    background: transparent;
    margin-top: 0.75rem;
}
.breadcrumb-dark .breadcrumb-item a { color: #4dd98a; text-decoration: none; }
.breadcrumb-dark .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* =============================================
   SERVICE CARDS — Revamped
   ============================================= */
.services-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(47,143,91,0.15);
}
.service-card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.service-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-card-img-wrap img { transform: scale(1.06); }
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,36,22,0.55) 100%);
}
.service-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 0.5rem;
}
.service-card-body p {
    font-size: 0.88rem;
    color: #4b6258;
    flex: 1;
    line-height: 1.6;
}
.service-price {
    font-size: 1rem;
    color: #2f8f5b;
    font-weight: 700;
    margin-top: 0.5rem;
}
.btn-service-book {
    background: #0a2416;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    align-self: flex-start;
}
.btn-service-book:hover {
    background: #2f8f5b;
    color: #fff;
    transform: translateX(4px);
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #0a2416, #1a4d2e);
    color: #fff;
}
.cta-section h2 { color: #fff; }

/* =============================================
   WHATSAPP CHATBOT WIDGET
   ============================================= */
.wa-chatbot {
    position: fixed;
    bottom: 1.75rem;
    left: 1.5rem;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}
.wa-chatbot-popup {
    display: none;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    width: 300px;
    overflow: hidden;
    animation: waPopIn 0.3s ease;
}
@keyframes waPopIn {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-chatbot-header {
    background: #075e54;
    color: #fff;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.wa-chatbot-avatar {
    width: 40px; height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.wa-chatbot-name { font-weight: 700; font-size: 0.95rem; }
.wa-chatbot-status { font-size: 0.75rem; opacity: 0.85; display: flex; align-items: center; gap: 0.35rem; }
.wa-dot { width: 8px; height: 8px; background: #4dd98a; border-radius: 50%; display: inline-block; }
.wa-chatbot-close {
    background: transparent; border: none; color: rgba(255,255,255,0.7);
    margin-left: auto; cursor: pointer; font-size: 0.85rem; padding: 0.2rem;
    transition: color 0.2s;
}
.wa-chatbot-close:hover { color: #fff; }
.wa-chatbot-body { padding: 1rem; background: #e5ddd5; }
.wa-chatbot-msg {
    background: #fff;
    border-radius: 0 10px 10px 10px;
    padding: 0.75rem 1rem;
    font-size: 0.87rem;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    max-width: 90%;
}
.wa-chatbot-msg p { margin: 0 0 0.35rem; }
.wa-chatbot-msg p:last-child { margin: 0; }
.wa-chatbot-action {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}
.wa-chatbot-action:hover { background: #1da851; color: #fff; }
.wa-chatbot-btn {
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    transition: all 0.3s;
    position: relative;
}
.wa-chatbot-btn:hover {
    background: #1da851;
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37,211,102,0.55);
}
.wa-chatbot-badge {
    position: absolute;
    top: -3px; right: -3px;
    background: #e53e3e;
    color: #fff;
    width: 20px; height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
}
@media (max-width: 480px) {
    .wa-chatbot-popup { width: 265px; }
    .wa-chatbot { left: 1rem; bottom: 1.25rem; }
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Why Choose Us Video */
.why-us-video {
    position: relative;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: var(--info);
    color: var(--white);
}

.video-play-btn i {
    margin-left: 4px;
}

/* Blog */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .content {
    padding: 20px;
}

.blog-card .meta {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-info-card,
.hours-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-info-card:hover,
.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.contact-details i {
    width: 25px;
    color: var(--primary);
}

.hours-list li {
    font-size: 1.1rem;
    color: #555;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.badge {
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
}

.map-section {
    padding: 60px 0;
    background-color: #fff;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info-card,
    .hours-card {
        margin-bottom: 2rem;
    }
    
    .map-section {
        padding: 40px 0;
    }
}

.medical-aids-grid .row {
    margin: 0 -0.25rem;
}

.medical-aids-grid .col-6 {
    padding: 0.25rem;
}

.medical-aids .badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.medical-aids .badge:hover {
    background-color: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.medical-aids .badge i {
    font-size: 0.8rem;
}

.medical-aid-info {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.medical-aid-info h5 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.medical-aid-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    height: 100%;
    min-height: 160px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.medical-aid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.1);
}

.medical-aid-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.medical-aid-card p {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .medical-aid-info {
        padding: 2rem 1.5rem;
    }
    
    .medical-aid-info h5 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .medical-aid-card {
        padding: 2rem 1rem;
        min-height: 140px;
    }
    
    .medical-aid-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .medical-aid-card p {
        font-size: 1.1rem;
    }
}

/* =============================================
   FOOTER — Revamped
   ============================================= */

/* Main footer body */
.site-footer {
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #2f8f5b;  /* clean brand accent — no wave mismatch */
}

.footer-main {
    background-color: #1a3329;
    padding: 3.5rem 0 2.5rem;
    color: #c8ddd4;
}

/* Ensure all footer columns top-align consistently */
.footer-main .row { align-items: flex-start; }
.footer-main [class*="col-"] { display: flex; flex-direction: column; }

/* Brand column */
.footer-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #9bbfb0;
    line-height: 1.6;
    max-width: 220px;
    margin-bottom: 0;
}

.footer-cta-btn {
    background: #2f8f5b;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.footer-cta-btn:hover {
    background: #26784d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(47,143,91,0.35);
}

/* Section headings */
.footer-heading {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.4rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #2f8f5b;
    display: inline-block;
}

/* Quick links */
.footer-links {
    margin: 0;
    padding: 0;
}
.footer-links li {
    margin-bottom: 0.55rem;
}
.footer-links a {
    color: #9bbfb0;
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}
.footer-links a i {
    font-size: 0.6rem;
    color: #2f8f5b;
    transition: transform 0.25s ease;
}
.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}
.footer-links a:hover i {
    transform: translateX(3px);
}

/* Contact list */
.footer-contact-list {
    margin: 0;
    padding: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
    color: #9bbfb0;
    line-height: 1.5;
}
.footer-contact-list a {
    color: #9bbfb0;
    text-decoration: none;
    transition: color 0.25s;
}
.footer-contact-list a:hover {
    color: #ffffff;
}
.fc-icon {
    flex: 0 0 18px;
    width: 18px;
    text-align: center;
    color: #2f8f5b;
    margin-top: 0.15rem;
    font-size: 0.9rem;
}
.fc-hours .hours-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}
.fc-hours .hours-day {
    min-width: 130px;
    font-weight: 500;
    color: #c8ddd4;
}
.fc-hours .hours-time {
    color: #9bbfb0;
}

/* Medical aids grid */
.footer-aids-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
}
.footer-aid-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(47, 143, 91, 0.12);
    border: 1px solid rgba(47, 143, 91, 0.25);
    border-radius: 8px;
    color: #c8ddd4;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.5rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-aid-chip i {
    color: #2f8f5b;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.footer-aid-chip:hover {
    background: rgba(47, 143, 91, 0.25);
    border-color: #2f8f5b;
    color: #ffffff;
}

/* Footer inline WhatsApp links */
.fc-wa-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    font-size: 0.65rem;
    margin-left: 0.4rem;
    vertical-align: middle;
    transition: transform 0.2s;
}
.fc-wa-link:hover { transform: scale(1.15); }
.fc-chatbot-link {
    color: #4dd98a !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}
.fc-chatbot-link:hover { color: #fff !important; }

/* Bottom bar */
.footer-bottom {
    background-color: #112219;
    padding: 1rem 0;
    border-top: 1px solid rgba(47, 143, 91, 0.2);
}
.footer-copy {
    color: #6b9980;
    font-size: 0.82rem;
}
.footer-dev {
    color: #6b9980;
    font-size: 0.82rem;
}
.footer-dev-link {
    color: #2f8f5b;
    text-decoration: none;
    font-weight: 600;
}
.footer-dev-link:hover {
    color: #4db87a;
}

/* Footer social icons */
.footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.fs-whatsapp  { background: #25D366; }
.fs-facebook  { background: #1877F2; }
.fs-instagram { background: linear-gradient(45deg,#405DE6,#833AB4,#C13584,#FD1D1D); }
.fs-twitter   { background: #1DA1F2; }
.fs-tiktok    { background: #010101; }

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2f8f5b;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #26784d;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Footer responsive */
@media (max-width: 991.98px) {
    .footer-aids-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767.98px) {
    .footer-main { padding: 2.5rem 0 2rem; }
    .footer-tagline { max-width: 100%; }
    .footer-aids-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-socials { justify-content: center; }
    .footer-copy, .footer-dev { text-align: center; }
}
@media (max-width: 575.98px) {
    .footer-aids-grid { grid-template-columns: repeat(2, 1fr); }
    .fc-hours .hours-day { min-width: 0; }
}

/* Floating Social Bar */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-social .social-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-social .social-icon:hover {
    transform: translateX(-5px);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}

.floating-social .social-icon.whatsapp { background-color: #25D366; }
.floating-social .social-icon.facebook { background-color: #1877F2; }
.floating-social .social-icon.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.floating-social .social-icon.twitter { background-color: #1DA1F2; }
.floating-social .social-icon.tiktok { background-color: #000000; }

/* Trust Indicators */
.trust-indicators .badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-social {
        display: none;
    }
    
    .footer h4 {
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Utilities */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
}

/* Flash Messages */
.alert {
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 15px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .appointment-form {
        padding: 20px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .service-card, .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
}

/* Video Modal */
.modal-content {
    background: transparent;
    border: none;
}

.modal-body {
    padding: 0;
    background: var(--dark);
    border-radius: 8px;
    overflow: hidden;
}

.btn-close {
    background-color: var(--white);
    opacity: 0.8;
    border-radius: 50%;
    padding: 0.5rem;
    z-index: 1;
}

.btn-close:hover {
    opacity: 1;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

.social-icon.whatsapp { background-color: #25D366; }
.social-icon.facebook { background-color: #1877F2; }
.social-icon.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.social-icon.twitter { background-color: #1DA1F2; }
.social-icon.tiktok { background-color: #000000; }

/* (old footer chip/alignment rules consolidated into revamped footer section above) */

/* Social Dropdown Menu */
.social-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.social-dropdown .dropdown-item:hover {
    background-color: var(--light);
    transform: translateX(5px);
}

.social-dropdown .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* About Page Styles */
.about-section .display-4 {
    color: #333;
    font-weight: 600;
}

.about-section .lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-section .card {
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.about-section .card:hover {
    transform: translateY(-5px);
}

.about-section .card-title {
    color: #333;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.about-highlights {
    display: grid;
    gap: 0.5rem;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.hours-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.about-section .hours-row .hours-day {
    font-weight: 500;
    min-width: 150px;
}

.service-item, .payment-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 160, 220, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover, .payment-item:hover {
    background: rgba(0, 160, 220, 0.1);
    transform: translateX(5px);
}

.service-item i, .payment-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    flex: 0 0 24px;
}

.service-item span, .payment-item span {
    font-size: 0.95rem;
    color: #444;
}

@media (max-width: 576px) {
    .about-section .hours-row {
        flex-direction: column;
        gap: 0.2rem;
    }

    .about-section .hours-row .hours-day {
        min-width: 0;
    }
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: #fff; }
.hiw-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 1.75rem;
    box-shadow: 0 4px 24px rgba(47,143,91,0.08);
    border: 1px solid rgba(47,143,91,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.hiw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(47,143,91,0.15);
}
.hiw-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #2f8f5b, #1a4d2e);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 14px rgba(47,143,91,0.35);
}
.hiw-step {
    font-size: 0.72rem;
    font-weight: 800;
    color: #2f8f5b;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.hiw-card h4 { font-size: 1.1rem; color: #1a4d2e; margin-bottom: 0.5rem; }
.hiw-card p  { font-size: 0.88rem; color: #5a7a6a; margin: 0; }

/* =============================================
   WHY CHOOSE US — Cards
   ============================================= */
.why-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    box-shadow: 0 3px 18px rgba(0,0,0,0.06);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}
.why-card:hover {
    border-bottom-color: #2f8f5b;
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(47,143,91,0.12);
}
.why-icon {
    width: 56px; height: 56px;
    background: #f0faf4;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: #2f8f5b;
    transition: all 0.3s;
}
.why-card:hover .why-icon {
    background: #2f8f5b;
    color: #fff;
}
.why-card h5 { font-size: 1rem; color: #1a4d2e; margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.85rem; color: #5a7a6a; margin: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: #fff; }
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border-top: 4px solid #2f8f5b;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(47,143,91,0.12);
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.testimonial-card > p {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #2f8f5b, #1a4d2e);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.92rem; color: #1a4d2e; }
.testimonial-author span  { font-size: 0.78rem; color: #9ca3af; }

/* =============================================
   MEDICAL AIDS STRIP (homepage)
   ============================================= */
.aids-strip { background: #f6fdf9; }
.aids-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}
.aid-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 50px;
    color: #1a4d2e;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    transition: all 0.25s;
    box-shadow: 0 1px 4px rgba(47,143,91,0.08);
}
.aid-chip i { color: #2f8f5b; font-size: 0.75rem; }
.aid-chip:hover {
    background: #2f8f5b;
    color: #fff;
    border-color: #2f8f5b;
    transform: translateY(-2px);
}
.aid-chip:hover i { color: #fff; }

/* =============================================
   ABOUT PAGE — New Sections
   ============================================= */
.about-label {
    display: inline-block;
    background: #e8f5ee;
    color: #2f8f5b;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

/* Stats section */
.stats-section {
    background: linear-gradient(135deg, #0a2416, #1a4d2e);
}
.stat-box { padding: 1.5rem 1rem; }
.stat-box-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: #4dd98a;
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-box-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Mission / Vision cards */
.mv-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(47,143,91,0.08);
    border-bottom: 3px solid #2f8f5b;
    transition: transform 0.3s, box-shadow 0.3s;
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(47,143,91,0.14);
}
.mv-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #2f8f5b, #1a4d2e);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 4px 14px rgba(47,143,91,0.3);
}
.mv-card h4 { font-size: 1.1rem; color: #1a4d2e; margin-bottom: 0.75rem; }
.mv-card p  { font-size: 0.88rem; color: #5a7a6a; margin: 0; }

/* Info panels (hours + payment) */
.info-panel {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.info-panel-title {
    color: #1a4d2e;
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e8f5ee;
    margin-bottom: 0;
}

/* Mini aids grid (about page) */
.aids-mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.aid-mini-chip {
    display: inline-block;
    background: #f0faf4;
    border: 1px solid #d1fae5;
    color: #1a4d2e;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
}

/* =============================================
   FEATURE CARDS (why choose us legacy)
   ============================================= */
.feature-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8fffe;
    border: 1px solid #e8f5ee;
    transition: all 0.3s;
}
.feature-card:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(47,143,91,0.1);
    transform: translateY(-3px);
}