/* ============================================================
   HealthO2.com - Custom CSS
   Colors: Primary #27AAE1, Dark Blue #066B95, Accent Teal #1cba9f
   Fonts: Exo (headings), Roboto (body)
   ============================================================ */

/* --- Root Variables --- */
:root {
    --primary: #27AAE1;
    --primary-dark: #066B95;
    --accent: #1cba9f;
    --dark: #1a1a2e;
    --text: #333333;
    --text-light: #666666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
}

/* --- Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* --- Buttons --- */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 170, 225, 0.3);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    padding: 10px 28px;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ============================================================
   HEADER
   ============================================================ */
.header-top {
    background: var(--dark);
    color: #ccc;
    padding: 8px 0;
    font-size: 13px;
}

.header-info {
    color: #ccc;
}

.header-info i {
    color: var(--primary);
    margin-right: 4px;
}

.header-social {
    color: #ccc;
    font-size: 14px;
}

.header-social:hover {
    color: var(--primary);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
}

.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 70px;
}

.logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 24px 16px;
    color: var(--dark);
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li:hover > a {
    color: var(--primary);
}

.nav-menu > li:hover {
    background: rgba(39, 170, 225, 0.06);
}

.nav-menu > li > a i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 0 0 10px 10px;
    border: none;
    border-top: 3px solid var(--primary);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    list-style: none;
    display: block;
}

.nav-menu > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f2f5;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    color: #3a3f47;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
}

.dropdown-menu li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.25s ease;
    flex-shrink: 0;
}

.dropdown-menu li a:hover {
    color: var(--primary);
    background: #f0f8fd;
    padding-left: 22px;
}

.dropdown-menu li a:hover::before {
    width: 12px;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 780px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 0 0 12px 12px;
    border-top: 3px solid var(--primary);
    padding: 22px 28px;
    display: flex;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    list-style: none;
}

.mega-menu-parent:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-col {
    list-style: none;
    flex: 1;
    padding: 0 10px;
    border-right: 1px solid #eef1f5;
}

.mega-col:last-child {
    border-right: none;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    color: #3a3f47;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.25s ease;
    border-radius: 6px;
}

.mega-col ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.2s ease;
    flex-shrink: 0;
}

.mega-col ul li a:hover {
    color: var(--primary);
    background: #f0f8fd;
}

.mega-col ul li a:hover::before {
    width: 10px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 50, 90, 0.93) 0%, rgba(6, 107, 149, 0.85) 40%, rgba(39, 170, 225, 0.55) 75%, rgba(60, 185, 230, 0.35) 100%);
}

.slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.slide-content {
    max-width: 550px;
    color: var(--white);
    text-align: left;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
}

.slide-image img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.slide-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.slide-title {
    font-family: 'Exo', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}

