/* === Free Nasha Mukti Kendra - Main Stylesheet === */
:root {
  --primary: #1b5e20;
  --primary-light: #2e7d32;
  --primary-lighter: #4caf50;
  --primary-bg: #e8f5e9;
  --accent: #ff8f00;
  --accent-dark: #e65100;
  --accent-light: #fff8e1;
  --dark: #1a1a2e;
  --dark-light: #2d2d44;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray: #9e9e9e;
  --gray-light: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Nirmala UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: var(--primary-light); transition: var(--transition); }
a:hover { color: var(--accent); }

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

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

/* === Top Bar === */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--accent); }
.top-bar .phone, .top-bar .whatsapp { display: inline-flex; align-items: center; gap: 6px; }

/* === Header / Nav === */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 24px; font-weight: 700; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-text h1 { font-size: 20px; color: var(--primary); line-height: 1.2; }
.logo-text span { font-size: 12px; color: var(--text-light); }
.logo-text .hi { font-size: 14px; color: var(--accent); }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a { padding: 8px 16px; color: var(--dark); font-size: 15px; font-weight: 500; border-radius: var(--radius-sm); }
.nav a:hover, .nav a.active { background: var(--primary-bg); color: var(--primary); }
.nav .cta-nav { background: var(--accent); color: var(--white); padding: 10px 20px; border-radius: 50px; font-weight: 600; }
.nav .cta-nav:hover { background: var(--accent-dark); }

.menu-toggle { display: none; flex-direction: column; cursor: pointer; padding: 5px; background: none; border: none; }
.menu-toggle span { width: 28px; height: 3px; background: var(--dark); margin: 3px 0; border-radius: 2px; transition: var(--transition); }

/* === Font Awesome === */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* === Hero Section === */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3b0f 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(76,175,80,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-content h2 { font-size: 42px; font-weight: 800; line-height: 1.2; margin-bottom: 15px; }
.hero-content h2 .hi { color: var(--accent); display: block; font-size: 36px; margin-top: 8px; }
.hero-content p { font-size: 18px; opacity: 0.9; margin-bottom: 25px; line-height: 1.8; }
.hero-content p .hi { display: block; margin-top: 5px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 16px; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,143,0,0.4); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-green { background: var(--primary-light); color: var(--white); }
.btn-green:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.4); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image-inner {
  width: 100%; max-width: 450px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-image-inner .icon { font-size: 80px; margin-bottom: 15px; }
.hero-image-inner h3 { font-size: 24px; margin-bottom: 5px; }
.hero-image-inner p { opacity: 0.85; font-size: 14px; }

/* === Location Hero === */
.loc-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.loc-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.loc-hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(27,94,32,0.88) 0%, rgba(13,59,15,0.92) 100%);
}
.loc-hero .container { position: relative; z-index: 2; padding: 60px 20px; }
.loc-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 8px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.loc-hero h1 .hi { color: var(--accent); }
.loc-hero p { font-size: 18px; opacity: 0.95; max-width: 700px; margin: 10px auto 0; }
.loc-hero .breadcrumb { margin-top: 15px; font-size: 14px; }
.loc-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.loc-hero .breadcrumb a:hover { color: var(--accent); }
.loc-hero .breadcrumb span { color: var(--accent); }
.loc-hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.loc-hero-buttons .btn { font-size: 15px; padding: 12px 28px; }

/* === Stats Bar === */
.stats-bar {
  background: var(--white);
  padding: 30px 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item h3 { font-size: 36px; color: var(--primary); font-weight: 800; }
.stat-item p { color: var(--text-light); font-size: 14px; margin-top: 4px; }

/* === Sections === */
section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 36px; color: var(--dark); margin-bottom: 10px; }
.section-title h2 .hi { color: var(--accent); }
.section-title p { color: var(--text-light); max-width: 700px; margin: 0 auto; font-size: 17px; }
.section-title p .hi { display: block; margin-top: 5px; }

/* === About === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-content h3 { font-size: 28px; margin-bottom: 15px; color: var(--primary); }
.about-content p { margin-bottom: 15px; font-size: 16px; }
.about-content ul { list-style: none; margin: 20px 0; }
.about-content ul li { padding: 8px 0; padding-left: 28px; position: relative; }
.about-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-light); font-weight: 700; }
.about-image { background: var(--primary-bg); border-radius: var(--radius); padding: 30px; text-align: center; min-height: 300px; display: flex; align-items: center; justify-content: center; }
.about-image .icon { font-size: 100px; }

/* === Services === */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card .icon { font-size: 50px; margin-bottom: 15px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--primary); }
.service-card p { color: var(--text-light); font-size: 15px; line-height: 1.6; }

/* === Why Choose Us === */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.why-card {
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); }
.why-card .num { font-size: 32px; font-weight: 800; color: var(--primary-lighter); margin-bottom: 10px; }
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { color: var(--text-light); font-size: 14px; }

