/* =============================================================================
   Side Diş Polikliniği - Modern Tasarım 2025
   ============================================================================= */

/* CSS Variables */
:root {
    --primary-color: #0088CC;
    --primary-dark: #006BA6;
    --primary-light: #3399DD;
    --secondary-color: #FF6B6B;
    --accent-color: #4ECDC4;
    --success-color: #51CF66;
    --warning-color: #FFD93D;
    --danger-color: #FF6B6B;
    --white: #ffffff;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --gradient-primary: linear-gradient(135deg, #0088CC 0%, #4ECDC4 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Border & Effects */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --box-shadow: 0 10px 40px rgba(0, 136, 204, 0.1);
    --box-shadow-hover: 0 20px 60px rgba(0, 136, 204, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header & Navigation */
.header {
    position: relative;
    z-index: 1000;
}

.top-bar {
    background-color: var(--light-gray);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar a {
    color: var(--medium-gray);
    transition: var(--transition);
}

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

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.logo {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(0, 136, 204, 0.1);
    transform: translateY(-1px);
}

/* Dropdown Menu Z-Index Fix */
.dropdown-menu {
    z-index: 1050 !important;
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    min-width: 220px;
}

/* Navbar Navigation Spacing & Layout */
.navbar-nav {
    gap: 0.5rem;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
}

.nav-item {
    margin: 0 0.25rem;
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--dark-gray) !important;
    margin: 0 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    min-width: 100px;
}

/* Desktop Navbar Improvements */
@media (min-width: 992px) {
    .navbar-nav {
        gap: 1rem;
        justify-content: space-between;
        width: auto;
        max-width: none;
    }
    
    .nav-item {
        margin: 0 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1.75rem !important;
        min-width: 120px;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0.5rem;
    }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
    border-radius: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

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

/* Mobile Dropdown Fixes */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: rgba(248, 249, 250, 0.95);
        border: none;
        border-radius: 0.5rem;
        box-shadow: none;
        margin-left: 1rem;
        margin-top: 0.5rem;
        display: none;
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }
    
    .navbar-nav .dropdown.show .dropdown-menu {
        display: block !important;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        color: var(--dark-gray);
        transition: var(--transition);
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: var(--primary-color);
        color: white;
        transform: none;
    }
    
    .navbar-nav .dropdown-item:active {
        background-color: var(--primary-dark);
        color: white;
    }
    
    .navbar-nav .dropdown-toggle {
        position: relative;
        padding-right: 2rem;
    }
    
    .navbar-nav .dropdown-toggle::after {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.15s ease-in-out;
    }
    
    .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Prevent double tap zoom on iOS */
    .navbar-nav .dropdown-toggle {
        touch-action: manipulation;
    }
}

/* Language Switcher */
.language-switcher .dropdown-toggle {
    background: none;
    border: none;
    color: var(--medium-gray);
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.language-switcher .dropdown-toggle:hover {
    color: var(--primary-color);
}

.language-switcher .dropdown-menu {
    z-index: 1061 !important;
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    min-width: 180px;
}

.language-switcher .dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: var(--transition);
    font-size: 0.875rem;
}

.language-switcher .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section - Design Match */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.6) 0%, rgba(233, 236, 239, 0.6) 100%),
        url('../images/patient-dentist.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

/* Mobile hero section adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-section .row {
        width: 100%;
        margin: 0;
        justify-content: center;
    }
    
    .hero-section .col-lg-6 {
        width: 100%;
        max-width: 500px;
        margin-bottom: 2rem;
    }
}

.hero-section::before {
    display: none;
}

.hero-bg-image {
    display: none;
}

.hero-bg-img {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-right: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    color: var(--dark-gray);
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-buttons .btn {
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius-lg);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
    min-width: 200px;
    text-align: center;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.hero-buttons .btn-outline-primary {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.appointment-form-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.1) !important;
    position: relative;
    z-index: 2;
}

.appointment-form .form-control,
.appointment-form .form-select {
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 136, 204, 0.25);
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
}

.stat-card {
    padding: 2rem;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: var(--font-weight-bold);
}

/* Services Section - Exact Match */
.service-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 136, 204, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-image img {
    transition: var(--transition);
}

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

.service-meta {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* Team Section - Yellow Highlight */
.team-section {
    background: var(--gradient-primary) !important;
}

.stat-circle {
    transition: var(--transition);
}

.stat-circle:hover {
    transform: scale(1.1);
}

/* Support Section */
.support-section {
    padding: 80px 0;
}

.support-card {
    transition: var(--transition);
}

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

.support-image img {
    transition: var(--transition);
}

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

/* Testimonials Section */
.testimonials-section {
    background: var(--gradient-primary) !important;
}

.testimonial-images img {
    transition: var(--transition);
}

.testimonial-images img:hover {
    transform: scale(1.05);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 136, 204, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin-top: auto;
}

.blog-link:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

.blog-link i {
    transition: var(--transition);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.section-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 136, 204, 0.1) !important;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover) !important;
}

