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

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navigation */
.navbar {
    background: rgba(44, 82, 130, 0.95);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #63b3ed;
    transform: translateY(-2px);
}

.nav-link.active {
    background: #25d366;
    color: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
}

.date-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
}

.date {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.time {
    font-size: 0.8rem;
    opacity: 0.9;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.logo i {
    font-size: 2rem;
    color: #e0e6eb;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.whatsapp-container {
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 82, 130, 0.8), rgba(49, 130, 206, 0.8)), url('https://images.pexels.com/photos/6812590/pexels-photo-6812590.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 80px;
    margin-top: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 82, 130, 0.7);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #25d366;
    color: white;
}

.btn-primary:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5282;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f7fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3182ce, #63b3ed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5282;
    margin-bottom: 1rem;
}

.service-card p {
    color: #718096;
    line-height: 1.8;
}

/* Services Caption */
.services-caption {
    font-size: 1.15rem;
    color: #444;
    text-align: center;
    margin-bottom: 2.2rem;
    margin-top: -1.5rem;
    line-height: 2.1;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 2rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credential i {
    font-size: 1.5rem;
    color: #3182ce;
    width: 30px;
}

.credential span {
    font-weight: 600;
    color: #2c5282;
}

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

/* Appointment Section */
.appointment {
    padding: 5rem 0;
    background: #f7fafc;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.appointment-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c5282;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #3182ce;
    margin-top: 0.5rem;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #718096;
    line-height: 1.6;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: #2c5282;
    transform: translateX(-3px);
}

.location-link i {
    font-size: 0.9rem;
}

.appointment-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c5282;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3182ce;
}

/* Footer */
.footer {
    background: #2c5282;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #63b3ed;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #63b3ed;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-left: 0.5rem;
    color: #63b3ed;
}

.footer-location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #63b3ed;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

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

.working-hours p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.working-hours i {
    color: #63b3ed;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    opacity: 0.8;
}

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

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

.whatsapp-float a:hover {
    background: #1da851;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: #f7fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 15px 40px rgba(44,130,201,0.18);
}

