:root {
    --bg-color: #ffffff;
    --text-color: #1a3c26;
    --text-light: #4a7c59;
    --primary-color: #00796b; /* Professional Teal Updated */
    --accent-blue: #4fc3f7;
    --accent-purple: #9575cd;
    --shadow-light: #ffffff;
    --shadow-dark: rgba(0, 0, 0, 0.08);
    --shadow-dark-strong: rgba(0, 0, 0, 0.12);
    --shadow-inset: inset 4px 4px 8px rgba(0, 0, 0, 0.05), inset -4px -4px 8px #ffffff;
    --shadow-outset: 10px 10px 20px rgba(0, 0, 0, 0.05), -10px -10px 20px #ffffff;
    --shadow-outset-strong: 15px 15px 30px rgba(0, 0, 0, 0.1), -15px -15px 30px #ffffff;
    --shadow-inset-light: inset 2px 2px 5px rgba(0,0,0,0.05), inset -2px -2px 5px #ffffff;
    --shadow-outset-sm: 5px 5px 10px rgba(0,0,0,0.05), -5px -5px 10px #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-family: 'Inter', 'Outfit', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(15px);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

/* Layout & Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Neumorphic Components */
.neu-box {
    background: var(--bg-color);
    border-radius: 24px;
    box-shadow: var(--shadow-outset);
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.neu-box:hover {
    box-shadow: var(--shadow-outset-strong);
    transform: translateY(-5px);
}

.neu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.01);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 6px 6px 12px rgba(0,0,0,0.05), -6px -6px 12px #ffffff;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
}

.neu-button:hover {
    box-shadow: var(--shadow-inset);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.neu-button.variant-red:hover { color: var(--primary-color); }
.neu-button.variant-dark:hover { color: var(--accent-dark); }

.btn-video-consult {
    background: #ffffff !important;
    border: 2px solid #064E3B !important;
    color: #064E3B !important;
    box-shadow: var(--shadow-outset-sm) !important;
}

.btn-video-consult:hover {
    background: #064E3B !important;
    color: #ffffff !important;
    box-shadow: var(--shadow-inset) !important;
}

/* Video Consultation Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-outset-strong);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.video-modal-header {
    margin-bottom: 25px;
    text-align: center;
}

.video-modal-header h2 {
    color: #064E3B;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.video-modal-close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.video-modal-close:hover {
    color: #064E3B;
}

.video-form-group {
    margin-bottom: 20px;
}

.video-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.video-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    border: none;
    background: #ffffff;
    box-shadow: var(--shadow-inset-light);
    font-family: var(--font-family);
    outline: none;
}

.btn-whatsapp-booking {
    width: 100%;
    background: #064E3B;
    color: #ffffff;
    padding: 18px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
    margin-top: 10px;
}

.btn-whatsapp-booking:hover {
    background: #053d2e;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(6, 78, 59, 0.3);
}

.neu-button i {
    font-size: 1.1rem;
}

/* Header & Mega Menu */
header {
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 10px 15px -10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary-color);
}

/* Mega Menu Styles */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
    padding: 10px 0;
}

.nav-link {
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 10px;
}

.nav-link:hover {
    box-shadow: var(--shadow-inset-light);
    color: var(--primary-color);
}

/* Mega Menu Dropdown */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 600px;
    background: var(--bg-color);
    box-shadow: var(--shadow-outset);
    border-radius: 20px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 100;
}

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

.mega-menu-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    display: inline-block;
}

/* Booking Flow Steps */
.step-container {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-container.active {
    display: block;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

/* Status Badges */
.status-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: var(--shadow-outset-sm);
}

.status-pending {
    background: #fff9c4; /* Soft Yellow */
    color: #fbc02d;
    box-shadow: 4px 4px 10px rgba(251, 192, 45, 0.2), -4px -4px 10px #ffffff;
}

.status-paid {
    background: #e0f2f1; /* Soft Teal/Green */
    color: #00796b;
    box-shadow: 4px 4px 10px rgba(0, 121, 107, 0.2), -4px -4px 10px #ffffff;
}

/* Admin Table */
.admin-card {
    margin-top: 40px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.admin-table th {
    text-align: left;
    padding: 0 20px;
    color: var(--text-light);
    font-weight: 600;
}

.admin-table td {
    padding: 20px;
    background: var(--bg-color);
}

.admin-table tr td:first-child { border-radius: 15px 0 0 15px; }
.admin-table tr td:last-child { border-radius: 0 15px 15px 0; }

.admin-table tr {
    box-shadow: var(--shadow-outset-sm);
    transition: var(--transition);
}

.admin-table tr:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-outset);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    box-shadow: var(--shadow-outset-sm);
    color: var(--primary-color);
    cursor: pointer;
}