/* === Testimonials === */
.testimonials { background: var(--primary); color: var(--white); }
.testimonials .section-title h2 { color: var(--white); }
.testimonials .section-title p { color: rgba(255,255,255,0.8); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
}
.testimonial-card .stars { color: var(--accent); font-size: 20px; margin-bottom: 10px; }
.testimonial-card p { font-style: italic; margin-bottom: 15px; opacity: 0.9; }
.testimonial-card .author { font-weight: 600; }
.testimonial-card .location { font-size: 13px; opacity: 0.7; }

/* === Location Grid === */
.locations { background: var(--off-white); }
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.location-link {
  display: block;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
  border-left: 3px solid var(--primary-light);
}
.location-link:hover { background: var(--primary); color: var(--white); border-left-color: var(--accent); transform: translateX(3px); }

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.cta-section h2 { font-size: 36px; margin-bottom: 10px; }
.cta-section h2 .hi { display: block; font-size: 28px; margin-top: 8px; color: var(--accent-light); }
.cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .btn { font-size: 18px; padding: 16px 40px; }
.cta-section .btn-secondary { border-color: var(--white); color: var(--white); }
.cta-section .btn-secondary:hover { background: var(--white); color: var(--accent-dark); }
.cta-info { display: flex; justify-content: center; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.cta-info-item { display: flex; align-items: center; gap: 8px; font-size: 16px; }

/* === Map Section === */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 400px; border: none; display: block; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h3 { font-size: 24px; margin-bottom: 20px; color: var(--primary); }
.contact-detail { display: flex; gap: 15px; margin-bottom: 20px; }
.contact-detail .icon { font-size: 24px; width: 50px; height: 50px; background: var(--primary-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail h4 { font-size: 16px; margin-bottom: 3px; }
.contact-detail p { color: var(--text-light); }

.contact-form { background: var(--off-white); padding: 30px; border-radius: var(--radius); }
.contact-form h3 { font-size: 22px; margin-bottom: 20px; color: var(--primary); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; font-size: 14px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 15px; border: 1px solid var(--gray-light); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(46,125,50,0.1); }
.form-group textarea { height: 120px; resize: vertical; }

/* === Footer === */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: var(--white); font-size: 18px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--accent); }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 3px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact li .icon { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}
.footer-bottom a { color: var(--accent); }

/* === Footer Gallery === */
.footer-gallery { border-top:1px solid rgba(255,255,255,0.1); padding:30px 0; text-align:center; }
.footer-gallery h3 { color:var(--white); font-size:18px; margin-bottom:15px; }
.footer-gallery h3 span { display:block; font-size:14px; color:var(--accent); font-weight:400; }
.footer-gallery-grid { display:grid; grid-template-columns:repeat(8,1fr); gap:10px; max-width:900px; margin:0 auto 15px; }
.fg-item { display:block; aspect-ratio:1; border-radius:6px; background-size:cover; background-position:center; border:2px solid transparent; transition:var(--transition); }
.fg-item:hover { border-color:var(--accent); transform:scale(1.05); }
.fg-cta { font-size:14px; color:rgba(255,255,255,0.7); }
.fg-cta a { color:var(--accent); }
@media(max-width:768px){.footer-gallery-grid{grid-template-columns:repeat(4,1fr);}}
@media(max-width:480px){.footer-gallery-grid{grid-template-columns:repeat(2,1fr);}}

/* === Page Header === */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3b0f 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.page-header h1 { font-size: 40px; margin-bottom: 8px; }
.page-header .hi { color: var(--accent); }
.page-header p { opacity: 0.85; font-size: 17px; }
.breadcrumb { margin-top: 12px; font-size: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* === Location Content === */
.location-content { padding: 50px 0; }
.location-main { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.location-article h2 { font-size: 28px; color: var(--primary); margin: 25px 0 12px; }
.location-article h2 .hi { color: var(--accent); }
.location-article h3 { font-size: 22px; color: var(--dark); margin: 20px 0 10px; }
.location-article p { margin-bottom: 15px; font-size: 16px; line-height: 1.8; }
.location-article ul { margin: 15px 0; padding-left: 20px; }
.location-article ul li { margin-bottom: 8px; }
.location-article .cta-inline { background: var(--accent-light); padding: 20px; border-radius: var(--radius); border-left: 4px solid var(--accent); margin: 20px 0; }
.location-article .cta-inline .hi { display: block; margin-top: 5px; }

.sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--off-white); border-radius: var(--radius); padding: 25px; margin-bottom: 25px; }
.sidebar-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-light); }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { margin-bottom: 8px; }
.sidebar-card ul li a { font-size: 14px; display: block; padding: 6px 0; border-bottom: 1px solid var(--gray-light); }
.sidebar-card ul li a:hover { color: var(--accent); padding-left: 5px; }
.sidebar-cta { background: var(--primary); color: var(--white); }
.sidebar-cta h3 { color: var(--white); border-bottom-color: rgba(255,255,255,0.2); }
.sidebar-cta p { font-size: 14px; margin-bottom: 15px; opacity: 0.9; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* === Pagination === */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  background: var(--white); border: 1px solid var(--gray-light);
  color: var(--text); transition: var(--transition);
}
.pagination a:hover, .pagination a.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination span { background: var(--off-white); border: none; }

