/*** SHREE VASUDEV DENTAL CLINIC - FULLY RESPONSIVE WITH NO HORIZONTAL SCROLL ***/
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --secondary: #14b8a6;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --accent: #f59e0b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; color: var(--gray-700); background: var(--white); line-height: 1.6; overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }

/*** NAVBAR ***/
.header { position: fixed; top: 0; left: 0; width: 100%; max-width: 100vw; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; max-width: 1200px; margin: 0 auto; width: 100%; }
.logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo img { width: 45px; height: 45px; object-fit: contain; max-width: 45px; }
.logo-text { font-size: 1.35rem; font-weight: 700; color: var(--gray-800); white-space: nowrap; }
.logo-text .highlight { color: var(--primary); }
.nav-menu { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; justify-content: center; }
.nav-link { padding: 0.6rem 0.75rem; font-size: 0.85rem; font-weight: 500; color: var(--gray-700); border-radius: 25px; position: relative; white-space: nowrap; }
.nav-link::before { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 3px; transition: 0.3s; transform: translateX(-50%); }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(14,165,233,0.08); }
.nav-link:hover::before, .nav-link.active::before { width: 60%; }
.header-buttons { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 600; border-radius: 8px; border: none; cursor: pointer; transition: 0.3s; white-space: nowrap; }
.btn-call { background: var(--primary); color: var(--white); }
.btn-call:hover { background: var(--primary-dark); }
.btn-appointment { background: var(--secondary); color: var(--white); }
.btn-appointment:hover { background: #0d9488; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); padding: 0.75rem 1.5rem; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(14,165,233,0.3); }

/*** MOBILE MENU - FIXED HAMBURGER ICON ***/
.menu-toggle { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 22px; background: none; border: none; cursor: pointer; padding: 0; z-index: 1001; flex-shrink: 0; }
.menu-toggle span { display: block; width: 100%; height: 3px; background: var(--gray-800); border-radius: 3px; transition: 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/*** HERO ***/
.hero { min-height: 100vh; display: flex; align-items: center; padding: 80px 1.5rem 4rem; background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0ea5e9 100%); position: relative; overflow: hidden; width: 100%; max-width: 100vw; }
.hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(14,165,233,0.3) 0%, transparent 70%); border-radius: 50%; max-width: 80vw; }
.hero::after { content: ''; position: absolute; bottom: -20%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(20,184,166,0.2) 0%, transparent 70%); border-radius: 50%; max-width: 60vw; }
.hero-content { position: relative; z-index: 1; max-width: 700px; color: var(--white); width: 100%; }
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-title .highlight { color: var(--secondary); }
.hero-subtitle { font-size: clamp(0.95rem, 2vw, 1.25rem); margin-bottom: 2rem; opacity: 0.9; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-buttons .btn { padding: 0.75rem 1.5rem; }
.hero-features { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.feature-item i { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; flex-shrink: 0; }

/*** SECTIONS ***/
section { padding: 4rem 1.5rem; width: 100%; max-width: 100vw; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-subtitle { display: inline-block; color: var(--primary); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; color: var(--gray-800); }

/*** ABOUT ***/
.about { background: var(--white); }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; }
.about-image { position: relative; width: 100%; }
.about-image img { width: 100%; height: auto; min-height: 250px; max-height: 400px; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.about-image-badge { position: absolute; bottom: 1rem; right: 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); padding: 1rem; border-radius: 12px; text-align: center; }
.about-image-badge .years { display: block; font-size: 2rem; font-weight: 700; }
.about-text { color: var(--gray-500); margin-bottom: 1rem; font-size: 0.95rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.5rem 0; }
.about-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.about-feature i { color: var(--primary); flex-shrink: 0; }
.about-location { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(20,184,166,0.08)); border-radius: 12px; margin-top: 1.5rem; border-left: 4px solid var(--primary); }
.about-location i { color: var(--primary); margin-top: 0.25rem; flex-shrink: 0; }
.about-location span { font-size: 0.9rem; }

/*** SERVICES ***/
.services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.service-card { background: var(--white); padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; text-align: center; border: 1px solid var(--gray-100); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.service-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 12px; color: var(--white); font-size: 1.5rem; }
.service-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--gray-800); }
.service-card p { color: var(--gray-500); font-size: 0.85rem; }

/*** TREATMENTS ***/
.treatments { background: var(--white); }
.treatments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.treatment-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid var(--gray-100); }
.treatment-card:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.treatment-image { height: 160px; overflow: hidden; }
.treatment-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.treatment-card:hover .treatment-image img { transform: scale(1.1); }
.treatment-content { padding: 1rem; }
.treatment-content h3 { font-size: 0.95rem; margin-bottom: 0.35rem; color: var(--gray-800); }
.treatment-content p { color: var(--gray-500); font-size: 0.85rem; }