.btn-icon:hover {
    box-shadow: var(--shadow-inset-light);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
}

.mega-menu-list li {
    margin-bottom: 10px;
}

.mega-menu-list a {
    display: block;
    padding: 8px 15px;
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.mega-menu-list a:hover {
    background: var(--bg-color);
    box-shadow: var(--shadow-inset-light);
    color: var(--text-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: var(--bg-color);
    border: none;
    color: var(--text-color);
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow-outset-sm);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-outset);
    object-fit: cover;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Search Bar */
.search-container {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 500px;
}

.search-input {
    flex: 1;
    padding: 18px 28px;
    background: var(--bg-color);
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-inset);
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.search-input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.search-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    border: none;
    border-radius: 50%;
    box-shadow: 6px 6px 12px rgba(0,0,0,0.05), -6px -6px 12px #ffffff;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.3rem;
    transition: var(--transition);
}

.search-btn:hover {
    box-shadow: var(--shadow-inset);
    color: var(--accent-blue);
    transform: scale(0.95);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: var(--shadow-inset-light);
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card .neu-button {
    margin-top: auto;
    align-self: flex-start;
}

/* Footer & Socials */
footer {
    padding: 60px 0 30px;
    margin-top: 50px;
    background: var(--bg-color);
    box-shadow: 0 -10px 15px -10px rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-color);
    box-shadow: var(--shadow-outset-sm);
    color: var(--text-color);
    font-size: 1.2rem;
}

.social-icon:hover {
    box-shadow: var(--shadow-inset-light);
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--shadow-light);
}

/* Why Choose Us Section */
.trust-section {
    padding: 80px 0;
    background: #f8faf9;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    text-align: center;
    padding: 40px;
}

.trust-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

/* Footer Improvements */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-outset-sm);
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.specialty-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toast Notification */
#toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 2000;
    transition: var(--transition);
}

#toast-container.show {
    transform: translateX(-50%) translateY(0);
}

.toast {
    background: var(--bg-color);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-outset-strong);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
    font-weight: 600;
    border-left: 5px solid var(--primary-color);
}

.toast i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.testimonials-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 10px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.testimonials-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.testimonial-card {
    min-width: 350px;
    flex: 0 0 auto;
    text-align: center;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-color);
    box-shadow: var(--shadow-outset-sm);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    border: 2px solid #ffffff;
}

.stars {
    color: var(--primary-color); /* Teal */
    margin-bottom: 15px;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.patient-name {
    font-weight: 800;
    color: var(--text-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
    }
}

.success-card {
    padding: 30px;
    transition: var(--transition);
    border-radius: 20px;
}

.success-card:hover {
    box-shadow: var(--shadow-inset);
}

.success-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Facilities & Counter */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.facility-card {
    padding: 40px 20px;
    text-align: center;
}

.facility-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.counter-section {
    background: #f8fafb;
    padding: 60px 0;
    margin: 40px 0;
    box-shadow: var(--shadow-inset);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.counter-label {
    font-weight: 600;
    color: var(--text-light);
}

/* Glassmorphism Profile */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: var(--bg-color);
    box-shadow: var(--shadow-outset-sm);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9fbfc;
}

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

/* Q&A Board & Input */
.qa-input-container {
    margin-bottom: 40px;
}

.neu-input {
    width: 100%;
    padding: 20px;
    border: none;
    background: var(--bg-color);
    box-shadow: var(--shadow-inset);
    border-radius: 15px;
    font-family: inherit;
    margin-bottom: 15px;
    outline: none;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-outset-strong);
    display: none;
    z-index: 1000;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Modal System */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: var(--bg-color);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-outset-strong);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Dashboard Layout */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    background: #f8fafc;
}

.sidebar {
    width: 280px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-right: 1px solid var(--glass-border);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: fixed;
    height: 100vh;
    z-index: 100;
    box-shadow: 10px 0 30px rgba(0,0,0,0.02);
}

.sidebar-link {
    padding: 15px 25px;
    border-radius: 15px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.sidebar-link.active, .sidebar-link:hover {
    background: white;
    box-shadow: var(--shadow-outset-sm);
    color: var(--primary-color);
}

.dashboard-main {
    flex: 1;
    margin-left: 280px;
    padding: 50px;
}

.dashboard-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-outset-sm);
    margin-bottom: 30px;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-pending { background: #fff8e1; color: #f57f17; }
.status-confirmed { background: #e8f5e9; color: #2e7d32; }
.status-completed { background: #e3f2fd; color: #1565c0; }

.notif-badge {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 12px;
    right: 12px;
}





