/* ============================================
   SMILE OF INDIA — 2026 Conversion-Focused CSS
   ============================================ */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* --- VARIABLES --- */
:root {
    --primary: #48296f;
    --primary-dark: #2f1a4a;
    --primary-light: #6b3fa3;
    --accent: #f4aa1c;
    --accent-hover: #d9950f;
    --gradient-main: linear-gradient(135deg, #48296f 0%, #6b3fa3 50%, #cb44c2 100%);
    --gradient-cta: linear-gradient(135deg, #48296f 0%, #cb44c2 50%, #f4aa1c 100%);
    --text: #1a1a2e;
    --text-light: #555;
    --white: #fff;
    --bg: #faf9ff;
    --bg-card: #fff;
    --shadow-sm: 0 2px 8px rgba(72,41,111,0.08);
    --shadow-md: 0 8px 30px rgba(72,41,111,0.12);
    --shadow-lg: 0 20px 60px rgba(72,41,111,0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
    --font: 'Inter', -apple-system, sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* --- TOP BAR --- */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 0;
    display: none;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-phone { color: var(--accent); font-weight: 600; transition: color var(--transition); }
.top-bar-phone:hover { color: var(--white); }

/* --- HEADER --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(72,41,111,0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 20px;
}
.logo { flex-shrink: 0; }
.logo img { height: 42px; width: auto; }

.nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav a {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    transition: all var(--transition);
    white-space: nowrap;
}
.nav a:hover { background: rgba(72,41,111,0.06); color: var(--primary); }
.nav a.active { background: var(--primary); color: var(--white); }

.desk-only { display: inline-flex; }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.08); }
    100% { transform: scale(1.18); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.75) 0%, rgba(72,41,111,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 750px;
}
.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text);
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(244,170,28,0.3);
}
@media (max-width: 768px) {
    .hero-badge { font-size: 11px; padding: 6px 16px; margin-bottom: 20px; }
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}
.text-accent { color: var(--accent); }
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    margin-bottom: 36px;
    opacity: 0.9;
    line-height: 1.5;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 500px;
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-accent {
    background: var(--accent);
    color: var(--text);
    border-color: var(--accent);
}
.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244,170,28,0.35);
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72,41,111,0.3);
}
.btn-light {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-light:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    transition: gap var(--transition);
}
.btn-sm:hover { gap: 10px; color: var(--accent); }

/* --- TRUST BANNER --- */
.trust-banner {
    background: var(--white);
    border-bottom: 1px solid rgba(72,41,111,0.06);
    padding: 20px 0;
}
.trust-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}
.trust-icon { font-size: 22px; }

/* --- SECTIONS --- */
.section { padding: 90px 0; }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}
.section-tag {
    display: inline-block;
    background: rgba(72,41,111,0.08);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text);
}
.section-desc { color: var(--text-light); font-size: 16px; }

/* --- SERVICES --- */
.services { background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(72,41,111,0.05);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(72,41,111,0.1);
}
.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-info { padding: 22px; }
.service-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.service-info p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.5;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: var(--text-light);
}
.services-cta a { color: var(--primary); font-weight: 600; }
.services-cta a:hover { color: var(--accent); }

/* --- ABOUT PREVIEW --- */
.about-preview { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text .section-title { margin-bottom: 20px; }
.about-text p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}
.about-list {
    list-style: none;
    margin-bottom: 28px;
}
.about-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-image img { width: 100%; border-radius: var(--radius); }
.about-exp-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    text-align: center;
    line-height: 1.3;
}
.about-exp-badge strong {
    display: block;
    font-size: 24px;
    color: var(--primary);
}
.about-exp-badge span { font-size: 12px; color: var(--text-light); }

/* --- TESTIMONIALS --- */
.testimonials { background: var(--bg); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(72,41,111,0.05);
    transition: all var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stars { color: var(--accent); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--text); }
.testimonial-author span { font-size: 12px; color: var(--text-light); }

/* --- CTA BANNER --- */
.cta-banner {
    background: var(--gradient-cta);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- FAQ --- */
.faq { background: var(--white); }
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid rgba(72,41,111,0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(72,41,111,0.15); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    transition: background var(--transition);
}
.faq-q:hover { background: rgba(72,41,111,0.03); }
.faq-icon { font-size: 20px; transition: transform var(--transition); color: var(--primary); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 22px 18px;
}
.faq-a p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* --- FOOTER --- */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo { height: 38px; margin-bottom: 16px; }
.footer-brand p { opacity: 0.6; font-size: 13px; line-height: 1.8; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    font-size: 12px; font-weight: 700;
    transition: background var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--text); }
.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--accent);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a, .footer-contact li {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-contact li { display: flex; align-items: center; gap: 6px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p { font-size: 12px; opacity: 0.4; }

/* --- FLOATING CTA --- */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-size: 22px;
}
.call-btn {
    background: #25d366;
    color: var(--white);
}
.call-btn:hover { transform: scale(1.1); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }
.book-btn {
    background: var(--accent);
    color: var(--text);
    width: auto;
    padding: 0 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    gap: 6px;
}
.book-btn:hover { transform: scale(1.05); box-shadow: 0 12px 30px rgba(244,170,28,0.4); }

/* --- PAGE HEADER --- */
.page-header {
    background: var(--gradient-main);
    color: var(--white);
    text-align: center;
    padding: 80px 24px;
}
.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
}
.page-header p { font-size: 17px; margin-top: 12px; opacity: 0.85; }