/* === Gallery === */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--gray-light); display: flex; align-items: center; justify-content: center; position: relative; }
.gallery-item .placeholder-icon { font-size: 50px; opacity: 0.3; }
.gallery-item span { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); color: var(--white); padding: 8px 12px; font-size: 13px; }
.gallery-item::before { content:''; position:absolute; inset:0; background:rgba(0,0,0,0.15); transition:var(--transition); }
.gallery-item:hover::before { background:rgba(0,0,0,0.35); }

/* === Near Me === */
.nearme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nearme-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--gray-light); transition: var(--transition); }
.nearme-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.nearme-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 5px; }
.nearme-card p { font-size: 14px; color: var(--text-light); margin-bottom: 10px; }
.nearme-card .distance { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 5px; }

/* === Table of Contents === */
.toc { background: var(--primary-bg); border: 1px solid var(--primary-lighter); border-radius: var(--radius); padding: 20px 25px; margin-bottom: 30px; }
.toc h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.toc ul { list-style: none; padding: 0; }
.toc ul li { margin-bottom: 6px; }
.toc ul li a { font-size: 14px; display: flex; align-items: center; gap: 8px; }
.toc ul li a::before { content: '→'; color: var(--primary-light); font-weight: 700; }

/* === FAQ === */
.faq { background: var(--off-white); }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow: hidden; }
.faq-question { padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 16px; color: var(--dark); transition: var(--transition); border: none; background: none; width: 100%; text-align: left; font-family: inherit; }
.faq-question:hover { color: var(--primary); }
.faq-question .faq-toggle { font-size: 20px; transition: var(--transition); flex-shrink: 0; margin-left: 12px; }
.faq-item.active .faq-question { color: var(--primary); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 24px 18px; max-height: 500px; }
.faq-answer p { color: var(--text-light); font-size: 15px; line-height: 1.7; margin: 0; }
.faq-answer p:last-child { margin-bottom: 0; }

/* === Enhanced Testimonials === */
.testimonials-v2 { background: var(--primary-bg); }
.testimonial-card-v2 {
  background: var(--white); padding: 25px; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--gray-light); transition: var(--transition);
}
.testimonial-card-v2:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial-card-v2 .stars { color: #f59e0b; font-size: 18px; margin-bottom: 8px; }
.testimonial-card-v2 .quote { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 15px; font-style: italic; }
.testimonial-card-v2 .quote::before { content: '"'; }
.testimonial-card-v2 .quote::after { content: '"'; }
.testimonial-card-v2 .author-info { display: flex; align-items: center; gap: 12px; }
.testimonial-card-v2 .author-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.testimonial-card-v2 .author-name { font-weight: 600; font-size: 15px; color: var(--dark); }
.testimonial-card-v2 .author-location { font-size: 13px; color: var(--text-light); }

/* === Floating CTA === */
.floating-cta { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.floating-cta a { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: var(--transition); font-size: 24px; text-decoration: none; }
.floating-cta a:hover { transform: scale(1.1); }
.floating-cta .f-call { background: var(--accent); color: var(--white); }
.floating-cta .f-whatsapp { background: #25D366; color: var(--white); }
.floating-cta .f-map { background: var(--primary); color: var(--white); }

/* === Sticky Bottom Bar Mobile === */
.sticky-bottom { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--white); box-shadow: 0 -2px 10px rgba(0,0,0,0.1); padding: 10px 12px; }
.sticky-bottom .sb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sticky-bottom .sb-btn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; text-decoration: none; }
.sticky-bottom .sb-call { background: var(--accent); color: var(--white); }
.sticky-bottom .sb-whatsapp { background: #25D366; color: var(--white); }

@media (max-width: 768px) {
  .floating-cta { display: none; }
  .sticky-bottom { display: block; }
  body { padding-bottom: 70px; }
}

@media (min-width: 769px) {
  .floating-cta { display: flex; }
  .sticky-bottom { display: none; }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-image { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .nearme-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; text-align: center; }
  .menu-toggle { display: flex; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg); border-top: 2px solid var(--primary-bg); }
  .nav.open { display: flex; }
  .hero { padding: 50px 0 40px; }
  .hero-content h2 { font-size: 30px; }
  .hero-content h2 .hi { font-size: 26px; }
  .hero-content p { font-size: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .stat-item h3 { font-size: 28px; }
  section { padding: 50px 0; }
  .section-title h2 { font-size: 28px; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .location-main { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 30px; }
  .cta-info { flex-direction: column; align-items: center; gap: 15px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nearme-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .location-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content h2 { font-size: 24px; }
  .hero-content h2 .hi { font-size: 22px; }
  .btn { padding: 12px 24px; font-size: 14px; }
  .logo-text h1 { font-size: 16px; }
}
