.hero-text {
        text-align: center;
        padding: 0 10px;
        width: 100%;
    }:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary: #0891b2;
    --accent: #059669;
    --dark: #111827;
    --light: #f3f4f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #0891b2 50%, #059669 100%);
    --shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
    --shadow-hover: 0 15px 40px rgba(30, 64, 175, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section .logo-text {
    font-size: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
}

.logo-section span {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
}

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

.call-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 120px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-qualifications {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.hero-image {
    text-align: center;
    width: 100%;
}

.doctor-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
}

/* Emergency Banner */
.emergency-banner {
    background: #dc2626;
    color: white;
    padding: 15px 0;
    text-align: center;
    animation: pulse 2s infinite;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.emergency-icon {
    font-size: 24px;
    animation: flash 1s infinite;
}

.emergency-text {
    flex: 1 1 auto;
}

.emergency-link {
    color: white;
    text-decoration: underline;
    white-space: nowrap;
}

.emergency-link:hover {
    text-decoration: none;
}

@keyframes pulse {
    0%, 100% { background: #dc2626; }
    50% { background: #b91c1c; }
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Stats Section */
.stats {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.procedure-list {
    list-style: none;
}

.procedure-list li {
    padding: 8px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.procedure-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

/* Conditions Section */
.conditions {
    padding: 80px 0;
    background: white;
}

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

.condition-card {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    transition: all 0.3s ease;
}

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

.condition-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.condition-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background: var(--light);
}

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

.specialty-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.specialty-card:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.specialty-card:hover .specialty-icon {
    background: white;
    color: var(--primary);
}

.specialty-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.specialty-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.specialty-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
}

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background: var(--primary);
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-dark);
}

.faq-question h4 {
    font-size: 18px;
    margin: 0;
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 60px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.rating {
    color: #fbbf24;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.4;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

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

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.about-paragraph {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

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

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    font-size: 20px;
    padding: 18px 40px;
    background: white;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p, .footer-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 8px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    padding: 12px;
    display: none;
    z-index: 999;
    width: 100%;
}

.mobile-cta-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header adjustments for mobile */
    .header {
        position: sticky;
        top: 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
        background: white;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .hero {
        padding: 20px 0 40px;
        margin-top: 0;
    }

    .hero::before {
        display: none; /* Remove animation on mobile */
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-text h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .hero-qualifications {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.4;
        padding: 0 10px;
    }

    .hero-badges {
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 15px;
    }

    .hero-cta {
        justify-content: center;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-image {
        padding: 0 20px;
    }

    .doctor-image {
        max-width: 280px;
        height: auto;
    }

    .section-title {
        font-size: 24px;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        height: 300px;
    }

    .mobile-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
    }

    body {
        padding-bottom: 85px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .testimonials-grid, .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .service-card {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .contact-info {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
    }

    .logo-section {
        text-align: center;
        width: 100%;
    }

    .logo-section .logo-text {
        font-size: 20px;
    }

    .logo-section span {
        font-size: 11px;
    }

    .header-cta {
        width: 100%;
        justify-content: center;
    }

    .call-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .call-btn span {
        font-size: 14px;
    }

    .emergency-banner {
        padding: 10px 5px;
    }

    .emergency-content {
        font-size: 12px;
        padding: 0 10px;
        flex-direction: column;
        gap: 8px;
    }

    .emergency-icon {
        font-size: 18px;
    }

    .emergency-text {
        text-align: center;
    }

    .emergency-text strong {
        display: block;
        margin-bottom: 3px;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .specialty-card {
        padding: 20px 10px;
    }

    .specialty-card h4 {
        font-size: 14px;
    }

    .specialty-card p {
        font-size: 12px;
    }

    .cta-content h2 {
        font-size: 24px;
        padding: 0 10px;
    }

    .cta-content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .sections {
        padding: 50px 0;
    }

    .services, .conditions, .specialties, .why-choose, 
    .faq, .testimonials, .contact, .about-section {
        padding: 50px 0;
    }

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

    .faq-container {
        padding: 0 10px;
    }

    .faq-question h4 {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 20px;
        margin: 0 10px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .about-content {
        padding: 0 15px;
    }

    .about-paragraph {
        font-size: 14px;
        text-align: left;
        margin-bottom: 15px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 14px 25px;
        width: 90%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section p, .footer-section li {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 15px 10px;
        text-align: center;
    }

    /* Ensure proper spacing for fixed mobile CTA */
    .contact {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 15px 0 30px;
    }

    .hero-text h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-text h2 {
        font-size: 14px;
    }

    .hero-qualifications {
        font-size: 13px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.3;
        padding: 0 5px;
    }

    .hero-text p {
        font-size: 13px !important;
    }

    .section-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .badge {
        font-size: 11px;
        padding: 6px 12px;
        gap: 5px;
    }

    .badge i {
        font-size: 12px;
    }

    .btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .hero-image {
        padding: 0 15px;
    }

    .doctor-image {
        max-width: 240px;
    }

    .service-card {
        padding: 20px 15px;
        margin: 0 5px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }

    .procedure-list li {
        font-size: 13px;
        padding: 6px 0;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .condition-card {
        padding: 20px 15px;
    }

    .condition-card h4 {
        font-size: 16px;
    }

    .condition-card p {
        font-size: 12px;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .specialty-card {
        padding: 20px;
    }

    .specialty-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-number i {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .contact-info {
        padding: 20px 15px;
    }

    .contact-info h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-details h4 {
        font-size: 13px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-section p, .footer-section li {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 10px;
        padding: 15px 5px;
    }

    .mobile-cta-btn {
        font-size: 16px;
        padding: 12px;
    }

    .emergency-banner {
        padding: 8px 5px;
    }

    .emergency-content {
        font-size: 11px;
        gap: 6px;
    }

    .emergency-icon {
        font-size: 16px;
    }

    .emergency-link {
        font-size: 12px;
    }

    .header-content {
        padding: 8px 10px;
    }

    .logo-section .logo-text {
        font-size: 18px;
    }

    .logo-section span {
        font-size: 10px;
    }

    .call-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .call-btn i {
        font-size: 12px;
    }

    /* Adjust sections padding */
    .services, .conditions, .specialties, .why-choose, 
    .faq, .testimonials, .contact, .about-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h4 {
        font-size: 13px;
        line-height: 1.4;
    }

    .faq-toggle {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 12px;
    }

    .faq-answer.active {
        padding: 15px;
        max-height: 300px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .author-name {
        font-size: 14px;
    }

    .about-content {
        padding: 0 10px;
    }

    .about-paragraph {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .btn-cta {
        font-size: 14px;
        padding: 12px 20px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    /* Ensure last section has space for mobile CTA */
    .footer {
        padding-bottom: 20px;
    }
}

/* Animation for elements coming into view */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

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