:root {
    --primary: #0066cc;
    --secondary: #004d99;
    --accent: #00a86b;
    --success: #25d366;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s;
    left: 0;
    right: 0;
}

.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
}

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

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.logo-text h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
    position: relative;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.whatsapp-float, .call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    background-color: var(--success);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float {
    right: 30px;
}

.call-float {
    right: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.whatsapp-float:hover, .call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    text-decoration: none;
    color: white;
}

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

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 160px 20px 100px;
    text-align: center;
    overflow: hidden;
    margin-top: 90px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 100%;
}

.sub-headline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

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

.btn-secondary:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 60px;
    max-width: 100%;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.3);
}

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

.trust-item span {
    font-size: 1rem;
    font-weight: 500;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.stats, .about, .services, .why-choose, .doctor-profile, .location, .appointment, .reviews, footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.stats {
    padding: 80px 20px;
    background: #f5f5f5;
}

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

.stat-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0,102,204,0.2);
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2.5rem;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-badge.light {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-choose .section-header h2 {
    color: white;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-divider.light {
    background: white;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about {
    padding: 100px 20px;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.about-image {
    position: relative;
    width: 100%;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
}

.about-badge i {
    color: var(--success);
    font-size: 1.5rem;
}

.about-content .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--success);
    font-size: 1.2rem;
}

.services {
    padding: 100px 20px;
    background: #f5f5f5;
}

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

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

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

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,102,204,0.4);
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    font-size: 1rem;
}

.why-choose {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.feature:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2.5rem;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature p {
    opacity: 0.9;
    font-size: 1rem;
}

.doctor-profile {
    padding: 100px 20px;
    background: #ffffff;
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.doctor-image {
    position: relative;
    width: 100%;
}

.doctor-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 5px solid white;
    transition: transform 0.3s;
}

.doctor-image:hover img {
    transform: scale(1.02);
}

.doctor-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
}

.doctor-badge i {
    font-size: 1.3rem;
}

.doctor-info h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.doctor-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.doctor-specialties h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    width: 100%;
}

.specialty-tags span {
    background: #f5f5f5;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    color: #333;
}

.specialty-tags i {
    color: var(--success);
}

.doctor-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.credential {
    display: flex;
    gap: 15px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.credential i {
    font-size: 2rem;
    color: var(--primary);
}

.credential h5 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.credential p {
    font-size: 0.95rem;
    color: #666;
}

.location {
    padding: 100px 20px;
    background: #f5f5f5;
}

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

.timings h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.timing-info, .address {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.timing-info i, .address i {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 5px;
}

.timing-info p, .address p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.map iframe {
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
}

.appointment {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.appointment-content {
    max-width: 800px;
    margin: 0 auto;
}

.appointment-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.appointment-icon i {
    font-size: 3rem;
}

.appointment h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.appointment p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews {
    padding: 100px 20px;
    background: #ffffff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

.review-card {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

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

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
}

.stars {
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.review-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.reviewer strong {
    color: #1a1a1a;
    font-size: 1.1rem;
}

.reviewer span {
    color: #999;
    font-size: 0.9rem;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.footer-logo h3 {
    font-size: 1.3rem;
}

.footer-about p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    text-decoration: none;
}

.footer-links-section h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

.footer-links-section li,
.footer-services li {
    margin-bottom: 12px;
}

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

.footer-links-section a:hover,
.footer-services a:hover {
    color: white;
    padding-left: 5px;
}

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

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.contact-item a:hover {
    color: white;
    text-decoration: none;
}

.contact-item p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.copyright {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

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

.developer a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s;
}

.developer a:hover {
    color: white;
    text-decoration: none;
}

@media (max-width: 968px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: #333;
        font-size: 1.1rem;
        padding: 18px 30px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s;
    }
    
    .nav-links a:hover {
        background: #f5f5f5;
        color: var(--primary);
        padding-left: 40px;
    }
    
    .nav-btn {
        background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
        color: white !important;
        margin: 20px;
        width: calc(100% - 40px);
        justify-content: center;
        border-radius: 50px;
        border-bottom: none !important;
    }
    
    .nav-btn:hover {
        transform: translateY(-2px) !important;
        padding-left: 30px !important;
        box-shadow: 0 5px 15px rgba(0,102,204,0.3);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 15px 80px;
        min-height: auto;
        margin-top: 80px;
    }
    
    .trust-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-icon i {
        font-size: 1.5rem;
    }
    
    .trust-item span {
        font-size: 0.9rem;
    }
    
    .about-grid,
    .doctor-content,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .doctor-credentials {
        grid-template-columns: 1fr;
    }
    
    .call-float {
        right: 30px;
        bottom: 100px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .logo img {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h3 {
        font-size: 0.9rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .nav-links {
        width: 85%;
        max-width: 280px;
    }
    
    .hero {
        padding: 100px 12px 60px;
        margin-top: 70px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .trust-points {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-icon i {
        font-size: 1.3rem;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 18px;
    }
    
    .section-desc {
        font-size: 0.95rem;
    }
    
    .about-badge {
        left: 10px;
        bottom: 10px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .about-badge i {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .whatsapp-float, .call-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 15px;
    }
    
    .whatsapp-float {
        right: 12px;
    }
    
    .call-float {
        right: 12px;
        bottom: 75px;
    }
    
    .doctor-image img {
        max-width: 100%;
    }
    
    .doctor-badge {
        left: 10px;
        bottom: 10px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .specialty-tags {
        justify-content: center;
    }
    
    .specialty-tags span {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .review-card {
        padding: 25px 18px;
    }
    
    .timing-info, .address {
        padding: 18px;
        flex-direction: column;
        gap: 12px;
    }
    
    .timing-info i, .address i {
        font-size: 1.4rem;
    }
    
    .map iframe {
        height: 280px;
    }
    
    .appointment h2 {
        font-size: 1.75rem;
    }
    
    .appointment p {
        font-size: 0.95rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-about p {
        font-size: 0.9rem;
    }
    
    .about, .services, .why-choose, .doctor-profile, .location, .appointment, .reviews {
        padding: 60px 12px;
    }
    
    .stats, footer {
        padding: 50px 12px 30px;
    }
}