/* --- ABOUT PAGE --- */
.about-page-content { padding: 90px 0; }
.about-page-content .about-grid { margin-bottom: 80px; }
.about-page-content .about-text p { color: var(--text-light); }
.team-section { background: var(--bg); padding: 90px 0; }
.team-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 48px;
    color: var(--text);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}
.team-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(72,41,111,0.05);
    transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--accent);
}
.team-card h3 { font-size: 18px; color: var(--text); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--text-light); }

/* --- CONTACT PAGE --- */
.contact-section { padding: 90px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info h2 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    margin-bottom: 16px;
}
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }
.contact-detail {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(72,41,111,0.05);
}
.contact-detail strong { display: block; color: var(--primary); margin-bottom: 4px; font-size: 14px; }
.contact-detail span { color: var(--text-light); font-size: 14px; }
.contact-detail a { color: var(--primary); font-weight: 600; }

.contact-form-wrap {
    background: var(--bg-card);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(72,41,111,0.05);
}
.contact-form-wrap h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text);
}
.contact-form-wrap > p { color: var(--text-light); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(72,41,111,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    transition: border-color var(--transition);
    background: var(--bg);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* --- CASES PAGE --- */
.cases-list { display:grid; gap:28px; max-width:860px; margin:0 auto; }
.case-card {
    display:grid; grid-template-columns:280px 1fr; gap:0;
    background:var(--bg-card); border-radius:var(--radius); overflow:hidden;
    box-shadow:var(--shadow-sm); border:1px solid rgba(72,41,111,0.05);
    transition:all var(--transition);
}
.case-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.case-card-img { height:100%; min-height:200px; overflow:hidden; }
.case-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s; }
.case-card:hover .case-card-img img { transform:scale(1.06); }
.case-card-body { padding:28px; }
.case-tag {
    display:inline-block;
    background:rgba(72,41,111,0.08); color:var(--primary);
    padding:4px 12px; border-radius:var(--radius-full);
    font-size:11px; font-weight:700; text-transform:uppercase;
    letter-spacing:0.5px; margin-bottom:10px;
}
.case-card-body h3 { font-size:17px; font-weight:700; margin-bottom:10px; color:var(--text); line-height:1.3; }
.case-card-body p { font-size:14px; color:var(--text-light); line-height:1.7; margin-bottom:16px; }

@media (max-width:768px) {
    .case-card { grid-template-columns:1fr; }
    .case-card-img { height:200px; }
    .case-card-body { padding:20px; }
}

/* --- ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (min-width: 769px) {
    .top-bar { display: block; }
    .nav { display: flex !important; }
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .instagenie-grid img { width:120px!important; height:120px!important; }
    .instagenie-slider-prev, .instagenie-slider-next { width:28px!important; height:28px!important; }
    .instagenie-slider-prev svg, .instagenie-slider-next svg { width:18px!important; height:18px!important; }
    .team-card-lead { grid-template-columns:1fr !important; text-align:center !important; }
    .team-card-lead > div:first-child { text-align:center; }
    .team-card-lead img { margin:0 auto 12px !important; }
    .team-card-lead h3 { text-align:center; }
    .team-card-lead > div:last-child { text-align:center; }
    .team-card-lead > div:last-child p { text-align:center !important; }
    .team-card-lead .btn-sm { margin:0 auto; }
    .top-bar { display: block; font-size: 12px; }
    .top-bar-phone { display: none; }

    .header-inner { padding: 12px 16px; }
    .logo img { height: 34px; }

    .desk-only { display: none; }
    .menu-toggle { display: flex; }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 16px;
        border-top: 1px solid rgba(72,41,111,0.06);
    }
    .nav.open { display: block; }
    .nav ul { flex-direction: column; gap: 4px; }
    .nav a { display: block; padding: 12px 16px; }

    .hero { min-height: 85vh; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: none; }

    .hide-mobile { display: none; }

    .trust-grid { gap: 16px; justify-content: flex-start; }
    .trust-item { font-size: 12px; }

    .section { padding: 60px 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .service-img { height: 140px; }
    .service-info { padding: 14px; }
    .service-info h3 { font-size: 14px; }
    .service-info p { font-size: 12px; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .cta-banner { padding: 60px 0; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 300px; }

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

    .floating-cta { bottom: 16px; right: 16px; flex-direction: row; }
    .floating-btn { width: 50px; height: 50px; font-size: 18px; }
    .book-btn { width: auto; padding: 0 18px; font-size: 13px; }

    .contact-form-wrap { padding: 24px; }
    .contact-grid { gap: 32px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .service-img { height: 120px; }
    .hero { min-height: 80vh; }
    .hero-badge { font-size: 11px; }
    .stat-label { font-size: 9px; letter-spacing: 0.5px; }
}

@media (max-width: 400px) {
    .stat-label { font-size: 8px; letter-spacing: 0.3px; }
}