.feature-card .icon-circle {
    transition: var(--transition);
}

.feature-card:hover .icon-circle {
    transform: scale(1.1);
}

/* Services Section */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 136, 204, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h5 {
    color: var(--dark-gray);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    background: var(--light-gray);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 136, 204, 0.1);
    height: 100%;
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

/* Call to Action */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-section .btn {
    margin: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer a {
    color: #ccc;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-buttons {
        gap: 1rem;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        min-width: 250px;
        max-width: 300px;
        width: 100%;
        margin: 0;
    }
    
    .hero-section {
        background-position: center;
        background-size: cover;
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-section .container {
        padding: 0 15px;
    }
    
    .hero-section .row {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .appointment-form-card {
        margin-top: 2rem;
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle {
        text-align: center;
        max-width: 400px;
        margin: 0 auto 2rem auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        min-width: 280px;
        max-width: 320px;
        width: 100%;
        margin: 0;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-section {
        background-position: center;
        background-size: cover;
        padding: 1.5rem 0;
        min-height: auto;
    }
    
    .hero-section .container {
        padding: 0 10px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 2rem auto;
        padding-right: 0;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        max-width: 350px;
        margin: 0 auto 1.5rem auto;
        font-size: 1rem;
    }
    
    .appointment-form-card {
        margin-top: 2rem;
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
        padding: 1.5rem;
    }
    
    .hero-badge {
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--box-shadow) !important;
}

.rounded-custom {
    border-radius: var(--border-radius-lg) !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #20c157;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.back-to-top .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.2rem;
    background: var(--primary-color);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    transition: all 0.3s ease;
}

.back-to-top .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 15px;
    }
    
    .back-to-top .btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .back-to-top .btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 0;
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: white;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* About Hero Section */
.about-hero-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    padding-right: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.mission-card h3,
.vision-card h3 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--light-gray);
    height: 100%;
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.1);
}

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

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 136, 204, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 136, 204, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

.cta-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-section .btn-primary {
    background: white;
    border-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive About Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .about-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-section .btn-primary {
        margin-top: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Services Page Styles */
.services-overview-section {
    padding: 80px 0;
    background: white;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 136, 204, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 136, 204, 0.15);
    border-color: var(--primary-color);
}

.service-image {
    position: relative;
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.9);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 136, 204, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.service-overlay .btn {
    transform: translateY(20px);
    transition: var(--transition);
}

.service-card:hover .service-overlay .btn {
    transform: translateY(0);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

/* Service Contact for Pricing */
.service-contact {
    padding: 20px;
    margin-top: 15px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.service-contact .btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.service-contact .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-contact .btn:hover::before {
    left: 100%;
}

.service-contact .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #003d82);
}

.service-contact .btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Treatment Process Timeline */
.treatment-process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.treatment-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f1f3f4" fill-opacity="0.3"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    opacity: 0.5;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-left: 120px;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 90px;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, #007bff, #0056b3);
}

.timeline-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    border: 6px solid white;
}

