:root {
    /* Colors from Figma */
    --primary-color: #2D6A2D;
    --primary-dark: #1E5C1E;
    --primary-light: #F0F7EE;
    --accent-color: #3D7A3D;
    
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #FFFFFF;
    
    --bg-light: #FFFFFF;
    --bg-soft: #F9FBF9;
    --bg-dark: #1A231A;
    
    --border-color: #E0E0E0;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1400px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 5.5rem; font-weight: 900; }
h2 { font-size: 3.5rem; font-weight: 800; }
h3 { font-size: 2rem; font-weight: 700; }
h4 { font-size: 1.5rem; font-weight: 700; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

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

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

/* Header */
.main-header {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

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

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

/* ── Hamburger Button ─────────────────────────────── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.mobile-toggle:hover { background: var(--primary-light); }

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger → X animation */
.mobile-toggle.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Overlay ───────────────────────────── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ── Mobile Nav Drawer (slide from right) ─────────── */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100dvh;
    background: #fff;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
}
.mobile-nav-drawer.active { transform: translateX(0); }

/* Drawer Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.drawer-logo span {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}
.mobile-close-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
    flex-shrink: 0;
}
.mobile-close-btn:hover { background: var(--primary-color); color: #fff; }

/* Drawer Nav Links */
.mobile-nav-links {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    flex: 1;
}
.mobile-nav-links li { border-bottom: 1px solid #f5f5f5; }
.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 26px;
}
.mobile-nav-links a.active { border-left: 4px solid var(--primary-color); }
.mnl-icon {
    width: 34px;
    height: 34px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.2s;
}
.mobile-nav-links a:hover .mnl-icon,
.mobile-nav-links a.active .mnl-icon {
    background: var(--primary-color);
    color: #fff;
}
.mnl-label { flex: 1; }
.mnl-arrow {
    font-size: 0.7rem;
    opacity: 0.4;
    transition: all 0.2s;
}
.mobile-nav-links a:hover .mnl-arrow,
.mobile-nav-links a.active .mnl-arrow { opacity: 1; transform: translateX(3px); }

/* Drawer CTA */
.mobile-nav-cta {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
}
.mobile-cta-btn:hover { background: var(--primary-dark); transform: translateY(-2px); color: #fff; }
.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.2s;
}
.mobile-phone-link:hover { border-color: var(--primary-color); color: var(--primary-color); }

/* Desktop: hide drawer elements */
.desktop-book-btn { display: inline-block; }

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-info h3 { color: white; }
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

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

.footer-links ul li { margin-bottom: 10px; }
.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #AAA;
}

.legal-links { display: flex; gap: 20px; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecee?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    max-width: 900px;
    margin: 0 auto 30px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

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

/* Sections General */
section { padding: var(--section-padding); }
.bg-soft { background-color: var(--bg-soft); }
.bg-dark { background-color: var(--bg-dark); }
.text-white { color: white; }
.text-center { text-align: center; }
.sub-title {
    display: block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header { margin-bottom: 50px; }
.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Philosophy */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.philosophy-card:hover { 
    background: white;
    transform: translateY(-15px) scale(1.02); 
    box-shadow: var(--shadow-lg); 
    border-color: var(--primary-color);
}

.philosophy-card .icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 30px;
    font-size: 2rem;
    transition: all 0.5s ease;
}

.philosophy-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

/* Treatments Grid */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.treatment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.treatment-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); }
.card-image { position: relative; overflow: hidden; height: 280px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.treatment-card:hover .card-image img { transform: scale(1.1); }
.card-content { padding: 40px 30px; }
.card-content h3 { margin-bottom: 15px; font-weight: 800; color: var(--primary-color); font-size: 1.5rem; }
.card-content p { color: var(--text-gray); line-height: 1.7; margin-bottom: 25px; }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-link:hover { gap: 15px; }

/* Conditions */
.conditions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.condition-pill {
    padding: 12px 25px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-weight: 500;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    padding: 20px 30px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 30px 20px;
    color: var(--text-gray);
    display: none;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
}

.cta-content h2 { font-size: 3rem; margin-bottom: 20px; color: white; }
.cta-content p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }

/* Inner Hero */
.inner-hero {
    padding: 100px 0;
    text-align: center;
    color: white;
    background-size: cover !important;
    background-position: center !important;
}