.map-embed iframe {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 12px rgba(44,82,130,0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-links {
        gap: 1rem;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0.75rem 0;
    }
    
    .hero {
        margin-top: 140px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .gallery-img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .appointment-form {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-img {
        height: 120px;
    }
}

/* Accessibility Toolbar */
.accessibility-toolbar {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    display: flex;
    gap: 0.5rem;
}
.accessibility-toolbar button {
    background: #2c5282;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}
.accessibility-toolbar button:hover,
.accessibility-toolbar button:focus {
    background: #25d366;
    outline: none;
}
.high-contrast {
    background: #111 !important;
    color: #fff !important;
}
.high-contrast .header,
.high-contrast .footer,
.high-contrast .navbar,
.high-contrast .btn-primary,
.high-contrast .whatsapp-btn,
.high-contrast .whatsapp-float a {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}
/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #fff;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.faq-item {
    background: #f7fafc;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(44,82,130,0.06);
    padding: 1.5rem 2rem;
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: 0 8px 30px rgba(44,82,130,0.12);
}
.faq-item h3 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.faq-item p {
    color: #555;
    font-size: 1.1rem;
    margin: 0;
}
/* Before & After Gallery */
.before-after {
    padding: 5rem 0;
    background: #f7fafc;
}
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}
.before-after-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(44,82,130,0.08);
    padding: 1rem;
    transition: box-shadow 0.3s, transform 0.3s;
    width: 100%;
    max-width: 220px;
}
.before-after-item:hover {
    box-shadow: 0 8px 30px rgba(44,82,130,0.15);
    transform: translateY(-5px) scale(1.03);
}
.before-after-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}
.before-after-item span {
    display: inline-block;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.2rem 1.2rem;
    font-size: 1rem;
    margin-top: 0.2rem;
}
/* Blog/Tips Section */
.blog {
    padding: 5rem 0;
    background: #fff;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
/* --- Blog Card Enhancements --- */
.blog-card {
    background: #f7fafc;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(44,82,130,0.10);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1.5px solid #e2e8f0;
}
.blog-card::before {
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #25d366 0%, #2c5282 100%);
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.blog-card:hover {
    box-shadow: 0 12px 36px rgba(44,82,130,0.18);
    transform: translateY(-7px) scale(1.025);
    border-color: #25d366;
}
.blog-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom: 1.5px solid #e2e8f0;
    margin-bottom: 0.5rem;
    transition: filter 0.3s;
}
.blog-card:hover img {
    filter: brightness(0.97) saturate(1.1);
}
.blog-content {
    padding: 1.3rem 1.7rem 1.7rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-content h3 {
    color: #2c5282;
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.blog-content p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
    line-height: 1.7;
}
.read-more {
    color: #fff;
    background:  #25d366;
    border: none;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44,82,130,0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    outline: none;
    margin-top: auto;
    align-self: flex-start;
}
.read-more:hover, .read-more:focus {
    background: linear-gradient(90deg, #2c5282 0%, #25d366 100%);
    color: #fff;
    transform: scale(1.05);
}
/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: #f7fafc;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.review-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(44,82,130,0.08);
    padding: 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover {
    box-shadow: 0 8px 30px rgba(44,82,130,0.15);
    transform: translateY(-5px) scale(1.03);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.review-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #25d366;
}
.review-header h4 {
    margin: 0;
    color: #2c5282;
    font-size: 1.1rem;
    font-weight: 700;
}
.review-header span {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 700;
}
.google-link {
    text-align: center;
    margin-top: 2rem;
}
.google-link a {
    color: #25d366;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.google-link a:hover {
    color: #2c5282;
}
.footer-social-links a {
    color: #fff;
    font-size: 1.3rem;
    margin-left: 0.7rem;
    transition: color 0.2s;
}
.footer-social-links a:hover {
    color: #25d366;
}
.social-links a {
    color: #fff;
    font-size: 1.3rem;
    margin-left: 0.7rem;
    transition: color 0.2s;
}
.social-links a:hover {
    color: #25d366;
}
@media (max-width: 768px) {
    .faq-list {
        padding: 0 0.5rem;
    }
    .before-after-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .before-after-item img {
        height: 90px;
    }
    .blog-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    .accessibility-toolbar {
        left: 50%;
        transform: translateX(-50%);
        top: 5px;
    }
}
@media (max-width: 480px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    .before-after-item img {
        height: 70px;
    }
}

/* Blog Modal Styles */
/* --- Blog Modal Enhancements --- */
.blog-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(44,82,130,0.30);
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    animation: fadeInBg 0.3s;
}
@keyframes fadeInBg {
    from { background: rgba(44,82,130,0.0); }
    to { background: rgba(44,82,130,0.30); }
}
.blog-modal.active {
    display: flex;
    opacity: 1;
}
.blog-modal-content {
    background: #fff;
    color: #222;
    margin: auto;
    border-radius: 22px;
    max-width: 520px;
    width: 92vw;
    padding: 2.7rem 2.2rem 2.2rem 2.2rem;
    box-shadow: 0 12px 48px rgba(44,82,130,0.22);
    position: relative;
    text-align: right;
    direction: rtl;
    animation: modalIn 0.35s;
    border: 2.5px solid #25d366;
    overflow: hidden;
}
.blog-modal-content::before {
    content: '';
    display: block;
    height: 7px;
    width: 100%;
    background: linear-gradient(90deg, #25d366 0%, #2c5282 100%);
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}
.close-modal {
    position: absolute;
    top: 1.1rem;
    left: 1.7rem;
    font-size: 2.2rem;
    color: #fff;
    background: #2c5282;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(44,82,130,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 10;
    outline: none;
}
.close-modal:hover, .close-modal:focus {
    background: #25d366;
    color: #fff;
    transform: scale(1.08);
}
.blog-modal-content h2 {
    color: #2c5282;
    font-size: 1.45rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.blog-modal-content p {
    font-size: 1.13rem;
    color: #444;
    line-height: 2.1;
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .blog-modal-content {
        padding: 1.2rem 0.7rem 1.5rem 0.7rem;
        max-width: 98vw;
    }
    .close-modal {
        left: 0.7rem;
        font-size: 1.5rem;
        width: 36px;
        height: 36px;
    }
    .blog-card img {
        height: 120px;
    }
    .blog-content {
        padding: 1rem 0.7rem 1.2rem;
    }
}

.doctor-details {
    margin: 1.5rem 0 2rem 0;
    padding: 0 1.5rem 0 0;
    list-style: none;
    text-align: right;
}
.doctor-details li {
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
    color: #2c5282;
    position: relative;
    padding-right: 1.2em;
}
.doctor-details li::before {
    content: '\2022';
    color: #25d366;
    position: absolute;
    right: 0;
    font-size: 1.2em;
    line-height: 1;
}
.doctor-details strong {
    color: #3182ce;
    font-weight: 700;
    margin-left: 0.3em;
}

.show-before-after {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.4rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(44,82,130,0.08);
}
.show-before-after:hover, .show-before-after:focus {
    background: #2c5282;
    color: #fff;
    transform: scale(1.05);
}

.before-after-modal {
    display: none;
    position: fixed;
    z-index: 4000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(44,82,130,0.75);
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.before-after-modal.active {
    display: flex;
    opacity: 1;
}
.before-after-modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(44,82,130,0.18);
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.before-after-modal-content img {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,82,130,0.10);
    margin-bottom: 0.5rem;
}
.close-before-after-modal {
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    font-size: 2rem;
    color: #fff;
    background: #2c5282;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(44,82,130,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 10;
    outline: none;
}
.close-before-after-modal:hover, .close-before-after-modal:focus {
    background: #25d366;
    color: #fff;
    transform: scale(1.08);
}
@media (max-width: 600px) {
    .before-after-modal-content {
        padding: 0.7rem 0.3rem 0.7rem 0.3rem;
    }
    .before-after-modal-content img {
        max-width: 98vw;
        max-height: 50vh;
    }
    .close-before-after-modal {
        left: 0.5rem;
        font-size: 1.3rem;
        width: 30px;
        height: 30px;
    }
}

.booking-confirm-modal {
    display: none;
    position: fixed;
    z-index: 4000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(44,82,130,0.75);
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.booking-confirm-modal.active {
    display: flex;
    opacity: 1;
}
.booking-confirm-modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(44,82,130,0.18);
    padding: 2.2rem 2rem 1.5rem 2rem;
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.booking-confirm-modal-content h2 {
    color: #25d366;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}
.booking-confirm-modal-content .whatsapp-number {
    color: #2c5282;
    font-size: 1.2rem;
    font-weight: 700;
    background: #e6f9f0;
    border-radius: 8px;
    padding: 0.3rem 1.2rem;
    margin: 0.7rem 0 1rem 0;
    display: inline-block;
    direction: ltr;
    letter-spacing: 1px;
}
.close-booking-confirm-modal {
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    font-size: 2rem;
    color: #fff;
    background: #2c5282;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(44,82,130,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 10;
    outline: none;
}
.close-booking-confirm-modal:hover, .close-booking-confirm-modal:focus {
    background: #25d366;
    color: #fff;
    transform: scale(1.08);
}
@media (max-width: 600px) {
    .booking-confirm-modal-content {
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
    .close-booking-confirm-modal {
        left: 0.5rem;
        font-size: 1.3rem;
        width: 30px;
        height: 30px;
    }
}

/* Responsive Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
    margin-right: 1rem;
}
.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-close {
    display: none;
}
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        background: #2c5282;
        flex-direction: column;
        align-items: flex-start;
        width: 220px;
        height: 100vh;
        padding: 3.5rem 1.5rem 1.5rem 1.5rem;
        gap: 1.5rem;
        box-shadow: -2px 0 16px rgba(44,82,130,0.10);
        transform: translateX(100%);
        transition: transform 0.3s;
        z-index: 1100;
        display: flex;
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.7rem 0.5rem;
        border-radius: 12px;
        text-align: right;
    }
    .contact-link.desktop-only {
        display: none !important;
    }
    .contact-link.mobile-only {
        display: none !important;
    }
    .nav-links.open .contact-link.mobile-only {
        display: block !important;
    }
    .nav-close {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 2.2rem;
        position: absolute;
        top: 1.2rem;
        left: 1.2rem;
        z-index: 1201;
        cursor: pointer;
        transition: color 0.2s, transform 0.2s;
    }
    .nav-close:hover, .nav-close:focus {
        color: #25d366;
        transform: scale(1.1);
    }
    .header-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2.5rem;
    }
    .logo {
        flex: 0 0 auto;
        align-self: flex-end;
        justify-content: flex-end;
        margin-left: auto;
    }
    .logo i {
        font-size: 1.3rem;
    }
    .logo h1 {
        font-size: 1.1rem;
    }
    .date-time {
        flex: 0 0 auto;
        align-self: flex-start;
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-right: auto;
    }
    .header-content .whatsapp-container {
        display: none !important;
    }
    .nav-logo.mobile-only {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 1.2rem 0 0.5rem 0;
        border-bottom: 1px solid #eee;
        margin-bottom: 1rem;
    }
}
@media (min-width: 993px) {
    .nav-toggle {
        display: none;
    }
    .nav-close {
        display: none !important;
    }
    .contact-link.mobile-only {
        display: none !important;
    }
    .contact-link.desktop-only {
        display: inline-block !important;
    }
}

/* Preventive Dentistry Section */
.preventive-dentistry {
    position: relative;
    background: linear-gradient(rgba(44,82,130,0.7), rgba(49,130,206,0.7)), url('https://images.pexels.com/photos/3845761/pexels-photo-3845761.jpeg?auto=compress&fit=crop&w=900&q=80') center/cover no-repeat;
    padding: 5rem 0 5rem 0;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}
.preventive-dentistry .container {
    position: relative;
    z-index: 2;
}
.preventive-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(44,82,130,0.75);
    border-radius: 18px;
    padding: 2.5rem 2rem 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(44,82,130,0.18);
}
.preventive-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #25d366;
    letter-spacing: 1px;
}
.preventive-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}
.preventive-content p {
    font-size: 1.15rem;
    line-height: 2.1;
    margin-bottom: 1.2rem;
    color: #e6f9f0;
}
@media (max-width: 768px) {
    .preventive-content {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .preventive-content h2 {
        font-size: 1.3rem;
    }
    .preventive-content h3 {
        font-size: 1.05rem;
    }
    .preventive-content p {
        font-size: 1rem;
    }
}

/* FAQ Accordion Styles */
.accordion {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.accordion-item {
    background: #f7fafc;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(44,82,130,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.accordion-item:focus-within, .accordion-item.active {
    box-shadow: 0 8px 30px rgba(44,82,130,0.12);
}
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: right;
    font-size: 1.18rem;
    font-weight: 700;
    color: #2c5282;
    padding: 1.2rem 2rem 1.2rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion-header[aria-expanded="true"] {
    background: #e6f9f0;
    color: #25d366;
}
.accordion-header::after {
    content: '\25BC';
    font-size: 1.1rem;
    color: #25d366;
    margin-right: 1rem;
    transition: transform 0.3s;
}
.accordion-header[aria-expanded="true"]::after {
    transform: rotate(180deg);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    background: #f7fafc;
    padding: 0 2rem;
    color: #444;
    font-size: 1.08rem;
    line-height: 2;
    transition: max-height 0.4s cubic-bezier(.4,2,.3,1), padding 0.3s;
}
.accordion-item.active .accordion-body {
    padding: 1.2rem 2rem 1.5rem 2rem;
    max-height: 300px;
}
@media (max-width: 600px) {
    .accordion-header, .accordion-body {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .accordion-body {
        font-size: 1rem;
    }
}

/* Welcoming Section */
.welcome-section {
    background: #eceef1;
    padding: 4.5rem 0 3.5rem 0;
}
.welcome-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.welcome-text {
    flex: 1.2;
    text-align: right;
}
.welcome-text h2 {
    color: #2c5282;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
}
.welcome-text h3 {
    color: #25d366;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
}
.welcome-text p {
    color: #444;
    font-size: 1.13rem;
    margin-bottom: 1.1rem;
    line-height: 2.1;
}
.welcome-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.welcome-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(44,82,130,0.13);
    object-fit: cover;
}
@media (max-width: 900px) {
    .welcome-container {
        flex-direction: column;
        gap: 2.2rem;
        text-align: center;
    }
    .welcome-text {
        text-align: center;
    }
    .welcome-image img {
        max-width: 90vw;
    }
}