.slide-description {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.92;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.slide-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-slide-cta:hover {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-slide-cta i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-slide-cta:hover i {
    transform: translateX(4px);
}

.btn-slide-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-slide-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ============================================================
   WHAT WE DO - SERVICE PILLARS
   ============================================================ */
.pillars-wrapper {
    background: #072a45;
    padding: 50px 0;
}

.pillars-card {
    /* structural wrapper only */
}

.service-pillar {
    text-align: center;
    padding: 30px 20px;
    height: 100%;
}

.pillar-col + .pillar-col .service-pillar {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(39, 170, 225, 0.15);
    border: 2px solid rgba(39, 170, 225, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: #27AAE1;
    transition: all 0.3s ease;
}

.service-pillar:hover .pillar-icon {
    background-color: #27AAE1;
    border-color: #27AAE1;
    color: #ffffff;
}

.service-pillar h4 {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-pillar p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .pillar-col + .pillar-col .service-pillar {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 767px) {
    .pillars-wrapper {
        padding: 35px 0;
    }
    .service-pillar {
        padding: 24px 20px;
    }
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-cards {
    padding: 60px 0;
    background: var(--light-bg);
}

.feature-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.benefits-section .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefits-section img {
    border-radius: var(--radius);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #27AAE1 0%, #066B95 100%);
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.testimonial-section.testimonial-alt {
    background: var(--light-bg);
}

.testimonial-section.testimonial-alt::before {
    display: none;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

.testimonial-alt .testimonial-card {
    background: transparent;
    backdrop-filter: none;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 20px;
}

.testimonial-section .section-title {
    color: #fff;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-alt .testimonial-text {
    color: var(--text);
}

.testimonial-name {
    color: #fff;
    font-family: 'Exo', sans-serif;
}

.testimonial-alt .testimonial-name {
    color: var(--primary-dark);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.6);
}

.testimonial-alt .testimonial-avatar {
    border-color: var(--primary);
}

.testimonial-author .testimonial-name {
    margin: 0;
}

/* ============================================================
   CONTENT COLUMNS
   ============================================================ */
/* Content Sections (alternating image/text rows) */
.content-section {
    padding: 60px 0;
}

.content-section.bg-light-alt {
    background: var(--light-bg);
}

.content-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.content-section img {
    border-radius: 12px;
}

.content-section p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
}

.blog-date small {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
}

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

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--primary);
    margin-right: 4px;
}

.blog-card-body h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body h4 a {
    color: var(--dark);
}

.blog-card-body h4 a:hover {
    color: var(--primary);
}

.blog-card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Blog Single */
.blog-single-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-single-meta i {
    color: var(--primary);
    margin-right: 5px;
}

/* ============================================================
   SPECIALTIES
   ============================================================ */
.specialties-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef4f8 0%, #e2ecf3 100%);
}

.specialties-section .section-title {
    font-size: 1.6rem;
}

.specialties-section .see-experience-quote {
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    margin-top: 20px;
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.specialties-list {
    max-width: 700px;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 15px;
}

@media (max-width: 576px) {
    .specialties-list {
        grid-template-columns: 1fr;
    }
}

.specialty-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--text);
    transition: var(--transition);
    border-radius: 6px;
}

.specialty-item:last-child {
    border-bottom: none;
}

.specialty-item:hover {
    background: #fff;
    color: var(--primary);
    padding-left: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.specialty-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.specialty-name {
    flex: 1;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 0.93rem;
}

.specialty-item i {
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.specialty-item:hover i {
    opacity: 1;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-preview {
    padding: 80px 0;
    background: var(--light-bg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(39, 170, 225, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 2rem;
}

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

/* ============================================================
   CONTACT CTA
   ============================================================ */
/* CTA Buttons Bar */
.cta-bar {
    padding: 25px 0;
    background: #f0f4f8;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.btn-cta-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #fff;
    color: var(--text);
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-bar:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-cta-bar i {
    font-size: 0.8rem;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-phone i {
    font-size: 1.4rem;
    color: var(--primary);
}

.cta-phone-number {
    font-family: 'Exo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: var(--white);
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.appointment-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    border: 1px solid #eef1f5;
}

.appointment-form-card h3 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.appointment-form-card .form-label-sub {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: block;
}

.appointment-form-card .form-control {
    border: none;
    border-bottom: 1px solid #d0d7de;
    border-radius: 0;
    padding: 10px 2px;
    font-size: 0.9rem;
    background: transparent;
    transition: border-color 0.3s ease;
}

.appointment-form-card .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--primary);
}

.appointment-form-card textarea.form-control {
    border: 1px solid #d0d7de;
    border-radius: 6px;
    padding: 10px 12px;
    margin-top: 10px;
}

.appointment-form-card button[type="submit"] {
    border-radius: 6px;
    padding: 12px;
    font-weight: 600;
    margin-top: 10px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.newsletter-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter-form .form-control {
    border: none;
    padding: 12px 16px;
    border-radius: 4px 0 0 4px;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
    padding: 12px 24px;
    background: var(--accent);
    border-color: var(--accent);
}

.newsletter-form .btn:hover {
    background: var(--dark);
    border-color: var(--dark);
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 107, 149, 0.9) 0%, rgba(28, 186, 159, 0.8) 100%);
}

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

.page-banner h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 600px;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--light-bg);
    padding: 12px 0;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary);
}

.breadcrumbs .separator {
    color: var(--text-light);
    margin: 0 5px;
}

.breadcrumbs .current {
    color: var(--text-light);
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content {
    padding: 60px 0;
}

.page-content-title {
    font-family: 'Exo', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e2a3a;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-bottom: 0;
    border-bottom: none;
    line-height: 1.3;
}

.content-body p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-body .lead {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Content Body Tables */
.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 10px rgba(0,0,0,0.06);
}

.content-body table thead tr,
.content-body .table thead tr,
.content-body .table-responsive table thead tr {
    background: #1e3a5f !important;
    color: #fff !important;
    text-align: left;
}

.content-body table th,
.content-body .table th,
.content-body .table-responsive table th {
    padding: 15px 20px !important;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none !important;
    color: #fff !important;
    background: #1e3a5f !important;
}

.content-body table td,
.content-body .table td,
.content-body .table-responsive table td {
    padding: 13px 20px !important;
    border-bottom: 1px solid #e4e9f0 !important;
    border-left: none !important;
    border-right: none !important;
    color: var(--text);
    font-size: 0.94rem;
}

.content-body table tbody tr,
.content-body .table tbody tr,
.content-body .table-responsive table tbody tr {
    background: #fff !important;
    transition: background 0.2s ease;
}

.content-body table tbody tr:nth-child(even),
.content-body .table tbody tr:nth-child(even),
.content-body .table-responsive table tbody tr:nth-child(even) {
    background: #f0f5fa !important;
}

.content-body table tbody tr:hover,
.content-body .table tbody tr:hover,
.content-body .table-responsive table tbody tr:hover {
    background: #dceaf5 !important;
}

.content-body table tbody tr:last-child td,
.content-body .table tbody tr:last-child td {
    border-bottom: none !important;
}

/* Content Body Ordered Lists */
.content-body ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.content-body ol > li {
    counter-increment: item;
    position: relative;
    padding-left: 40px;
    margin-bottom: 14px;
    line-height: 1.7;
}

.content-body ol > li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 1px;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo', sans-serif;
}

.content-body ol > li strong {
    color: var(--primary-dark);
}

/* Content Body Unordered Lists */
.content-body ul {
    list-style: none;
    padding-left: 0;
}

.content-body ul > li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-body ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Content Body Headings Improvements */
.content-body h2 {
    font-size: 1.8rem;
    margin: 35px 0 18px;
    color: var(--primary-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid #eef1f5;
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body h3 {
    font-size: 1.35rem;
    margin: 28px 0 14px;
    color: var(--primary-dark);
    position: relative;
    padding-left: 16px;
}

.content-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: var(--primary);
    border-radius: 2px;
}

.content-body h4 {
    font-size: 1.1rem;
    margin: 22px 0 10px;
    color: var(--dark);
}

/* Content Body Images */
.content-body img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

/* Content Body Blockquotes / Notes */
.content-body p strong:first-child {
    color: var(--primary-dark);
}

/* Conditions Page - Image + List Layout */
.content-body .conditions-heading {
    font-family: 'Exo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: none;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.content-body .conditions-heading-dark {
    color: #1a1a2e;
}

.content-body .conditions-list {
    list-style: none;
    padding-left: 0;
}

.content-body .conditions-list > li {
    position: relative;
    padding: 1px 0 1px 16px;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.93rem;
}

.content-body .conditions-list > li::before {
    content: '-';
    position: absolute;
    left: 0;
    top: 4px;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: var(--text);
    font-weight: 400;
}

/* Benefits 25 - 3 Column List */
.benefits-25 ol {
    list-style: decimal;
    counter-reset: none;
    padding-left: 22px;
}

.benefits-25 ol > li {
    padding-left: 6px;
    margin-bottom: 8px;
    font-size: 0.93rem;
}

.benefits-25 ol > li::before {
    display: none;
}

/* Conditions Grid - 3 Column */
.conditions-grid {
    background: #1e3a5f;
    border-radius: 12px;
    padding: 30px 35px;
    margin-top: 15px;
}

.conditions-grid ul {
    column-count: 3;
    column-gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.conditions-grid ul li {
    padding: 7px 10px 7px 12px;
    position: relative;
    font-size: 0.88rem;
    break-inside: avoid;
    line-height: 1.5;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-radius: 5px;
    margin-bottom: 6px;
    transition: background 0.2s ease;
}

.conditions-grid ul li:hover {
    background: rgba(39, 170, 225, 0.3);
}

.conditions-grid ul li::before {
    display: none;
}

@media (max-width: 768px) {
    .conditions-grid ul {
        column-count: 2;
    }
    .conditions-grid {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .conditions-grid ul {
        column-count: 1;
    }
}

/* Table Responsive Wrapper */
.content-body .table-responsive {
    border-radius: var(--radius);
    overflow: hidden;
    margin: 25px 0;
    box-shadow: 0 1px 10px rgba(0,0,0,0.06);
}

.content-body .table-responsive table {
    margin: 0;
    box-shadow: none;
}

/* ============================================================
   CHAMBERS PAGE
   ============================================================ */

/* Overview Cards */
.chambers-overview {
    padding: 50px 0 30px;
    background: #f0f6fb;
}

.chamber-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    border: 1px solid #d6e4ef;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.chamber-card-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.chamber-card-title {
    font-family: 'Exo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.chamber-card-title sub {
    font-size: 0.7em;
    color: var(--primary);
}

.chamber-card-title span {
    font-weight: 400;
    font-size: 0.85em;
    color: var(--text-light);
}

.chamber-card-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.chamber-card-btn {
    display: inline-block;
    border-radius: 25px;
    padding: 8px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    transition: all 0.2s;
}

.chamber-card-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Description */
.chambers-description {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #27AAE1 50%, #1cba9f 100%);
    color: #fff;
}

.chambers-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
}

.chambers-description sub {
    color: rgba(255, 255, 255, 0.95);
}

/* Detail Sections */
.chamber-detail {
    padding: 50px 0;
    background: #f5f7fa;
}

.chamber-detail + .chamber-detail {
    border-top: 1px solid #e0e6ec;
}

/* ============================================================
   CHAMBER DETAIL PAGE (Monoplace / Multiplace)
   ============================================================ */
.cdp-section {
    padding: 50px 0 60px;
    background: #fff;
}

.cdp-main-img {
    margin-bottom: 15px;
    text-align: center;
}

.cdp-main-img img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 0;
}

.cdp-thumbs-track {
    overflow: hidden;
    position: relative;
}

.cdp-thumbs-slider {
    display: flex;
    gap: 12px;
    transition: transform 0.5s ease;
}

.cdp-thumb {
    min-width: calc(25% - 9px);
    max-width: calc(25% - 9px);
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    background: #fff;
    opacity: 0.85;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.cdp-thumb:hover,
.cdp-thumb.active {
    opacity: 1;
    box-shadow: 0 4px 15px rgba(39, 170, 225, 0.3);
}

.cdp-title {
    font-family: 'Exo', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cdp-title sub {
    font-size: 0.65em;
}

.cdp-sizes {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.cdp-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}

.cdp-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 22px;
}

.cdp-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 28px;
}

.cdp-features li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    line-height: 1.5;
    font-size: 0.9rem;
    color: var(--text);
}

.cdp-features li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--text);
}