/*** WHY CHOOSE US ***/
.why-choose-us { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); }
.why-choose-us .section-subtitle, .why-choose-us .section-title, .why-choose-us .section-description { color: var(--white); }
.why-choose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.why-choose-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); padding: 1.5rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; text-align: center; }
.why-choose-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); border-color: var(--primary); }
.why-choose-icon { width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; color: var(--white); font-size: 1.25rem; }
.why-choose-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.why-choose-card p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

/*** REVIEWS ***/
.reviews { background: var(--gray-50); }
.rating-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; margin-top: 1rem; font-size: 0.9rem; }
.rating-badge i { color: var(--accent); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; max-width: 1200px; margin-left: auto; margin-right: auto; width: 100%; }
.review-card { background: var(--white); padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid var(--gray-100); }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.review-avatar { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; color: var(--white); flex-shrink: 0; }
.review-info h4 { font-size: 0.95rem; color: var(--gray-800); }
.review-rating { display: flex; gap: 0.15rem; }
.review-rating i { color: var(--accent); font-size: 0.8rem; }
.review-text { color: var(--gray-500); font-size: 0.9rem; font-style: italic; }
.reviews-cta { text-align: center; }

/*** GALLERY ***/
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.gallery-item { position: relative; height: 200px; border-radius: 12px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(14,165,233,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 1.75rem; }

/*** APPOINTMENT ***/
.appointment { background: linear-gradient(135deg, var(--gray-100), var(--white)); }
.appointment-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; max-width: 1200px; margin: 0 auto; width: 100%; }
.appointment-features { display: flex; flex-direction: column; gap: 1rem; }
.appointment-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.appointment-feature i { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--primary); color: var(--white); border-radius: 8px; flex-shrink: 0; }
.appointment-feature h4 { font-size: 0.95rem; color: var(--gray-800); }
.appointment-feature p { color: var(--gray-500); font-size: 0.85rem; }
.appointment-form-container { background: var(--white); padding: 1.5rem; border-radius: 16px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); width: 100%; max-width: 100%; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 500; color: var(--gray-700); margin-bottom: 0.35rem; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem; border: 2px solid var(--gray-200); border-radius: 8px; font-size: 0.95rem; transition: 0.3s; background: var(--white); max-width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.1); }

/*** CONTACT ***/
.contact { background: var(--white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2.5rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; gap: 0.75rem; padding: 1rem; background: var(--gray-100); border-radius: 12px; transition: 0.3s; }
.contact-card:hover { background: var(--gray-200); transform: translateX(4px); }
.contact-icon { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); border-radius: 8px; flex-shrink: 0; }
.contact-details h3 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--gray-800); }
.contact-details p { color: var(--gray-500); font-size: 0.85rem; }
.contact-buttons { display: flex; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.1); width: 100%; }
.contact-map iframe { border: none; width: 100%; height: 350px; }

/*** FOOTER ***/
.footer { background: var(--gray-900); color: var(--gray-500); width: 100%; max-width: 100vw; overflow: hidden; }
.footer-top { padding: 3rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.footer-about .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { width: 40px; height: 40px; max-width: 40px; }
.footer-logo span { font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-logo .highlight { color: var(--primary); }
.footer-about p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 8px; color: var(--white); transition: 0.3s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--gray-500); transition: 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 0.35rem; }
.footer-contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; }
.footer-contact i { color: var(--primary); margin-top: 0.15rem; flex-shrink: 0; }
.footer-bottom { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.85rem; }

/*** FLOATING BUTTONS ***/
.floating-buttons { position: fixed; bottom: 1rem; right: 1rem; display: flex; flex-direction: column; gap: 0.5rem; z-index: 999; }
.fab-btn { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--white); font-size: 1.2rem; box-shadow: 0 8px 16px rgba(0,0,0,0.15); transition: 0.3s; }
.fab-call { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.fab-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.fab-btn:hover { transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(14,165,233,0.7); } 70% { box-shadow: 0 0 0 12px rgba(14,165,233,0); } 100% { box-shadow: 0 0 0 0 rgba(14,165,233,0); } }
.back-to-top { position: fixed; bottom: 6rem; right: 1rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gray-800), var(--gray-700)); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 1rem; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 998; }
.back-to-top.visible { opacity: 1; display: none; }
.back-to-top:hover { background: var(--primary); transform: translateY(-2px); }

/*** RESPONSIVE - LAPTOP 1440px ***/
@media (max-width: 1200px) {
  .container { max-width: 960px; }
  .about-wrapper, .appointment-wrapper { gap: 2.5rem; }
  .footer-grid { gap: 1.5rem; }
}

