/* Reset and Base Styles */
:root {
    --primary-color: #00bcd4;
    --secondary-color: #2196f3;
    --accent-color: #00acc1;
    --text-color: #2c3e50;
    --light-bg: #f0f8ff;
    --cyan-light: #e0f7fa;
    --blue-light: #e3f2fd;
}

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

/* Enhanced Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #3498db 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

.loading-screen.hidden {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.loading-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Medical Cross Loader */
.medical-loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-ring-delay-1 {
    animation-delay: 0.5s;
    border-color: rgba(46, 204, 113, 0.3);
}

.pulse-ring-delay-2 {
    animation-delay: 1s;
    border-color: rgba(241, 196, 15, 0.3);
}

.medical-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
}

.cross-horizontal,
.cross-vertical {
    position: absolute;
    background: white;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cross-horizontal {
    width: 24px;
    height: 4px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: crossGlow 2s ease-in-out infinite alternate;
}

.cross-vertical {
    width: 4px;
    height: 24px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    animation: crossGlow 2s ease-in-out infinite alternate 0.5s;
}

/* Loading Content */
.clinic-name {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.loading-text {
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.loading-dots {
    display: inline-flex;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: dotBounce 1.4s ease-in-out infinite both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }
.dot:nth-child(3) { animation-delay: 0s; }

.loading-message {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Loading Progress Bar */
.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f1c40f);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

@keyframes crossGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        opacity: 0.8;
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 30px rgba(52, 152, 219, 0.5);
        opacity: 1;
    }
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

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

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes shimmer {
    0% { transform: translateX(-200px); }
    100% { transform: translateX(200px); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

/* Mobile responsive loading */
@media (max-width: 768px) {
    .clinic-name {
        font-size: 1.8rem;
    }
    
    .loading-bar {
        width: 150px;
    }
    
    .medical-loader {
        width: 60px;
        height: 60px;
    }
    
    .pulse-ring {
        width: 45px;
        height: 45px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    border-bottom: 1px solid #e9ecef;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

/* Hide header when scrolling down */
.header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

/* Show header when scrolling up */
.header.header-visible {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Compact header when scrolled */
.header.header-compact .top-header {
    display: none;
}

.header.header-compact .main-header {
    padding: 0.5rem 0;
}

.header.header-compact .logo img {
    max-height: 40px;
    height: auto;
    transition: all 0.3s ease;
}

/* Ensure smooth transitions on mobile */
@media (max-width: 768px) {
    .header {
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .header.header-compact .logo img {
        max-height: 35px;
        height: auto;
    }
    
    .logo img {
        max-height: 45px;
        max-width: 200px;
        height: auto;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    /* Adjust mobile bottom navigation to account for hidden header */
    .mobile-bottom {
        transition: bottom 0.3s ease;
    }
}

/* Prevent header from interfering with page content */
body {
    padding-top: 0;
}

/* Ensure hero section accounts for header height */
.hero-about-merged {
    padding-top: 120px; /* Adjust based on your header height */
}

@media (max-width: 768px) {
    .hero-about-merged {
        padding-top: 80px; /* Smaller padding on mobile */
    }
}

/* Top Header Bar */
.top-header {
    background: #1a1a1a;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
}

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

.header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-contact span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-weight: 500;
}

.header-contact span i {
    color: white;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social a {
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-social a:hover {
    color: #f39c12;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-right: 15px;
}

.search-input {
    border: none;
    outline: none;
    padding: 8px 15px;
    border-radius: 20px;
    width: 200px;
    font-size: 14px;
    background: transparent;
    color: #2c3e50;
}

.search-input::placeholder {
    color: #7f8c8d;
}

.search-btn {
    background: #3498db;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

/* Main Header */
.main-header {
    padding: 1rem 0;
}

.main-header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    width: auto;
    max-height: 60px;
    max-width: 250px;
    height: auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.logo a:hover h1 {
    color: #3498db;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 70px;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #3498db;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
    margin-left: auto;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    min-width: 240px;
    width: max-content;
    box-shadow: 0 20px 60px rgba(41, 128, 185, 0.4);
    border-radius: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: none;
    display: block;
    overflow: hidden;
}

/* Override the main nav gap for dropdown menus */
ul.dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

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

.dropdown-menu li {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dropdown-menu li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 44px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
    line-height: 1.4;
    background: transparent;
    padding-left: 20px;
    padding-right: 20px;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(5px);
    box-shadow: inset 4px 0 0 #ffffff;
}

/* Removed arrow indicator for cleaner look */

/* Hero Section */
.hero {
    color: white;
    text-align: center;
    padding: 100px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 3%;
}

/* Enhanced Hero & About Merged Section */
.hero-about-merged {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Hero Main Content */
.hero-main-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Left Side - Doctor Info */
.hero-left {
    color: white;
    animation: fadeInLeft 1s ease-out;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Enhanced Credentials Styling */
.credentials-list {
    margin: 25px 0;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

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

.credential-item:hover {
    background: rgba(255,255,255,0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.credential-icon {
    font-size: 1.4rem;
    color: #ffd700;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.credential-item:hover .credential-icon {
    transform: scale(1.2);
}

/* Gold Medal Special Styling */
.highlight-gold {
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,193,7,0.1));
    border-radius: 10px;
    padding: 15px 10px !important;
    border: 1px solid rgba(255,215,0,0.3);
    position: relative;
    overflow: hidden;
}

.highlight-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
    animation: shimmer 3s infinite;
}

.gold-medal {
    color: #ffd700 !important;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
    animation: goldPulse 2s infinite alternate;
}

.credential-item span {
    font-size: 1rem;
    line-height: 1.4;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.credential-item strong {
    color: #ffd700;
    font-weight: 600;
}

/* Staggered Animation for Credentials */
.credential-item:nth-child(1) { animation-delay: 0.1s; }
.credential-item:nth-child(2) { animation-delay: 0.2s; }
.credential-item:nth-child(3) { animation-delay: 0.3s; }
.credential-item:nth-child(4) { animation-delay: 0.4s; }
.credential-item:nth-child(5) { animation-delay: 0.5s; }
.credential-item:nth-child(6) { animation-delay: 0.6s; }

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes goldPulse {
    0% { 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255,215,0,0.5);
    }
    100% { 
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(255,215,0,0.8);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .credentials-list {
        padding: 20px 15px;
    }
    
    .credential-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }
    
    .credential-icon {
        align-self: flex-start;
    }
    
    .credential-item span {
        font-size: 0.95rem;
    }
}

.hero-left .specialty-item {
    font-size: 1.2rem;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-left .specialty-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

/* Hero Right Side - Image & Stats */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInRight 1s ease-out;
}

.doctor-image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: translateY(-10px);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.overlay-content p {
    font-style: italic;
    margin: 0;
}

/* Hero Stats - Enhanced */
.hero-about-merged .hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-about-merged .hero-stats .stat-item {
    flex: 1;
    min-width: 120px;
    background: rgba(255,255,255,0.1);
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.hero-about-merged .hero-stats .stat-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.stat-icon {
    margin-bottom: 10px;
}

.stat-icon i {
    font-size: 2rem;
    color: #ffd700;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-about-merged .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
}

.hero-about-merged .stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    display: block;
}

/* About Clinic Content */
.about-clinic-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(247,251,255,0.95) 100%);
    backdrop-filter: blur(10px);
}

.about-text-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.about-title i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 40px;
    border-radius: 2px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.highlight-box i {
    font-size: 2.5rem;
    color: #ffd700;
    flex-shrink: 0;
}

.highlight-box p {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.6;
}

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

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Quick Appointment Section */
.quick-appointment-section {
    position: relative;
    z-index: 3;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(247,251,255,0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.3);
}

.appointment-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.appointment-header {
    text-align: center;
    margin-bottom: 50px;
}

.appointment-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.highlight-item span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.appointment-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.appointment-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.appointment-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

/* Appointment Form Styling */
.appointment-form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.appointment-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f4f8;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.quick-appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.quick-appointment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.quick-appointment-form input,
.quick-appointment-form select,
.quick-appointment-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.quick-appointment-form input:focus,
.quick-appointment-form select:focus,
.quick-appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.quick-appointment-form select {
    cursor: pointer;
}

.quick-appointment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 30px;
}

/* Enhanced Appointment Button */
.appointment-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    padding: 20px;
    width: 100%;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.appointment-btn .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.appointment-btn:hover .btn-shine {
    left: 100%;
}

.contact-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e1e8ed, transparent);
}

.contact-divider span {
    background: white;
    padding: 0 20px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.alternative-contact {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
}

.alternative-contact span {
    display: block;
    color: #666;
    font-size: 0.95rem;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.contact-btn {
    flex: 1;
    padding: 15px 20px;
    font-size: 0.95rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-note {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.85rem;
    background: rgba(52, 152, 219, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
}

.contact-note i {
    color: var(--primary-color);
}

/* Appointment Info Section */
.appointment-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.info-card.highlight {
    background: linear-gradient(135deg, #00d4bcd9, var(--secondary-color));
    color: white;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* Info header styling - emoji only */

.info-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.info-card.highlight .info-header h3 {
    color: white;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.schedule-item.closed {
    border-left-color: #e74c3c;
    opacity: 0.7;
}

.schedule-item .day {
    font-weight: 600;
    color: #2c3e50;
}

.schedule-item .time {
    color: #666;
    font-weight: 500;
}

.location-info p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #666;
    margin-top: -3%;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Benefits list styling - emoji only */

/* Enhanced Info Cards */
.schedule-note {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #2c3e50;
}

.schedule-note i {
    color: var(--primary-color);
}

.location-features {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.location-features .feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    flex: 1;
    justify-content: center;
}

/* Location features styling - emoji only */

.benefits-badge {
    margin-top: 15px;
    background: rgba(255,215,0,0.2);
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(255,215,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Benefits badge styling - emoji only */

.benefits-badge span {
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

/* Card-specific styling */
.schedule-card {
    border-left: 4px solid var(--primary-color);
}

.location-card {
    border-left: 4px solid #e74c3c;
}

.benefits-card {
    border-left: 4px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

/* Enhanced Cards Section */
.enhanced-cards-section {
    position: relative;
    z-index: 3;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,248,255,0.9) 100%);
}

/* Responsive Design for Quick Appointment */
@media (max-width: 768px) {
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .appointment-form-section {
        padding: 30px 20px;
    }
    
    .quick-appointment-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .appointment-header h2 {
        font-size: 2rem;
    }
    
    .quick-appointment-section {
        padding: 60px 0;
    }
}

/* Hero Buttons - Enhanced */
.hero-about-merged .hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-about-merged .hero-buttons .btn {
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-slideshow .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1) 0%, rgba(231, 76, 60, 0.1) 100%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    background: rgba(52, 152, 219, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.hero-badge i {
    margin-right: 8px;
    color: #f39c12;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 120px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    gap: 8px;
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #0097a7, #00838f);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #00acc1, #0097a7);
    box-shadow: 0 4px 15px rgba(0, 172, 193, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0097a7, #00838f);
    box-shadow: 0 8px 25px rgba(0, 172, 193, 0.5);
}

.btn-success {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 20px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    min-width: 200px;
}

.btn-secondary {
    background: #3498db;
}

.btn-secondary:hover {
    background: #2980b9;
}

/* Body adjustment for fixed header */
body {
    padding-top: 140px; /* Adjust based on header height */
}

/* Sections */
.section {
    padding: 80px 0;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.animated {
    opacity: 1;
}

.grow {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.6s ease;
}

.grow.animated {
    transform: scale(1);
    opacity: 1;
}

/* Staggered animations */
.stagger-animation:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation:nth-child(6) { transition-delay: 0.6s; }

/* Mobile Bottom Navigation */
.mobile-bottom {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #4682b4;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-bottom ul {
    display: flex;
    padding: 10px 0;
    margin: 0;
    list-style: none;
}

.mobile-bottom ul li {
    flex: 1;
    text-align: center;
}

.mobile-bottom ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    border-left: 1px solid rgba(255,255,255,0.2);
    transition: background 0.3s ease;
}

.mobile-bottom ul li:first-child a {
    border-left: none;
}

.mobile-bottom ul li a:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-bottom ul li a i {
    font-size: 18px;
    margin-bottom: 4px;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.floating-btn:hover::before {
    transform: scale(1.4);
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Appointment Floating Button */
.appointment-float {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    animation: appointmentPulse 3s infinite;
}

.appointment-float:hover {
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 3s infinite 1.5s;
}

.whatsapp-float:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes appointmentPulse {
    0% { box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4); }
    50% { box-shadow: 0 4px 15px rgba(52, 152, 219, 0.8), 0 0 0 10px rgba(52, 152, 219, 0.1); }
    100% { box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4); }
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* Mobile responsive floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 100px;
        right: 15px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 997;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 0.2);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.9) 100%), url('images/doctor-1536x1024.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Backgrounds */
.services-section,
.treatments-section,
.appointment-cta-section,
.contact-section {
    position: relative;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Professional grey background overlays with subtle variations */
.services-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), url('images/bacj-serv.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.treatments-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.treatments-section .background-overlay {
    display: none; /* Light section without overlay */
}

.treatments-section .section-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #2c3e50; /* Fallback for unsupported browsers */
}

/* Ensure good text readability in appointment section */
#appointment {
    background: #f8f9fa;
}

#appointment .section-title {
    color: #2c3e50 !important;
}

#appointment .section-subtitle {
    color: #666 !important;
}

#appointment label {
    color: #2c3e50 !important;
}

#appointment .form-group input,
#appointment .form-group select,
#appointment .form-group textarea {
    color: #2c3e50 !important;
    background: white !important;
}

#appointment .form-group input::placeholder,
#appointment .form-group select::placeholder,
#appointment .form-group textarea::placeholder {
    color: #999 !important;
}

.treatments-section .section-subtitle {
    color: #666;
}

.appointment-cta-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%), url('images/back.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

/* Subtle section spacing variations for distinction */
.services-section {
    padding: 80px 0;
}

.treatments-section {
    padding: 100px 0;
}

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

.appointment-cta-section {
    padding: 60px 0;
}

.location-section {
    padding: 100px 0;
}

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

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

.contact-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), url('images/back.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.sports-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, #666666b5 100%), url('images/bacj-serv.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.location-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.location-section .background-overlay {
    display: none; /* Light section without overlay */
}

.location-section .section-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #2c3e50; /* Fallback for unsupported browsers */
    text-shadow: none;
}

.location-section .section-subtitle {
    color: #666;
}

.updates-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%), url('images/back.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.services-section .container,
.treatments-section .container,
.appointment-cta-section .container,
.contact-section .container,
.location-section .container,
.updates-section .container {
    position: relative;
    z-index: 2;
}

.sports-section .container {
    position: relative;
    z-index: 3; /* Higher z-index to appear above the additional overlay */
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.section-header .section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Fix section header subtitle in treatments section (light background) */
.treatments-section .section-header .section-subtitle {
    color: #666 !important;
}

/* Fix all hero section text visibility across all pages */
/* Change hero text to black for better readability */
.hero-content h1,
.hero-content h2,
.hero-content h3 {
    color: #2c3e50 !important;
    text-shadow: none !important;
}

.hero-content p {
    color: #666 !important;
    text-shadow: none !important;
}

/* Additional fixes for specific hero sections */
/* Services page hero */
.services .hero-content p,
/* Treatments page hero */
.treatments .hero-content p,
/* About page hero */
.about .hero-content p,
/* Contact page hero */
.contact .hero-content p {
    color: #666 !important;
    text-shadow: none !important;
    font-weight: 500 !important;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.decoration-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.title-decoration i {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Treatments Grid */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.treatment-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.treatment-content {
    padding: 25px;
}

.treatment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.treatment-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Time Dropdown Styles */
.modern-time-select {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234f46e5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 12px center !important;
    background-repeat: no-repeat !important;
    background-size: 16px !important;
    padding-right: 45px !important;
}

.modern-time-select:hover {
    border-color: #6366f1 !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15) !important;
    transform: translateY(-1px) !important;
}

.modern-time-select:focus {
    border-color: #4f46e5 !important;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1), 0 4px 12px rgba(99, 102, 241, 0.15) !important;
    outline: none !important;
    transform: translateY(-1px) !important;
}

.modern-time-select option {
    padding: 10px 16px !important;
    font-size: 14px !important;
    color: #374151 !important;
    background: white !important;
}

.modern-time-select optgroup {
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #4f46e5 !important;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%) !important;
    padding: 8px 16px !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.modern-time-select:valid {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-color: #0ea5e9 !important;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e6ed;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: black;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pain-website-background-1.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-contact {
        min-width: auto;
    }
    
    .contact-item {
        padding: 12px 8px;
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2980b9;
}

/* Enhanced Footer Contact Info */
.footer-contact {
    min-width: 320px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

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

.contact-item:hover {
    background: rgba(255,255,255,0.05);
    padding-left: 8px;
    border-radius: 5px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.contact-details strong {
    color: #ecf0f1;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-details span {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
}

/* Legacy contact info styling */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Location Section */
.location-section {
    position: relative;
    overflow: hidden;
}


.location-section .container {
    position: relative;
    z-index: 2;
}

.location-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.location-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Mobile responsive location section */
@media (max-width: 768px) {
    .location-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .location-info {
        order: 1;
    }
    
    .location-map {
        order: 2;
    }
    
    .location-section {
        padding: 60px 0;
    }
    
    .location-card {
        padding: 30px 20px;
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .location-section .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .location-section .section-subtitle {
        text-align: center;
        font-size: 1rem;
    }
    
    .map-container {
        height: 300px;
        margin: 0;
        width: 100%;
    }
    
    .location-map {
        width: 100%;
        margin-top: 20px;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        background: rgba(255, 255, 255, 0.95);
        margin-top: 10px;
        padding: 15px;
        border-radius: 10px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 15px;
        text-align: left;
    }
    
    .detail-item i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .location-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .location-actions .btn {
        width: 100%;
        min-width: auto;
        padding: 15px;
        font-size: 1.1rem;
    }
    
    /* Other Locations Mobile */
    .other-locations {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .other-locations-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
}

/* Very small screens - 1 card per row */
@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .location-card {
        padding: 15px;
    }
    
    .location-icon i {
        font-size: 2.2rem;
        width: 70px;
        height: 70px;
    }
    
    .location-info h4 {
        font-size: 1rem;
    }
    
    .location-link {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

.location-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.location-card h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card h3 i {
    color: #3498db;
}

.location-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateX(5px);
    background: rgba(52, 152, 219, 0.1);
}

.detail-item i {
    color: #3498db;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.detail-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.detail-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.detail-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.detail-item a:hover {
    text-decoration: underline;
}

.location-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-actions .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    max-width: 250px;
}

.map-overlay h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-overlay h4 i {
    color: #e74c3c;
}

.map-overlay p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 0.9rem;
}

.map-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.map-link:hover {
    text-decoration: underline;
}

/* Other Locations Section */
.other-locations {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(52, 152, 219, 0.1);
}

.other-locations-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.other-locations-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-icon {
    text-align: center;
    margin-bottom: 15px;
}

.location-icon-link {
    display: block;
    text-decoration: none;
    margin-bottom: 15px;
}

.location-icon i {
    font-size: 2rem;
    color: #3498db;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon i,
.location-icon-link:hover .location-icon i {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    transform: scale(1.1);
}

.location-info {
    text-align: center;
    position: relative;
}

.location-info h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.location-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.location-link:hover {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    transform: scale(1.1);
}

/* Transportation Info */
.transportation-info {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.transportation-info h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.transportation-info h3 i {
    color: #3498db;
}

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

.transport-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.transport-item:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 152, 219, 0.3);
    background: rgba(52, 152, 219, 0.1);
}

.transport-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
    display: block;
}

.transport-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.transport-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Particle Animation Background */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { width: 6px; height: 6px; left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 0.5s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 1.5s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { transform: translateY(-10vh) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 120px;
        padding-bottom: 70px; /* Space for mobile bottom nav */
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Disable parallax on mobile for better performance */
    .hero,
    .about-section,
    .services-section {
        background-attachment: scroll;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hide search on mobile to save space */
    .search-container {
        display: none;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid #e9ecef;
    }
    
    .nav.mobile-active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav ul li {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .nav ul li a {
        padding: 15px 20px;
        display: block;
    }
    
    /* Mobile dropdown styles */
    ul.dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3) !important;
        border: none !important;
        background: linear-gradient(135deg, #2980b9 0%, #3498db 100%) !important;
        margin: 0 0 0 15px !important;
        border-radius: 0 !important;
        display: none !important;
        flex-direction: column !important;
        width: calc(100% - 20px) !important;
        padding: 0 !important;
        overflow: hidden !important;
        gap: 0 !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: flex;
    }
    
    .dropdown-menu li {
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu li a {
        padding: 0;
        margin: 0;
        height: 40px;
        font-size: 0.85rem;
        color: white;
        background: transparent;
        display: flex;
        align-items: center;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.15);
        color: white;
        transform: translateX(3px);
        box-shadow: inset 3px 0 0 #ffffff;
    }
    
    .dropdown-toggle i {
        margin-left: auto;
    }
    
    .top-header {
        display: none;
    }
    
    .mobile-bottom {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-contact {
        gap: 15px;
    }
    
    .header-contact span {
        font-size: 13px;
    }
}

/* Responsive Design for Merged Hero Section */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-about-merged .hero-stats {
        justify-content: center;
    }
    
    .hero-about-merged .hero-buttons {
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-main-content {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .about-clinic-content {
        padding: 60px 0;
    }
    
    .enhanced-cards-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
        min-height: 500px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .service-card,
    .contact-form {
        padding: 30px 20px;
    }
    
    .treatment-content {
        padding: 20px;
    }
    
    /* Ensure search is hidden on very small screens */
    .search-container {
        display: none !important;
    }
    
    .header-social {
        gap: 8px;
    }
    
    .header-social a {
        font-size: 14px;
    }
}

/* Enhanced Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #3498db;
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.3);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(41, 128, 185, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #27ae60;
    font-size: 0.9rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f99);
    transform: translateX(5px);
}

/* Treatments Section */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.treatment-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.treatment-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.1);
}

.treatment-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(32deg, #e7e73c, #c0392b);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.treatment-content {
    padding: 25px;
}

.treatment-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.treatment-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.treatment-benefits {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.benefit-tag {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.treatment-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.treatment-btn:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    transform: translateX(5px);
}

/* Appointment CTA Section */
.appointment-cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.cta-feature {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.cta-feature:hover {
    transform: translateY(-5px);
}

.cta-feature i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
    display: block;
}

.cta-feature span {
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Updates Section */
.updates-section {
    position: relative;
    overflow: hidden;
}


.updates-section .container {
    position: relative;
    z-index: 2;
}

.updates-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.updates-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.update-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.update-date {
    text-align: center;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.date-day {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
}

.date-month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.date-year {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.update-content {
    flex: 1;
}

.update-category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.update-category i {
    color: #3498db;
}

.update-category span {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.update-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.update-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.update-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.update-link:hover {
    color: #2980b9;
}

/* Contact Section */
.contact-content {
    display: grid;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        max-width: 400px;
    }
}

.contact-card {
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    height: 100%;
}

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

.contact-card h3 {
    color: #2c3e50 !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-card h3 i {
    color: #3498db;
}

.contact-card p {
    color: #666 !important;
    margin-bottom: 15px;
}

.contact-link {
    color: #3498db !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #999 !important;
}

/* Contact form styles removed - form was deleted */

/* Fix text visibility on light backgrounds */
.service-card h3 {
    color: #2c3e50 !important;
}

.service-card p {
    color: #666 !important;
}

.treatment-card h3 {
    color: #2c3e50 !important;
}

.treatment-card p {
    color: #666 !important;
}

.update-card h3 {
    color: #2c3e50 !important;
}

.update-card p {
    color: #666 !important;
}

/* Ensure form labels and text are readable */
.contact-form label {
    color: #2c3e50 !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    color: #2c3e50 !important;
    background: white !important;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: #999 !important;
}

/* Fix text visibility on all white/light background sections */
section[style*="background: white"] .section-title,
section[style*="background: white"] h1,
section[style*="background: white"] h2,
section[style*="background: white"] h3,
section[style*="background: white"] h4,
section[style*="background: white"] h5,
section[style*="background: white"] h6 {
    color: #2c3e50 !important;
}

section[style*="background: white"] p,
section[style*="background: white"] span,
section[style*="background: white"] div:not(.btn):not(.service-icon):not(.treatment-icon) {
    color: #666 !important;
}

section[style*="background: white"] .section-subtitle {
    color: #666 !important;
}

section[style*="background: white"] li {
    color: #666 !important;
}

/* Fix text in cards on light backgrounds */
.service-card h3,
.treatment-card h3,
.qualification-card h3 {
    color: #2c3e50 !important;
}

.service-card p,
.treatment-card p,
.qualification-card p {
    color: #666 !important;
}

.service-card span,
.treatment-card span,
.qualification-card span {
    color: #666 !important;
}

/* Fix any remaining light background sections */
.section[style*="background: #f"],
.section[style*="background: white"],
.section[style*="background: light"] {
    color: #2c3e50 !important;
}

.section[style*="background: #f"] p,
.section[style*="background: white"] p,
.section[style*="background: light"] p {
    color: #666 !important;
}

/* Additional comprehensive text visibility fixes */
/* Fix for any text that might be white/light on light backgrounds */
.about-section h1, .about-section h2, .about-section h3, .about-section h4, .about-section h5, .about-section h6 {
    color: #2c3e50 !important;
}

.about-section p, .about-section span, .about-section li {
    color: #666 !important;
}

/* Ensure all card content is readable */
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    color: #2c3e50 !important;
}

.card p, .card span, .card li {
    color: #666 !important;
}

/* Fix for any remaining white text on light backgrounds */
*[style*="color: white"],
*[style*="color: #fff"],
*[style*="color: #ffffff"] {
    color: #2c3e50 !important;
}

/* Specific fixes for sections that might have inherited white text */
.qualification-item h3,
.qualification-item h4 {
    color: #2c3e50 !important;
}

.qualification-item p,
.qualification-item span {
    color: #666 !important;
}

/* Fix for any list items that might be invisible */
ul li, ol li {
    color: #666 !important;
}

/* Fix for any description text that might be invisible */
.description, .content, .text-content {
    color: #666 !important;
}

/* Enhanced Doctor Section Animations */
.doctor-name-animated {
    font-size: 3.5rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.animated-icon {
    animation: pulse 2s infinite;
    color: #00bcd4;
}

.credentials-animated {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 188, 212, 0.3);
    margin: 20px 0;
}

.credentials-main {
    font-size: 1.1rem;
    line-height: 1.6;
}

.specialties-animated {
    margin: 30px 0;
}

.specialty-item {
    background: rgba(33, 150, 243, 0.1);
    padding: 15px 20px;
    border-radius: 25px;
    margin: 10px 0;
    border-left: 4px solid #2196f3;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.specialty-item:hover {
    background: rgba(33, 150, 243, 0.2);
    transform: translateX(10px);
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(0, 188, 212, 0.3); }
    to { text-shadow: 0 0 30px rgba(33, 150, 243, 0.6); }
}

/* Enhanced Cards Container */
.enhanced-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .enhanced-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Enhanced Schedule Card */
.enhanced-schedule-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 0;
    transition: all 0.3s ease;
}

.enhanced-schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 188, 212, 0.2);
}

.enhanced-schedule-card .card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    opacity: 0.1;
}

.enhanced-schedule-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/clinic-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.enhanced-schedule-card .card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.enhanced-schedule-card .card-header {
    text-align: center;
    margin-bottom: 25px;
}

.enhanced-schedule-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: pulse 2s infinite;
}

.enhanced-schedule-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.enhanced-schedule-card h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.enhanced-schedule-card .card-header p {
    color: #666;
    margin-bottom: 0;
}

.schedule-grid {
    margin: 25px 0;
}

.schedule-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 188, 212, 0.05);
    border-radius: 10px;
    margin: 10px 0;
    border-left: 4px solid #00bcd4;
    transition: all 0.3s ease;
}

.schedule-day:hover {
    background: rgba(0, 188, 212, 0.1);
    transform: translateX(5px);
}

.schedule-day.closed {
    border-left-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.schedule-day.closed:hover {
    background: rgba(231, 76, 60, 0.1);
}

.day-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.day-info i {
    color: #00bcd4;
    font-size: 1.2rem;
}

.schedule-day.closed .day-info i {
    color: #e74c3c;
}

.day-info div strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1rem;
}

.day-info div span {
    color: #666;
    font-size: 0.9rem;
}

.time-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.time-info i {
    color: #00bcd4;
}

.schedule-day.closed .time-info i {
    color: #e74c3c;
}

.schedule-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.feature-badge {
    background: linear-gradient(135deg, #00bcd4, #2196f3);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.schedule-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

/* Enhanced Appointment Card */
.enhanced-appointment-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 0;
    transition: all 0.3s ease;
}

.enhanced-appointment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(33, 150, 243, 0.2);
}

.enhanced-appointment-card .card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2196f3, #00bcd4);
    opacity: 0.1;
}

.enhanced-appointment-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/doctor-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.enhanced-appointment-card .card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.enhanced-appointment-card .card-header {
    text-align: center;
    margin-bottom: 25px;
}

.enhanced-appointment-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196f3, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: pulse 2s infinite;
}

.enhanced-appointment-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.appointment-benefits {
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(33, 150, 243, 0.05);
    border-radius: 10px;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(33, 150, 243, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2196f3, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1rem;
}

.benefit-text strong {
    display: block;
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 5px;
}

.benefit-text span {
    color: #666;
    font-size: 0.9rem;
}

.appointment-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 25px 0;
}

.stat-box {
    text-align: center;
    padding: 15px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 15px;
    flex: 1;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(0, 188, 212, 0.2);
    transform: translateY(-5px);
}

.stat-box i {
    color: #00bcd4;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    color: black;
    font-size: 0.8rem;
}

.appointment-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Sports Section */
.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sports-header {
    margin-bottom: 30px;
}

.sports-category {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sports-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 0;
}

.sports-description p {
    color: #666 !important;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sports-features {
    margin: 30px 0;
}

.sports-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 10px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 188, 212, 0.3);
    transition: all 0.3s ease;
}

.sports-features .feature-item:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: translateX(10px);
}

.sports-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.sports-features .feature-item strong {
    display: block;
    color: #2c3e50 !important;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.sports-features .feature-item span {
    color: #666 !important;
    font-size: 0.9rem;
}

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

/* Sports Slideshow */
.slideshow-container {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.slideshow-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
}

.slide-caption h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.slide-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slideshow-controls button {
    background: rgba(0, 188, 212, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slideshow-controls button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(0, 188, 212, 0.8);
}

/* Responsive Sports Section */
@media (max-width: 768px) {
    .sports-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slideshow-wrapper {
        height: 300px;
    }
    
    .sports-actions {
        flex-direction: column;
    }
    
    .sports-features .feature-item {
        padding: 12px;
    }
}