.cdp-cta {
    display: inline-block;
    background: #e6364e;
    color: #fff;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    transition: background 0.2s;
}

.cdp-cta:hover {
    background: #c92a3f;
    color: #fff;
}

/* FAQ Accordion */
.accordion-button {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.15rem rgba(39, 170, 225, 0.25);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-list {
    margin-top: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 3px;
}

.contact-info-item h6 {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-info-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* ============================================================
   FOOTER NEWSLETTER BAR
   ============================================================ */
.footer-newsletter-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 40px 0;
}

.newsletter-bar-title {
    color: var(--white);
    font-family: 'Exo', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.newsletter-bar-form .input-group {
    max-width: 500px;
    margin-left: auto;
}

.newsletter-bar-form .form-control {
    border: none;
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: 4px 0 0 4px;
    background: var(--white);
}

.newsletter-bar-form .form-control:focus {
    box-shadow: none;
}

.newsletter-bar-form .btn {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.newsletter-bar-form .btn:hover {
    background: #111;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #f4f7fa;
    color: #4a5568;
    padding: 50px 0 0;
    border-top: 1px solid #e2e8f0;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
}

.footer-logo-text {
    font-family: 'Exo', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.footer-logo-text sub {
    font-size: 1.2rem;
    color: var(--primary);
}

.footer-description {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #5a6577;
    margin-bottom: 18px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a5568;
    color: #8a9bae;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 2px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a9bae;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-heading {
    color: #1e2a3a;
    font-family: 'Exo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links li {
    margin-bottom: 7px;
}

.footer-links a {
    color: #5a6577;
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.footer-map iframe {
    display: block;
}

/* Copyright Bar */
.footer-copyright {
    background: #eaeef3;
    padding: 15px 0;
    margin-top: 35px;
    border-top: 1px solid #dde3ea;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #5a6577;
}

.footer-copyright-social {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.footer-copyright-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-copyright-social a:hover {
    background: var(--accent);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(39, 170, 225, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.8;
    transition: var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.preloader-text {
    margin-top: 15px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1240px) {
    .nav-menu > li > a {
        padding: 24px 12px;
        font-size: 13px;
    }

    .mega-menu {
        min-width: 600px;
    }
}

@media (max-width: 1024px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        overflow-y: auto;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li > a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .dropdown-menu,
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        min-width: auto;
        padding-left: 15px;
    }

    .mega-menu {
        flex-direction: column;
    }

    .has-dropdown.open > .dropdown-menu,
    .mega-menu-parent.open > .mega-menu {
        display: block;
    }

    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .slide-image {
        display: none;
    }

    .slide-content {
        max-width: 700px;
    }

    .slide-title {
        font-size: 2.4rem;
    }

    .slide-description {
        font-size: 1.05rem;
    }

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

@media (max-width: 768px) {
    .hero-slider {
        height: 65vh;
        min-height: 400px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .slide-description {
        font-size: 0.95rem;
    }

    .btn-slide-cta,
    .btn-slide-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-banner {
        height: 220px;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }

    .newsletter-bar-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .newsletter-bar-form .input-group {
        margin-left: 0;
    }

    .footer-copyright-social {
        justify-content: flex-start;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }

    .slide-title {
        font-size: 1.4rem;
    }

    .slide-badge {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .slide-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .page-banner h1 {
        font-size: 1.5rem;
    }

    .appointment-form-card,
    .contact-form-card {
        padding: 25px 20px;
    }

    .footer-newsletter-bar {
        padding: 25px 0;
    }

    .newsletter-bar-title {
        font-size: 1.1rem;
    }
}

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

.doctors-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.dept-filter-btn {
    border-radius: 30px;
    padding: 6px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dept-filter-btn.active {
    background-color: #27AAE1;
    border-color: #27AAE1;
    color: #fff;
}

.doctor-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.doctor-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card-body {
    padding: 20px 15px;
}

.doctor-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.doctor-card-body h4 a {
    color: #1e2a3a;
    text-decoration: none;
}

.doctor-card-body h4 a:hover {
    color: #27AAE1;
}

.doctor-specialty {
    color: #27AAE1;
    font-size: 0.9rem;
    margin: 0;
}

/* Doctor Profile Page */
.doctor-profile-section {
    padding: 60px 0;
}

.doctor-profile-image img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.doctor-profile-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.doctor-profile-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.doctor-profile-details h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1e2a3a;
}

.doctor-profile-details h4 {
    color: #27AAE1;
    margin-top: 15px;
}

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

.doctor-info-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* ============================================================
   INSURANCE PAGES
   ============================================================ */

.insurance-providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.insurance-providers-list a {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f4f8;
    border-radius: 20px;
    color: #1e2a3a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.insurance-providers-list a:hover,
.insurance-providers-list a.active {
    background: #27AAE1;
    color: #fff;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */

.card-header.bg-primary {
    background-color: #27AAE1 !important;
}

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

@media (max-width: 768px) {
    .doctor-card-image {
        height: 200px;
    }

    .doctors-filter {
        gap: 5px;
    }

    .dept-filter-btn {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .doctor-profile-section .row {
        flex-direction: column;
    }
}