/*** RESPONSIVE - TABLET 1024px ***/
@media (max-width: 1024px) {
  .container { max-width: 720px; }
  section { padding: 3rem 1.25rem; }
  
  .about-wrapper, .appointment-wrapper, .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  
  .hero::before { width: 350px; height: 350px; }
  .hero::after { width: 280px; height: 280px; }
  
  .nav-list { gap: 0.15rem; }
  .nav-link { padding: 0.5rem 0.6rem; font-size: 0.8rem; }
  .header-buttons .btn { padding: 0.4rem 0.75rem; font-size: 0.75rem; }
}

/*** RESPONSIVE - TABLET 768px ***/
@media (max-width: 768px) {
  .container { max-width: 100%; padding: 0 1rem; }
  section { padding: 2.5rem 1rem; }
  .section-header { margin-bottom: 2rem; }
  
  /* Navbar */
  .header-buttons { display: none; }
  .menu-toggle { display: flex; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 280px; height: 100vh; background: var(--white); box-shadow: -8px 0 25px rgba(0,0,0,0.15); padding: 4.5rem 1.25rem 1.5rem; transition: 0.3s; z-index: 999; overflow-y: auto; }
  .nav-menu.active { right: 0; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-link { display: block; width: 100%; padding: 0.75rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--gray-100); border-radius: 0; text-align: left; }
  .nav-link::before { display: none; }
  .nav-link:hover, .nav-link.active { background: transparent; color: var(--primary); padding-left: 0.5rem; }
  
  /* Hero */
  .hero { padding: 60px 1rem 3rem; min-height: auto; }
  .hero-title { font-size: 1.75rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-features { flex-direction: column; gap: 0.75rem; }
  .hero::before { width: 250px; height: 250px; }
  .hero::after { width: 180px; height: 180px; }
  
  /* About */
  .about-wrapper { gap: 1.5rem; }
  .about-image img { min-height: 200px; max-height: 280px; }
  .about-image-badge { bottom: 0.5rem; right: 0.5rem; padding: 0.75rem; }
  .about-image-badge .years { font-size: 1.5rem; }
  .about-features { grid-template-columns: 1fr; }
  
  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  
  /* Treatments */
  .treatments-grid { grid-template-columns: 1fr; }
  
  /* Why Choose Us */
  .why-choose-grid { grid-template-columns: 1fr; }
  
  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  
  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gallery-item { height: 150px; }
  
  /* Appointment */
  .appointment-wrapper { gap: 1.5rem; }
  .appointment-form-container { padding: 1.25rem; }
  
  /* Contact */
  .contact-wrapper { gap: 1.5rem; }
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn { width: 100%; justify-content: center; }
  .contact-map iframe { height: 280px; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; }
  .footer-about .footer-logo, .footer-social { justify-content: center; }
  .footer-links ul, .footer-contact ul { align-items: center; }
  .footer-top { padding: 2rem 1rem; }
  
  /* Floating Buttons */
  .floating-buttons { bottom: 0.75rem; right: 0.75rem; gap: 0.4rem; }
  .fab-btn { width: 44px; height: 44px; font-size: 1.1rem; }
  .back-to-top { bottom: 4.5rem; right: 0.75rem; }
}

/*** RESPONSIVE - MOBILE 576px ***/
@media (max-width: 576px) {
  .container { padding: 0 0.875rem; }
  
  .logo-text { font-size: 1rem; }
  .logo img { width: 36px; height: 36px; max-width: 36px; }
  
  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.85rem; }
  .feature-item { font-size: 0.8rem; }
  
  .section-title { font-size: 1.35rem; }
  
  .about-text { font-size: 0.9rem; }
  .about-location { flex-direction: column; text-align: center; }
  .about-location i { margin-top: 0; }
  
  .service-card { padding: 1.25rem; }
  .service-icon { width: 50px; height: 50px; font-size: 1.25rem; }
  
  .treatment-image { height: 140px; }
  
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 180px; }
  
  .appointment-feature { flex-direction: column; text-align: center; }
  .appointment-feature i { margin: 0 auto; }
  
  .contact-card { flex-direction: column; text-align: center; }
  .contact-icon { margin: 0 auto; }
  
  .footer-logo span { font-size: 1rem; }
}

/*** RESPONSIVE - SMALL MOBILE 360px ***/
@media (max-width: 400px) {
  .hero-title { font-size: 1.35rem; }
  .hero-buttons .btn { padding: 0.6rem 1rem; font-size: 0.8rem; }
  .section-title { font-size: 1.25rem; }
  .service-card h3 { font-size: 0.95rem; }
  .treatment-content h3 { font-size: 0.9rem; }
  .review-card { padding: 1.1rem; }
  .review-text { font-size: 0.85rem; }
  .form-group input, .form-group select, .form-group textarea { padding: 0.6rem; font-size: 0.9rem; }
  .btn { padding: 0.5rem 0.875rem; font-size: 0.75rem; }
}
