/*
 * Jyoti Eye Hospital - Premium CSS Stylesheet
 * Brand colors:
 *   - Primary Blue: #0F3D5E
 *   - Trust Navy: #123C69
 *   - Medical Teal: #00A7B5
 *   - Warm Orange: #F97316 (CTA only)
 * Fonts:
 *   - Headings: Outfit
 *   - Body/UI: Plus Jakarta Sans
 */

:root {
    --primary-color: #0F3D5E;
    --primary-rgb: 15, 61, 94;
    --secondary-color: #123C69;
    --secondary-rgb: 18, 60, 105;
    --accent-color: #00A7B5;
    --accent-rgb: 0, 167, 181;
    --cta-color: #F97316;
    --cta-hover: #EA580C;
    --bg-light: #F8FAFC;
    --text-dark: #0F172A;
    --text-medium: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --white: #FFFFFF;
    --card-shadow: 0 10px 30px -10px rgba(15, 61, 94, 0.08);
    --hover-shadow: 0 20px 40px -15px rgba(15, 61, 94, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* Typography Utilities */
.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-justify {
    text-align: justify;
}

/* Custom Buttons (CTAs) */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px -3px rgba(15, 61, 94, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(15, 61, 94, 0.4);
}

.btn-accent-custom {
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px -3px rgba(0, 167, 181, 0.3);
}

.btn-accent-custom:hover {
    background-color: var(--white);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(0, 167, 181, 0.4);
}

.btn-cta-orange {
    background-color: var(--cta-color);
    color: var(--white);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px -5px rgba(249, 115, 22, 0.4);
}

.btn-cta-orange:hover {
    background-color: var(--cta-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.5);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(15, 61, 94, 0.3);
}

/* Header & Top Bar Layout */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 13.5px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar i {
    color: var(--accent-color);
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.85);
    margin-left: 15px;
}

.top-bar-socials a:hover {
    color: var(--accent-color);
}

/* Main Premium Navbar */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-navbar {
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(15, 61, 94, 0.03);
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled .main-navbar {
    padding: 8px 0;
    box-shadow: 0 10px 30px -10px rgba(15, 61, 94, 0.1);
}

.navbar-brand img {
    height: 52px;
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled .navbar-brand img {
    height: 44px;
}

.nav-link-custom {
    color: var(--secondary-color) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15.5px;
    padding: 8px 16px !important;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 2.5px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
    border-radius: 1px;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: calc(100% - 32px);
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--accent-color) !important;
}

/* Custom Dropdown Styling */
.dropdown-menu-custom {
    border: none;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0 15px 40px rgba(15, 61, 94, 0.12);
    padding: 12px 0;
    margin-top: 15px !important;
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.dropdown-item-custom {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 24px;
    transition: var(--transition-smooth);
}

.dropdown-item-custom:hover {
    background-color: rgba(0, 167, 181, 0.06);
    color: var(--accent-color);
    padding-left: 28px;
}

.dropdown-item-custom.active, 
.dropdown-item-custom:active {
    background-color: var(--accent-color);
    color: var(--white);
}

.nav-appointment-btn {
    margin-left: 15px;
}

@media (max-width: 991px) {
    .nav-appointment-btn {
        margin-left: 0;
        margin-top: 15px;
    }
    .dropdown-menu-custom {
        display: none;
        box-shadow: none;
        background-color: rgba(15, 61, 94, 0.03);
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0 !important;
        border-left: 3px solid var(--accent-color);
        border-radius: 0;
    }
    .dropdown:hover .dropdown-menu-custom,
    .dropdown.show .dropdown-menu-custom {
        display: block;
    }
}

/* Hero Carousel Section */
.hero-slider-section {
    position: relative;
    background-color: var(--primary-color);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 620px;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 520px;
    }
}

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

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 61, 94, 0.92) 0%, rgba(18, 60, 105, 0.8) 50%, rgba(0, 167, 181, 0.2) 100%);
    z-index: 3;
}

.hero-content-wrapper {
    position: relative;
    height: 100%;
    z-index: 4;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 680px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.hero-slide.active .hero-desc {
    opacity: 1;
    transform: translateY(0);
}

.hero-btns {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.hero-slide.active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-desc {
        font-size: 16px;
    }
}

/* Slider Pagination Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 10;
    display: flex;
}

.slider-dot {
    width: 35px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-left: 8px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent-color);
    width: 50px;
}

/* Core Values / Features Grid */
.features-grid {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: 0 15px 45px rgba(15, 61, 94, 0.08);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(0, 167, 181, 0.3);
}

.feature-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    background-color: rgba(0, 167, 181, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}

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

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

.feature-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Info Cards & Grid UI elements */
.service-box {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    padding: 35px;
    transition: var(--transition-smooth);
    height: 100%;
}

.service-box:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
    border-color: rgba(0, 167, 181, 0.25);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.service-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Disease / Information Cards */
.disease-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}