.inner-hero h1 { font-size: 3.5rem; margin-bottom: 15px; }
.inner-hero p { font-size: 1.2rem; opacity: 0.9; }

/* Section Grid */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.flex-row-reverse { direction: rtl; }
.flex-row-reverse > * { direction: ltr; }

.section-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.image-wrapper { position: relative; }
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

/* Pancha Bhoota Elements */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.element-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.element-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.element-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.element-card h4 { color: white; margin-bottom: 15px; }
.element-card p { font-size: 0.9rem; opacity: 0.8; }

/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    padding: 50px;
    background: var(--primary-light);
    border-radius: 12px;
}

.vm-card h3 { color: var(--primary-color); margin-bottom: 20px; }

/* Utilities */
.max-width-700 { max-width: 700px; }
.margin-auto { margin: 0 auto; }
.opacity-0.8 { opacity: 0.8; }
.text-primary { color: var(--primary-color); }

/* Treatment Hero */
.treatment-hero { padding: 100px 0; }
.hero-desc { font-size: 1.25rem; color: var(--text-gray); margin-bottom: 30px; }

/* Lists */
.check-list { margin-top: 30px; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}
.check-list i { color: var(--primary-color); font-size: 1.2rem; }

/* Light Button */
.btn-light { background: white; color: var(--primary-color); }
.btn-light:hover { background: #EEE; transform: translateY(-2px); }

/* Experience Banner */
.experience-banner { padding: 80px 0; background-attachment: fixed !important; background-size: cover !important; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i { font-size: 1.3rem; }

/* =====================================================
   TABLET - 992px
   ===================================================== */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    /* Hide desktop nav, show hamburger */
    .nav-links { display: none !important; }
    .mobile-toggle { display: flex !important; }
    .desktop-book-btn { display: none !important; }

    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    h3 { font-size: 1.6rem !important; }

    /* Grids → single column */
    .section-grid,
    .vm-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

    .philosophy-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .elements-grid   { grid-template-columns: repeat(3, 1fr) !important; }
    .section-text    { padding-right: 0 !important; }

    .exp-card { right: 10px !important; bottom: 10px !important; }
    .director-features { grid-template-columns: 1fr !important; }
    .conditions-circles { gap: 25px !important; }
}

/* =====================================================
   MOBILE - 768px
   ===================================================== */
@media (max-width: 768px) {

    /* --- Global typography --- */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.7rem !important; }
    h3 { font-size: 1.35rem !important; }
    h4 { font-size: 1.1rem !important; }

    /* --- Global section spacing --- */
    section { padding: 55px 0 !important; }
    :root { --section-padding: 55px 0; }

    .container { padding: 0 16px; }

    /* --- Header / Nav --- */
    .main-header { padding: 10px 0; }
    .logo-text   { font-size: 1.1rem !important; }
    .logo img    { height: 34px !important; }
    .header-cta .btn {
        padding: 9px 14px !important;
        font-size: 0.8rem !important;
        border-radius: 8px !important;
    }

    /* --- WhatsApp Float - icon only on mobile --- */
    .whatsapp-float {
        padding: 12px !important;
        border-radius: 50% !important;
        bottom: 18px;
        right: 14px;
        width: 48px;
        height: 48px;
        justify-content: center;
    }
    .whatsapp-float i { font-size: 1.4rem; margin: 0; }
    .whatsapp-float span { display: none; }

    /* --- Buttons --- */
    .btn { padding: 11px 22px !important; font-size: 0.9rem !important; }
    .btn-primary, .btn-outline, .btn-light {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
        border-radius: 30px !important;
    }

    /* --- Hero (Home) --- */
    .hero-section { padding: 80px 0 60px !important; min-height: auto !important; }
    .hero-content h2 { font-size: 2rem !important; line-height: 1.2 !important; margin-bottom: 16px !important; }
    .hero-content p  { font-size: 1rem !important; margin-bottom: 28px !important; }
    .hero-actions    { flex-direction: column !important; gap: 12px !important; align-items: flex-start !important; }
    .hero-actions .btn { width: 100% !important; text-align: center !important; }

    /* --- Philosophy cards --- */
    .philosophy-grid { grid-template-columns: 1fr 1fr !important; gap: 15px !important; }
    .phil-card       { padding: 25px 18px !important; }
    .phil-card h4    { font-size: 1rem !important; }
    .phil-card p     { font-size: 0.82rem !important; }

    /* --- Treatments grid (Home & Treatments page) --- */
    .treatments-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .card-image, .treatment-card .card-image { height: 200px !important; }
    .card-content { padding: 22px 18px !important; }
    .card-content h3, .card-content h4 { font-size: 1.1rem !important; margin-bottom: 10px !important; }
    .card-content p  { font-size: 0.88rem !important; margin-bottom: 16px !important; }

    /* Treatments section header flex → stack */
    .section-header.flex-header,
    div[style*="justify-content: space-between"][style*="align-items: flex-end"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    /* --- Conditions section --- */
    .conditions-circles { gap: 18px !important; }
    .cond-item div[style*="width: 80px"] {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.4rem !important;
    }

    /* --- Why Choose section --- */
    .wc-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
    .wc-grid > div { padding: 22px !important; }

    /* --- FAQ --- */
    .faq-question { padding: 16px 20px !important; font-size: 0.95rem !important; }
    .faq-answer   { padding: 0 20px 16px !important; font-size: 0.88rem !important; }

    /* --- Contact section on home --- */
    .contact-form-box { padding: 28px 20px !important; border-radius: 20px !important; }
    .contact-form-box div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .contact-form-box input,
    .contact-form-box textarea { padding: 13px !important; font-size: 0.9rem !important; }

    /* --- Inner Hero (used on treatments, gallery, contact pages) --- */
    .inner-hero { padding: 60px 0 !important; }
    .inner-hero h1 { font-size: 1.8rem !important; margin-bottom: 10px !important; }
    .inner-hero p  { font-size: 0.95rem !important; }

    /* --- About Hero --- */
    .about-hero { min-height: 55vh !important; }
    .about-hero h2 {
        font-size: 1.8rem !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
    }
    .about-hero p  { font-size: 0.95rem !important; }

    /* --- About: Approach grid 5-col → 2-col --- */
    .approach-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .approach-item { padding: 20px 15px !important; }

    /* --- About: Specialties 4-col → 2-col --- */
    .specialties-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .spec-card { padding: 22px 16px !important; }

    /* --- Vision & Mission --- */
    .vm-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .vm-card { padding: 30px 22px !important; }
    .vm-card h3 { font-size: 1.5rem !important; }

    /* --- Director section --- */
    .director-section { padding: 55px 0 !important; }
    .director-section .section-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .exp-card {
        position: static !important;
        margin-top: 16px !important;
        border-radius: 12px !important;
        padding: 16px !important;
    }
    .exp-card h4 { font-size: 1.5rem !important; }
    .director-features { grid-template-columns: 1fr 1fr !important; gap: 12px 20px !important; }

    /* --- Treatment Hero (detail page) --- */
    .treatment-hero { padding: 50px 0 !important; }
    .treatment-hero .section-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .treatment-hero h1 { font-size: 1.9rem !important; margin-bottom: 16px !important; }
    .treatment-hero .hero-desc { font-size: 0.95rem !important; margin-bottom: 24px !important; }
    .treatment-hero .hero-actions { flex-direction: column !important; gap: 12px !important; }
    .treatment-hero .hero-actions .btn { width: 100% !important; text-align: center !important; }
    /* hide decorative border box behind image */
    .treatment-hero .section-image > div[style*="position: absolute"] { display: none !important; }

    /* --- Dynamic sections (treatment detail) --- */
    .treatment-section { padding: 50px 0 !important; }

    /* split_content */
    .treatment-section .section-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        direction: ltr !important;
    }
    .treatment-section .section-text { direction: ltr !important; }
    .treatment-section h2 { font-size: 1.6rem !important; margin-bottom: 18px !important; }

    /* benefits grid */
    .benefits-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .benefit-card  { padding: 28px 22px !important; }
    .benefit-card h3 { font-size: 1.2rem !important; }

    /* pancha bhoota 5-col → 2-col */
    .elements-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; margin-top: 28px !important; }
    .element-card  { padding: 22px 12px !important; }
    .element-card h4 { font-size: 1rem !important; }
    .pancha-bhoota-wrapper h2 { font-size: 1.7rem !important; margin-bottom: 12px !important; }
    .pancha-bhoota-wrapper p  { font-size: 0.9rem !important; margin-bottom: 28px !important; }

    /* process steps */
    .process-timeline { padding-left: 36px !important; }
    .process-step h3  { font-size: 1.15rem !important; }
    .process-step p   { font-size: 0.9rem !important; }

    /* modalities grid */
    .modalities-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .modality-card .card-image { height: 180px !important; }
    .modality-card .card-content { padding: 22px !important; }

    /* conditions list */
    .conditions-container { grid-template-columns: 1fr !important; gap: 16px !important; }
    .condition-card { padding: 26px 20px !important; }
    .condition-card h3 { font-size: 1.2rem !important; }

    /* experience banner */
    .experience-banner { background-attachment: scroll !important; padding: 50px 0 !important; }
    .experience-banner h2 { font-size: 1.8rem !important; margin-bottom: 14px !important; }
    .experience-banner p  { font-size: 0.95rem !important; margin-bottom: 26px !important; }
    .experience-banner div[style*="display: flex"] { flex-direction: column !important; gap: 12px !important; }
    .experience-banner .btn { width: 100% !important; text-align: center !important; }

    /* --- CTA Section --- */
    .cta-section > .container > div { padding: 40px 22px !important; border-radius: 20px !important; }
    .cta-section h2 { font-size: 1.6rem !important; margin-bottom: 14px !important; }
    .cta-section p  { font-size: 0.95rem !important; margin-bottom: 24px !important; }
    .cta-section .btn { padding: 13px 30px !important; font-size: 0.95rem !important; }

    /* --- CTA Banner (treatments page) --- */
    .cta-banner { padding: 60px 0 !important; }
    .cta-banner h2 { font-size: 1.6rem !important; }
    .cta-banner p  { font-size: 0.95rem !important; }
    .cta-banner div[style*="display: flex"] { flex-direction: column !important; gap: 12px !important; }
    .cta-banner .btn { width: 100% !important; text-align: center !important; }

    /* --- Gallery filters --- */
    .gallery-filters { flex-wrap: wrap !important; gap: 8px !important; }
    .filter-btn { padding: 7px 16px !important; font-size: 0.82rem !important; }
    .gallery-card { height: 200px !important; }
    .public-gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }

    /* --- Booking form --- */
    .booking-container { padding: 28px 18px !important; border-radius: 16px !important; margin-top: -30px !important; }
    .booking-container .form-grid { grid-template-columns: 1fr !important; gap: 0 !important; }

    /* --- Contact page --- */
    .contact-section { padding: 50px 0 !important; }
    .contact-section .section-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .contact-form-wrapper .admin-card { padding: 24px 18px !important; }
    .contact-section div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
    .map-section { height: 280px !important; }

    /* --- Testimonials --- */
    .testimonials-section { padding: 50px 0 !important; }
    .testimonials-section h2 { font-size: 1.7rem !important; }
    .testimonial-card { padding: 24px !important; }

    /* --- Footer --- */
    .main-footer { padding: 40px 0 20px !important; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .footer-bottom {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
        font-size: 0.8rem !important;
    }
    .legal-links { justify-content: center !important; }
    .footer-links h4, .footer-contact h4 { margin-bottom: 12px !important; }
    .social-links { margin-top: 14px !important; }
}

/* =====================================================
   SMALL MOBILE - 480px
   ===================================================== */
@media (max-width: 480px) {
    h1 { font-size: 1.7rem !important; }
    h2 { font-size: 1.5rem !important; }

    .philosophy-grid    { grid-template-columns: 1fr !important; }
    .approach-grid      { grid-template-columns: 1fr 1fr !important; }
    .specialties-grid   { grid-template-columns: 1fr !important; }
    .elements-grid      { grid-template-columns: 1fr 1fr !important; }
    .director-features  { grid-template-columns: 1fr !important; }
    .public-gallery-grid{ grid-template-columns: 1fr !important; }

    .hero-content h2 { font-size: 1.7rem !important; }
    .inner-hero h1   { font-size: 1.55rem !important; }
    .about-hero h2   { font-size: 1.55rem !important; }

    /* Treatments listing minmax guard */
    .treatments-grid { grid-template-columns: 1fr !important; }
}