.timeline-circle span {
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-right-color: white;
}

.timeline-content:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 25px;
    color: white;
    font-size: 2rem;
}

.timeline-content h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-align: center;
    padding: 0 30px;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    padding: 0 30px 30px;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-item {
        padding-left: 100px;
    }
    
    .timeline-item:not(:last-child)::before {
        left: 40px;
        height: 60px;
    }
    
    .timeline-circle {
        width: 80px;
        height: 80px;
    }
    
    .timeline-circle span {
        font-size: 1.2rem;
    }
    
    .timeline-content::before {
        left: -12px;
        top: 25px;
        border-width: 12px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
}

.price-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Service Features Section */
.service-features-section {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Service Detail Page Styles */

/* Hero Section */
.service-detail-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-detail-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-detail-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.9));
}

.service-detail-hero .container {
    position: relative;
    z-index: 2;
}

.service-detail-hero .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-detail-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.service-detail-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.service-detail-hero .breadcrumb-item a:hover {
    color: white;
}

.service-detail-hero .breadcrumb-item.active {
    color: white;
}

.service-detail-hero .hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-detail-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-detail-hero .hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Service Description */
.service-description .section-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
}

.service-description .lead {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.8;
}

/* Benefits Section */
.service-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Treatment Process Steps */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
    padding-left: 120px;
}

.process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 80px;
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom, #007bff, #0056b3);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    border: 4px solid white;
    z-index: 2;
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 25px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-right-color: white;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.step-content h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .process-step {
        padding-left: 100px;
    }
    
    .process-step:not(:last-child)::before {
        left: 40px;
        height: 50px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content::before {
        left: -12px;
        top: 20px;
        border-width: 12px;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
}

/* FAQ Section */
.service-faq .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.service-faq .accordion-button {
    background: white;
    border: none;
    color: #2c3e50;
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.1rem;
}

.service-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: none;
}

.service-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.service-faq .accordion-body {
    padding: 25px;
    background: #f8f9fa;
    color: #6c757d;
    line-height: 1.7;
}