.disease-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(0, 167, 181, 0.3);
}

.disease-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.disease-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.disease-card:hover .disease-card-img img {
    transform: scale(1.08);
}

.disease-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 5;
    text-transform: uppercase;
}

.disease-card-body {
    padding: 30px;
}

.disease-card-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.disease-card-body p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 22px;
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 70px 0;
    position: relative;
}

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

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Doctor Profile styling */
.doctor-profile-box {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.doctor-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

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

.doctor-specialties li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
}

.doctor-specialties li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 1px;
}

/* Testimonials / Patient Reviews Slider */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    height: auto;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 45px;
    font-size: 60px;
    color: rgba(0, 167, 181, 0.08);
    line-height: 1;
}

.testimonial-rating {
    color: #FBBF24;
    font-size: 16px;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 16.5px;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-patient {
    display: flex;
    align-items: center;
}

.patient-info h4 {
    font-size: 17px;
    margin-bottom: 2px;
}

.patient-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-nav-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(15, 61, 94, 0.15);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-nav-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* Appointment Form Elements */
.appointment-wizard-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(15, 61, 94, 0.12);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.wizard-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 35px 40px;
}

.wizard-header h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.wizard-body {
    padding: 40px;
}

.form-group-custom {
    margin-bottom: 25px;
}

.form-label-custom {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: block;
}

.form-control-custom {
    background-color: var(--bg-light);
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 18px;
    color: var(--text-dark);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    background-color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 167, 181, 0.1);
    outline: none;
}

/* Segmented Service Selector */
.service-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.service-checkbox-btn {
    border: 1.5px solid var(--border-color);
    background-color: var(--white);
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.service-checkbox-btn:hover {
    border-color: var(--accent-color);
    background-color: rgba(0, 167, 181, 0.02);
}

.service-checkbox-input {
    display: none;
}

.service-checkbox-input:checked + .service-checkbox-btn {
    border-color: var(--accent-color);
    background-color: rgba(0, 167, 181, 0.08);
    color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 167, 181, 0.1);
}

/* Category Filter Gallery (Hospital Tour) */
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.gallery-filter-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-medium);
    padding: 8px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 167, 181, 0.2);
}

.gallery-item {
    transition: var(--transition-smooth);
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    background-color: var(--white);
    height: 100%;
}

.gallery-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-img img {
    transform: scale(1.06);
}

.gallery-card-info {
    padding: 15px 20px;
}

.gallery-card-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-card-info span {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

/* Custom Lightbox System */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 15px;
    font-size: 17px;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 35px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--accent-color);
}

/* Contact Info & Layout */
.contact-info-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    display: flex;
    margin-bottom: 25px;
    height: calc(100% - 25px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(0, 167, 181, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    height: 450px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Premium Footer Layout */
.main-footer {
    background-color: #0B1E30;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent-color);
    font-size: 14.5px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 1px;
}

.footer-widget p {
    line-height: 1.7;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
    display: inline-block;
}

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

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

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.footer-social-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13.5px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

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

/* Floating Action Quickbar */
.floating-actions-bar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-action-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.floating-action-btn:hover {
    transform: translateY(-4px) scale(1.05);
    color: var(--white);
}

.fab-call {
    background-color: var(--accent-color);
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-top {
    background-color: var(--secondary-color);
    opacity: 0;
    visibility: hidden;
}

.fab-top.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 576px) {
    .floating-actions-bar {
        bottom: 20px;
        right: 20px;
    }
    .floating-action-btn {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }
}

/* ==========================================
   Glaucoma Vision Simulator
   ========================================== */
.vision-simulator-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--white);
}

.vision-simulator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 61, 94, 0.12);
}

.vision-img-container {
    position: relative;
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.vision-normal {
    background-image: url('../images/vision-scene.svg');
}

.vision-glaucoma {
    background-image: url('../images/vision-scene.svg');
}

.vision-glaucoma::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 25%, rgba(0, 0, 0, 0.88) 65%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-simulator-card:hover .vision-glaucoma::after {
    background: radial-gradient(circle, transparent 10%, rgba(0, 0, 0, 0.95) 45%);
}