/* Call to Action */
.service-cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.service-cta .cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.service-cta .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.service-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-detail-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .service-detail-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-hero .hero-actions {
        justify-content: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
        top: 70px;
        height: 30px;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .service-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

.feature-highlight {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-highlight .icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-highlight h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.feature-highlight p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Service Process Section */
.service-process-section {
    padding: 80px 0;
    background: white;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--light-gray);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Services */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-image img {
        width: 60px;
        height: 60px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-highlight {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-highlight .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.technology-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.technology-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.technology-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.15);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    min-width: 40px;
}

.feature-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.technology-image {
    padding-left: 2rem;
}

.technology-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive Technology */
@media (max-width: 768px) {
    .technology-content {
        margin-bottom: 3rem;
    }
    
    .technology-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .technology-image {
        padding-left: 0;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        min-width: 30px;
    }
    
    .feature-item h5 {
        font-size: 1.1rem;
    }
}

/* =============================================================================
   Doctor Page Styles
   ============================================================================= */

/* Doctor Hero Section */
.doctor-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.doctor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.min-vh-75 {
    min-height: 75vh;
}

/* Doctor Specializations */
.specializations-section .specialization-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
}

.specializations-section .specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.specializations-section .specialization-card h4 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.specializations-section .specialization-card .text-muted {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.specializations-section .spec-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.specializations-section .specialization-card:hover .spec-icon {
    transform: scale(1.1);
}

.specializations-section .spec-icon i {
    font-size: 2rem;
    color: white;
}

/* Features List Styling */
.specializations-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.specializations-section ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.specializations-section ul li:last-child {
    border-bottom: none;
}

.specializations-section ul li i {
    width: 20px;
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 0.9rem;
    flex-shrink: 0;
    text-align: center;
}

.specializations-section ul li:hover {
    color: #495057;
    background-color: rgba(40, 167, 69, 0.05);
    padding-left: 0.5rem;
    border-radius: 4px;
    transform: translateX(3px);
}

/* Team & Languages Section */
.team-languages-section .stat-card {
    transition: all 0.3s ease;
}

.team-languages-section .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-languages-section .language-item {
    transition: all 0.3s ease;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    border: 1px solid #e9ecef;
    height: 100%;
}

.team-languages-section .language-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.language-flag {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    object-fit: cover;
    margin: 0 auto 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.language-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    margin: 0;
    line-height: 1.3;
}

/* Working Hours & Contact Section */
.contact-hours-section .working-hours-card,
.contact-hours-section .contact-info-card {
    transition: all 0.3s ease;
}

.contact-hours-section .working-hours-card:hover,
.contact-hours-section .contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-item {
    border-bottom: 1px solid #e9ecef !important;
    transition: all 0.2s ease;
}

.hours-item:last-child {
    border-bottom: none !important;
}

.hours-item:hover {
    background-color: #f8f9fa;
    padding-left: 0.5rem;
    border-radius: 5px;
}

.contact-item {
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 8px;
}

.contact-item:hover {
    background-color: #f8f9fa;
}

.contact-icon {
    flex-shrink: 0;
}

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

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: floating 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.phone {
    background: #007bff;
}

.floating-btn.scroll-top {
    background: #6c757d;
}

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

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quote-section .fas.fa-quote-left {
    opacity: 0.3;
}

/* Responsive Design for Doctor Page */
@media (max-width: 768px) {
    .doctor-hero {
        text-align: center;
    }
    
    .doctor-hero .display-4 {
        font-size: 2.5rem;
    }
    
    .specializations-section .specialization-card {
        margin-bottom: 2rem;
    }
    
    .team-languages-section .col-6 {
        margin-bottom: 1rem;
    }
    
    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-hours-section .row {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .doctor-hero .h2 {
        font-size: 1.5rem;
    }
    
    .doctor-hero .row.g-3 .col-6 {
        flex: 0 0 50%;
    }
    
    .specializations-section .specialization-card {
        padding: 1.5rem;
    }
}

/* =============================================================================
   Clinic Gallery Slider
   ============================================================================= */

.clinic-gallery-section {
    background: var(--light-gray);
}

.clinic-slider-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.clinic-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 136, 204, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    .clinic-slider {
        height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .clinic-slider {
        height: 250px;
    }
}

/* Newsletter Section Styles */
.newsletter-section {
    padding: 60px 0 !important;
    background-color: #f8f9fa;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.newsletter-form .form-control {
    border: 2px solid #e3e6f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

.newsletter-form .btn {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0 !important;
    }
    
    .newsletter-form .d-flex {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .newsletter-content {
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* Categories Section Styles */
.categories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 204, 0.1), transparent);
    transition: left 0.6s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 136, 204, 0.15);
    border-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.category-card:hover .category-icon::before {
    width: 100px;
    height: 100px;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #28a745, #20c997);
}

.category-icon i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.category-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

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

.category-card:hover h4 {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .categories-section {
        padding: 60px 0;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 1.8rem;
    }
    
    .category-card h4 {
        font-size: 1.2rem;
    }
}

/* Tags Section Styles - Updated */
.tags-section {
    padding: 50px 0;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tag-item {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f8f9fa;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #e3e6f0;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag-item:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Category Filter Styles */
.category-filter-section {
    padding: 30px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e3e6f0;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category-btn {
    background: white;
    color: var(--text-color);
    border: 2px solid #e3e6f0;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.category-btn.active:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
}

@media (max-width: 768px) {
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        min-width: 200px;
        text-align: center;
    }
}

/* Clickable Category Cards */
.clickable-category {
    cursor: pointer;
    transition: var(--transition);
}

.clickable-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    background-color: #f8f9fa;
}

.clickable-category:hover .category-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.clickable-category .category-icon {
    transition: var(--transition);
}

.clickable-category:active {
    transform: translateY(-2px);
}

/* Featured Blog Styles */
.featured-blog {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 4rem;
}

.featured-blog .blog-image {
    height: 400px;
}

.featured-blog .blog-content {
    padding: 2.5rem;
}

.featured-blog .blog-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-blog .blog-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-blog .blog-meta {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.featured-blog .blog-link {
    font-size: 1.1rem;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: inline-block;
    transition: var(--transition);
}

.featured-blog .blog-link:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .featured-blog .blog-image {
        height: 250px;
    }
    
    .featured-blog .blog-content {
        padding: 1.5rem;
    }
    
    .featured-blog .blog-content h1 {
        font-size: 1.8rem;
    }
    
    .featured-blog .blog-content p {
        font-size: 1rem;
    }
}

/* =============================================================================
   Blog Detail Page Styles
   ============================================================================= */

.blog-detail-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.blog-header .blog-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

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

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: var(--font-weight-medium);
}

.blog-meta i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.content-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.blog-tags {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.blog-tags h6 {
    color: var(--dark-gray);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.blog-tags .tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-tags .badge {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: var(--font-weight-medium);
    font-size: 0.85rem;
    transition: var(--transition);
}

.blog-tags .badge:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.blog-share {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
}

.blog-share h6 {
    color: var(--dark-gray);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.blog-share .share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-share .share-buttons a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
    font-size: 0.9rem;
}

.blog-share .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.blog-share .btn-outline-info:hover {
    background: #17a2b8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

.related-articles {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    margin-bottom: 3rem;
}

.related-articles h3 {
    color: var(--dark-gray);
    font-weight: var(--font-weight-bold);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.related-articles h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.related-articles .blog-card {
    transition: var(--transition);
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.related-articles .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.related-articles .card-img-top {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-articles .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-articles .blog-card:hover .card-img-top img {
    transform: scale(1.05);
}

.related-articles .blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 136, 204, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
}

.related-articles .card-body {
    padding: 1.5rem;
}

.related-articles .card-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-articles .card-text {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.related-articles .blog-meta {
    border: none;
    padding: 0;
    margin-bottom: 1rem;
    gap: 15px;
}

.related-articles .btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.related-articles .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

/* Responsive Design for Blog Detail */
@media (max-width: 768px) {
    .blog-detail-section {
        padding: 60px 0;
    }
    
    .blog-header .blog-image img {
        height: 250px;
    }
    
    .blog-category-badge {
        top: 15px;
        left: 15px;
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .content-body {
        font-size: 1.05rem;
    }
    
    .blog-share .share-buttons {
        flex-direction: column;
    }
    
    .blog-share .share-buttons a {
        justify-content: center;
        text-align: center;
    }
    
    .related-articles {
        padding: 1.5rem;
    }
    
    .related-articles .card-img-top {
        height: 180px;
    }
}

/* Footer Logo */
.footer-logo {
    filter: brightness(0) invert(1) !important;
    opacity: 0.9;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Mobile Dropdown Improvements */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown {
        position: relative;
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: #f8f9fa;
        border: none;
        border-radius: 0;
        box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
        display: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .navbar-nav .dropdown.mobile-open .dropdown-menu {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.75rem 1.5rem;
        color: var(--text-color);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus {
        background-color: rgba(0, 136, 204, 0.1);
        color: var(--primary-color);
    }
    
    .navbar-nav .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .dropdown-divider {
        margin: 0;
        border-color: rgba(0,0,0,0.1);
    }
    
    .navbar-nav .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .navbar-nav .dropdown.mobile-open .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}
