/* =========================================================
   National Wooden - Consolidated Stylesheet (Refreshed)
   - Deduplicated and organized
   - Preserves current look/behavior
   - Fixes small logo by setting consistent sizes
   ========================================================= */

/* Reset & Root */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary-color: #8B4513;
  --secondary-color: #D2691E;
  --accent-color: #FF8C00;
  --dark-color: #2C1810;
  --light-color: #F5F5F5;
  --text-color: #333;
  --gray-color: #666;
  --border-radius: 10px;
  --transition: all 0.3s ease;
}

/* Base */
html, body {
  height: 100%;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  padding-top: 80px; /* room for fixed navbar */
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   NAVIGATION (with Logo & Cities Dropdown)
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 70px;
  padding: 8px 0;
}

/* Logo */
.logo-section { flex-shrink: 0; }
.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.logo-img {
  width: 88px;   /* consistent, larger logo */
  height: 88px;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid var(--light-color);
  padding: 5px;
  background: white;
  transition: var(--transition);
}
.logo-link:hover .logo-img {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
  border-color: var(--primary-color);
}
.logo-text h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo-text .tagline {
  font-size: 0.85rem;
  color: var(--gray-color);
  display: block;
  margin-top: 3px;
  font-weight: 400;
}
.navbar.scrolled .logo-img {
  width: 72px;
  height: 72px;
}

/* Contact header */
.contact-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-color);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-header i { font-size: 1.2rem; }
.hide-mobile { display: inline; }
.show-mobile { display: none; }

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
  font-size: 1rem;
}
.nav-link:hover { color: var(--primary-color); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Cities Dropdown (desktop) */
.nav-dropdown { position: relative; }
.dropdown-toggle {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
}
.dropdown-toggle i { font-size: 0.75rem; transition: var(--transition); }
.nav-dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%; transform: translateX(-50%);
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 20px 0;
  margin-top: 15px;
  min-width: 600px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1002;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; margin-top: 10px;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}
.dropdown-header {
  padding: 0 20px 15px;
  font-size: 0.85rem;
  color: var(--gray-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 20px;
  gap: 20px;
}
.dropdown-column h4 {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
  font-size: 0.95rem;
}
.dropdown-item:hover {
  background: var(--light-color);
  color: var(--primary-color);
  transform: translateX(5px);
}
.dropdown-item i {
  font-size: 0.75rem;
  color: var(--accent-color);
}
.dropdown-footer {
  margin-top: 15px; padding: 15px 20px 0;
  border-top: 1px solid #eee;
  text-align: center;
}
.view-all-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
  transition: var(--transition);
}
.view-all-link:hover { gap: 10px; }

/* Nav CTA */
.nav-cta-btn {
  background: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
  font-size: 1rem;
}
.nav-cta-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 25px; height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 3px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* Mobile nav menu */
@media (max-width: 768px) {
  .nav-wrapper { padding: 5px 0; min-height: 60px; }
  .logo-img { width: 64px; height: 64px; padding: 3px; }
  .logo-text .tagline { display: none; }
  .hide-mobile { display: none; }
  .show-mobile { display: inline; }
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 60px; left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 1001;
  }
  .nav-menu.active { left: 0; }
  .nav-link {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
  .nav-dropdown { width: 100%; }
  .dropdown-toggle {
    width: 100%; padding: 15px;
    border-bottom: 1px solid #eee; justify-content: space-between;
  }
  .dropdown-menu { display: none; } /* desktop only */
  .nav-cta-btn {
    width: 100%; justify-content: center;
    margin-top: 20px; padding: 15px;
  }
}

/* Responsiveness tweaks */
@media (max-width: 1200px) {
  .dropdown-menu { min-width: 500px; }
  .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .logo-img { width: 56px; height: 56px; }
  .contact-header { font-size: 0.9rem; }
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #f0f0f0;
}
.slider-container { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease-in-out;
  display: flex; align-items: center; justify-content: center;
  background: #000;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
/* Better aspect handling on very narrow viewports */
@media (max-aspect-ratio: 16/9) {
  .slide img { object-fit: contain; background: #1a1a1a; }
}
.slide-content {
  position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%);
  text-align: center; color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 20px 40px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  max-width: 90%;
  z-index: 2;
}
.slide-content h2 { font-size: 2.5rem; margin-bottom: 10px; }
.slide-content p { font-size: 1.2rem; }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  color: var(--primary-color);
  border: none; font-size: 24px;
  padding: 10px 15px; cursor: pointer;
  transition: var(--transition); border-radius: 5px;
}
.slider-btn:hover { background: #fff; }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px;
}
.dot {
  width: 12px; height: 12px;
  background: rgba(255,255,255,0.5); border-radius: 50%;
  cursor: pointer; transition: var(--transition);
}
.dot.active {
  background: white; width: 30px; border-radius: 6px;
}

@media (max-width: 768px) {
  .slide-content h2 { font-size: 1.5rem; }
  .slide-content p { font-size: 1rem; }
}

/* =========================================================
   BUTTONS & COMMON
   ========================================================= */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary { background: #fff; color: var(--primary-color); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background: #fff; color: var(--primary-color); }

/* WhatsApp + outline */
.btn-whatsapp { background: #25D366; color: #fff; border: none; }
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.btn-outline { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: #fff; }

.btn-lg { padding: 15px 35px; font-size: 1.1rem; }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 2000;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.floating-whatsapp i { font-size: 28px; }
.floating-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .floating-whatsapp { right: 14px; bottom: 14px; }
}

/* =========================================================
   HOME: WELCOME SECTION
   ========================================================= */
.welcome-section { padding: 60px 0; background: #fff; }
.welcome-grid {
  display: grid; grid-template-columns: 300px 1fr; gap: 40px;
}
.sidebar {
  background: var(--light-color);
  padding: 20px; border-radius: var(--border-radius);
}
.download-box {
  text-align: center; margin-bottom: 30px; padding: 20px;
  background: white; border-radius: var(--border-radius);
}
.download-box img { width: 60px; margin-bottom: 10px; }
.download-box a { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.download-box a:hover { text-decoration: underline; }

.products-list h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; }
.products-list ul { list-style: none; }
.products-list li { padding: 8px 0; border-bottom: 1px solid #ddd; }
.products-list li:last-child { border-bottom: none; }
.products-list a { color: var(--accent-color); text-decoration: none; font-weight: 500; }

.main-content h2 { color: var(--dark-color); margin-bottom: 30px; font-size: 2rem; }
.content-block { margin-bottom: 40px; }
.image-text-wrapper {
  display: flex; gap: 30px; align-items: flex-start;
}
.image-text-wrapper.reverse { flex-direction: row-reverse; }
.featured-image { flex-shrink: 0; }
.featured-image img {
  width: 250px; height: 200px; object-fit: cover;
  border-radius: var(--border-radius); border: 3px solid var(--light-color);
}
.featured-image figcaption {
  text-align: center; margin-top: 10px; color: var(--gray-color); font-style: italic;
}
.text-content { flex: 1; }
.text-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 20px 20px 20px 20px;
  background: var(--light-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.text-content p { margin-bottom: 15px; line-height: 1.8; }
.read-more, .contact-link { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.read-more:hover, .contact-link:hover { text-decoration: underline; }

@media (max-width: 992px) {
  .welcome-grid { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .image-text-wrapper, .image-text-wrapper.reverse { flex-direction: column; }
  .featured-image img { width: 100%; height: auto; }
  .sidebar { grid-template-columns: 1fr; }
}

/* =========================================================
   ABOUT (home section)
   ========================================================= */
.about { padding: 60px 0; background: var(--light-color); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 2.5rem; color: var(--dark-color); margin-bottom: 15px; }
.title-underline {
  width: 80px; height: 4px; background: var(--primary-color);
  margin: 0 auto; border-radius: 2px;
}

.features-grid {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.feature-card {
  background: white; padding: 30px; border-radius: var(--border-radius);
  text-align: center; transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon i { font-size: 2rem; color: white; }
.feature-card h3 { color: var(--dark-color); margin-bottom: 10px; }

/* =========================================================
   PRODUCTS SHOWCASE (home grid)
   ========================================================= */
.products-showcase { padding: 60px 0; }
.products-grid {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.product-card {
  background: white; border-radius: var(--border-radius);
  overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.product-image { position: relative; height: 200px; overflow: hidden; }
.product-image img {
  width: 100%; height: 100%; object-fit: cover; transition: var(--transition);
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(139,69,19,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-view {
  background: white; color: var(--primary-color);
  padding: 10px 25px; border-radius: var(--border-radius);
  text-decoration: none; font-weight: 600;
}
.product-card h3 { padding: 15px 20px 5px; color: var(--dark-color); }
.product-card p { padding: 0 20px 20px; color: var(--gray-color); }

/* =========================================================
   SERVICE AREAS
   ========================================================= */
.service-areas { padding: 60px 0; background: var(--light-color); }
.areas-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.area-card {
  background: white; padding: 20px; text-align: center;
  border-radius: var(--border-radius); transition: var(--transition);
}
.area-card:hover { background: var(--primary-color); color: white; }
.area-card i { font-size: 2rem; color: var(--primary-color); margin-bottom: 10px; }
.area-card:hover i { color: white; }

/* =========================================================
   CONTACT CTA (home footer CTA)
   ========================================================= */
.contact-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white; text-align: center;
}
.cta-content h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-content p { font-size: 1.2rem; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; }
@media (max-width: 768px) {
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark-color); color: white; padding: 50px 0 20px; }
.footer-content {
  display: grid; gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 30px;
}
.footer-column h3, .footer-column h4 { margin-bottom: 20px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column a {
  color: #ccc; text-decoration: none; transition: var(--transition);
}
.footer-column a:hover { color: var(--accent-color); }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary-color); }
.footer-bottom {
  text-align: center; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1); color: #ccc;
}
@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; }
}

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-header {
  margin-top: 80px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  position: relative; display: flex; align-items: center;
}
.page-header-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
}
.page-header-content { position: relative; z-index: 1; text-align: center; color: white; }
.page-header h1 { font-size: 3rem; margin-bottom: 1rem; }
.breadcrumb { font-size: 1.1rem; }
.breadcrumb a { color: white; text-decoration: none; opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { margin: 0 10px; opacity: 0.6; }
@media (max-width: 768px) {
  .page-header h1 { font-size: 2rem; }
}

/* =========================================================
   ABOUT PAGE LAYOUT
   ========================================================= */
.about-main { padding: 60px 0; }
.about-layout {
  display: grid; grid-template-columns: 350px 1fr; gap: 40px;
}
.about-sidebar { position: sticky; top: 100px; height: fit-content; }

.quick-facts {
  background: white; padding: 25px; border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.quick-facts h3 { color: var(--primary-color); margin-bottom: 20px; }
.fact-item {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 0; border-bottom: 1px solid #eee;
}
.fact-item:last-child { border-bottom: none; }
.fact-item i { font-size: 1.5rem; color: var(--primary-color); width: 40px; }
.fact-item strong { display: block; color: var(--dark-color); font-size: 0.9rem; }
.fact-item span { color: var(--gray-color); font-size: 1.1rem; }

.about-content {
  background: white; padding: 40px; border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.content-section { margin-bottom: 40px; }
.content-section h2 { color: var(--dark-color); margin-bottom: 25px; font-size: 2rem; }
.content-section h3 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.5rem; }
.content-section p { line-height: 1.8; color: var(--gray-color); margin-bottom: 15px; }
.highlight-text {
  background: var(--light-color); padding: 20px;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0; margin-bottom: 20px;
}
.highlight-text p { font-size: 1.1rem; color: var(--dark-color); margin: 0; }

.featured-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(139,69,19,0.05), rgba(210,105,30,0.05));
  padding: 30px; border-radius: var(--border-radius); margin: 30px 0;
}
.featured-quote i {
  position: absolute; font-size: 2rem; color: var(--primary-color); opacity: 0.2;
}
.featured-quote i:first-child { top: 10px; left: 10px; }
.featured-quote i:last-child { bottom: 10px; right: 10px; }
.featured-quote p { font-style: italic; font-size: 1.05rem; color: var(--dark-color); margin: 0; }

/* utility grids reused */
.features-grid { margin: 30px 0; }
.feature-box {
  text-align: center; padding: 20px; background: var(--light-color);
  border-radius: var(--border-radius); transition: var(--transition);
}
.feature-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.feature-box i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; }
.feature-box h4 { color: var(--dark-color); margin-bottom: 10px; }
.feature-box p { font-size: 0.9rem; }

.why-choose-section {
  margin-top: 40px; padding: 40px; background: var(--light-color); border-radius: var(--border-radius);
}
.why-choose-section h3 { text-align: center; margin-bottom: 30px; }
.reasons-grid {
  display: grid; gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.reason-card {
  background: white; padding: 25px; border-radius: var(--border-radius);
  position: relative; padding-left: 60px;
}
.reason-number {
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; background: var(--primary-color); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.reason-card h4 { color: var(--dark-color); margin-bottom: 5px; }
.reason-card p { font-size: 0.9rem; margin: 0; }

.about-cta {
  margin-top: 40px; text-align: center; padding: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius); color: white;
}
.about-cta h3 { color: #fff; font-size: 2rem; margin-bottom: 10px; }
.about-cta p { color: rgba(255,255,255,0.9); margin-bottom: 25px; }

.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
.stats-grid {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stat-item { text-align: center; color: white; }
.stat-item i { font-size: 3rem; margin-bottom: 15px; opacity: 0.8; }
.stat-number { font-size: 2.5rem; font-weight: 700; }
.stat-label { display: block; margin-top: 10px; font-size: 1rem; opacity: 0.9; }

@media (max-width: 992px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar {
    position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  }
}
@media (max-width: 768px) {
  .about-sidebar { grid-template-columns: 1fr; }
  .about-content { padding: 20px; }
  .reasons-grid, .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   WHY US PAGE
   ========================================================= */
.why-header {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}
.why-us-main { padding: 60px 0; }
.why-layout {
  display: grid; grid-template-columns: 350px 1fr; gap: 40px;
}
.why-sidebar { position: sticky; top: 100px; height: fit-content; }

.coverage-box {
  background: white; padding: 25px; border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1); margin-top: 30px;
}
.coverage-box h3 { color: var(--primary-color); margin-bottom: 20px; }
.coverage-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
}
.coverage-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px; background: var(--light-color); border-radius: 5px; transition: var(--transition);
}
.coverage-item:hover { background: var(--primary-color); color: white; }
.coverage-item i { color: var(--primary-color); font-size: 0.9rem; }
.coverage-item:hover i { color: white; }

.why-content {
  background: white; padding: 40px; border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.intro-section { margin-bottom: 40px; }
.intro-section h2 { color: var(--dark-color); margin-bottom: 20px; font-size: 2rem; }
.lead-text {
  font-size: 1.15rem; color: var(--primary-color); font-weight: 500;
  margin-bottom: 20px; line-height: 1.7;
}
.intro-section p { color: var(--gray-color); line-height: 1.8; margin-bottom: 15px; }

.advantages-section {
  margin: 40px 0; padding: 40px; background: var(--light-color); border-radius: var(--border-radius);
}
.advantages-section h3 {
  text-align: center; color: var(--primary-color); margin-bottom: 30px; font-size: 1.8rem;
}
.advantages-grid {
  display: grid; gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.advantage-card {
  background: white; padding: 30px; border-radius: var(--border-radius);
  text-align: center; transition: var(--transition); border: 2px solid transparent;
}
.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}
.advantage-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.advantage-icon i { font-size: 2rem; color: white; }
.advantage-card h4 { color: var(--dark-color); margin-bottom: 10px; font-size: 1.2rem; }
.advantage-card p { color: var(--gray-color); font-size: 0.95rem; }

.benefits-section { margin: 40px 0; }
.benefits-section h3 { color: var(--primary-color); margin-bottom: 30px; font-size: 1.8rem; }
.benefits-list {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 15px;
  padding: 20px; background: var(--light-color); border-radius: var(--border-radius);
  transition: var(--transition);
}
.benefit-item:hover { background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.benefit-item i { color: var(--primary-color); font-size: 1.5rem; flex-shrink: 0; margin-top: 3px; }
.benefit-item h5 { color: var(--dark-color); margin-bottom: 5px; font-size: 1.05rem; }
.benefit-item p { color: var(--gray-color); font-size: 0.9rem; margin: 0; }

.value-section {
  margin: 40px 0; padding: 40px;
  background: linear-gradient(135deg, rgba(139,69,19,0.05), rgba(210,105,30,0.05));
  border-radius: var(--border-radius);
}
.value-section h3 {
  text-align: center; color: var(--primary-color); margin-bottom: 30px; font-size: 1.8rem;
}
.value-cards {
  display: grid; gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.value-card {
  background: white; padding: 30px; border-radius: var(--border-radius);
  position: relative; padding-top: 60px; text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1); transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.value-number {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 50px; background: var(--primary-color); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
}
.value-card h4 { color: var(--dark-color); margin-bottom: 10px; }
.value-card p { color: var(--gray-color); font-size: 0.95rem; }

.why-cta {
  margin-top: 40px; text-align: center; padding: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius); color: white;
}
.why-cta h3 { color: #fff; font-size: 2rem; margin-bottom: 10px; }
.why-cta p { color: rgba(255,255,255,0.9); margin-bottom: 25px; font-size: 1.1rem; }

.achievement-section { padding: 60px 0; background: var(--light-color); }
.achievement-section .section-title {
  text-align: center; color: var(--dark-color); margin-bottom: 40px; font-size: 2.5rem;
}
.achievement-grid {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.achievement-item {
  text-align: center; background: white; padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: var(--transition);
}
.achievement-item:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.achievement-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.achievement-icon i { font-size: 2.5rem; color: white; }
.achievement-number {
  font-size: 2.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 10px;
}
.achievement-item p { color: var(--gray-color); font-size: 1.1rem; }

@media (max-width: 992px) {
  .why-layout { grid-template-columns: 1fr; }
  .why-sidebar {
    position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .why-sidebar { grid-template-columns: 1fr; }
  .why-content { padding: 20px; }
  .advantages-grid, .value-cards { grid-template-columns: 1fr; }
  .coverage-list { grid-template-columns: 1fr; }
  .achievement-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .benefits-list { grid-template-columns: 1fr; }
  .achievement-grid { grid-template-columns: 1fr; }
  .cta-buttons .btn { width: 100%; max-width: 250px; }
}

/* =========================================================
   PRODUCTS PAGE
   ========================================================= */
.products-header {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}
.products-main { padding: 60px 0; background: var(--light-color); }

.product-categories { text-align: center; margin-bottom: 50px; }
.product-categories h2 { color: var(--dark-color); margin-bottom: 30px; font-size: 2rem; }
.category-filters {
  display: flex; justify-content: center; gap: 15px; flex-wrap: wrap;
}
.filter-btn {
  padding: 12px 25px; background: #fff; border: 2px solid var(--light-color);
  border-radius: var(--border-radius); color: var(--text-color); font-weight: 500;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.filter-btn:hover {
  border-color: var(--primary-color); color: var(--primary-color);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: var(--primary-color); color: #fff; border-color: var(--primary-color);
}
.filter-btn i { font-size: 1.1rem; }

.products-container {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  margin-bottom: 50px;
}
.product-item {
  background: white; border-radius: var(--border-radius);
  overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition); animation: fadeInUp 0.5s ease;
}
.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.product-item.hidden { display: none; }

.product-image.products-page { height: 250px; background: #f5f5f5; }
.product-badges {
  position: absolute; top: 15px; left: 15px;
  display: flex; gap: 10px; flex-direction: column;
}
.badge {
  padding: 5px 12px; border-radius: 20px; font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase;
}
.badge-popular { background: var(--accent-color); color: white; }
.badge-new { background: #4CAF50; color: white; }
.badge-certified { background: var(--primary-color); color: white; }
.badge-special { background: #9C27B0; color: white; }
.badge-custom { background: #2196F3; color: white; }

.product-overlay.products-page {
  background: rgba(0,0,0,0.7);
}

.product-details { padding: 25px; }
.product-details h3 { color: var(--dark-color); margin-bottom: 10px; font-size: 1.3rem; }
.product-description { color: var(--gray-color); line-height: 1.6; margin-bottom: 15px; font-size: 0.95rem; }

.product-specs {
  display: flex; gap: 15px; margin-bottom: 20px; flex-wrap: wrap;
}
.spec { display: flex; align-items: center; gap: 5px; font-size: 0.85rem; color: var(--gray-color); }
.spec i { color: var(--primary-color); }

.product-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid #eee;
}
.price { font-size: 1.3rem; font-weight: 700; color: var(--primary-color); }
.btn-details {
  padding: 10px 20px; background: var(--primary-color); color: white;
  border: none; border-radius: var(--border-radius); font-weight: 500;
  cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-block;
}
.btn-details:hover { background: var(--secondary-color); }

.load-more-container { text-align: center; margin-top: 50px; }
.load-more { padding: 15px 40px; font-size: 1.1rem; }

/* Product features + CTA */
.product-features { padding: 60px 0; background: #fff; }
.product-features .section-title {
  text-align: center; color: var(--dark-color); margin-bottom: 40px; font-size: 2.5rem;
}
.product-features .features-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.product-features .feature-box {
  text-align: center; padding: 30px; background: var(--light-color);
}
.product-features .feature-box i { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
.product-features .feature-box h4 { color: var(--dark-color); margin-bottom: 10px; }

.products-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  text-align: center;
}
.products-cta h2 { color: white; font-size: 2.5rem; margin-bottom: 15px; }
.products-cta p { color: rgba(255,255,255,0.9); font-size: 1.2rem; margin-bottom: 30px; }

/* Product Modal */
.product-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.8);
  align-items: center; justify-content: center; padding: 20px;
}
.product-modal.show { display: flex; animation: fadeIn 0.3s ease; }
.modal-content {
  background: white; border-radius: var(--border-radius);
  max-width: 900px; width: 90%; max-height: 90vh; overflow: auto;
  position: relative; animation: slideUp 0.3s ease;
}
.close-modal {
  position: absolute; right: 20px; top: 20px; font-size: 2rem;
  color: var(--gray-color); cursor: pointer; z-index: 1; background: white;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.close-modal:hover { color: var(--primary-color); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.modal-image { background: #f5f5f5; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-details { padding: 40px; }
.modal-details h2 { color: var(--dark-color); margin-bottom: 15px; }
.modal-details p { color: var(--gray-color); line-height: 1.6; margin-bottom: 20px; }
.modal-specs { margin-bottom: 30px; }
.modal-specs h4 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.2rem; }
.modal-specs ul { list-style: none; }
.modal-specs li {
  padding: 8px 0; color: var(--gray-color); display: flex; align-items: center; gap: 10px;
}
.modal-specs li i { color: var(--primary-color); font-size: 0.9rem; }
.modal-actions { display: flex; gap: 15px; }
.hidden-product { display: none !important; }

@media (max-width: 768px) {
  .products-container { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
  .category-filters { justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; }
  .filter-btn { white-space: nowrap; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-image { height: 300px; }
}
@media (max-width: 480px) {
  .products-container { grid-template-columns: 1fr; }
  .product-footer { flex-direction: column; gap: 15px; align-items: stretch; }
  .btn-details { text-align: center; }
}

/* =========================================================
   CITY PAGES
   ========================================================= */
.location-badge {
  background: var(--accent-color); color: white;
  padding: 5px 10px; border-radius: 20px; font-size: 0.85rem; margin-left: 10px;
}
.city-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.mumbai-hero {
  background-image: linear-gradient(rgba(139,69,19,0.8), rgba(210,105,30,0.8)), url('images/mumbai-bg.jpg');
  background-size: cover; background-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.city-hero-content { position: relative; z-index: 1; text-align: center; color: white; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px); padding: 10px 20px; border-radius: 30px;
  margin-bottom: 20px; font-weight: 500;
}
.city-title { font-size: 3rem; font-weight: 700; margin-bottom: 15px; animation: fadeInUp 0.8s ease; }
.city-subtitle { font-size: 1.3rem; margin-bottom: 30px; opacity: 0.95; animation: fadeInUp 1s ease; }
.hero-features { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; flex-wrap: wrap; }
.hero-feature { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; }
.hero-feature i { color: #FFD700; }
.hero-cta { display: flex; gap: 15px; justify-content: center; animation: fadeInUp 1.2s ease; }

.local-areas { padding: 30px 0; background: var(--light-color); overflow: hidden; }
.areas-marquee { overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
.area-tag {
  display: inline-block; background: white; padding: 8px 20px; margin: 0 10px;
  border-radius: 20px; border: 2px solid var(--primary-color);
  color: var(--primary-color); font-weight: 500;
}
@keyframes marquee {
  0% { transform: translateX(0); } 100% { transform: translateX(-50%); }
}

.city-features { padding: 60px 0; }
.city-features-grid {
  display: grid; gap: 30px; margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.city-feature-card {
  background: white; padding: 30px; border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: var(--transition); border-top: 3px solid var(--primary-color);
}
.city-feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }

.city-products { padding: 60px 0; background: var(--light-color); }
.mumbai-products-grid {
  display: grid; gap: 30px; margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.mumbai-product {
  background: white; border-radius: var(--border-radius);
  overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative; transition: var(--transition);
}
.mumbai-product:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.product-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--accent-color); color: white; padding: 5px 15px; border-radius: 20px;
  font-weight: 600; font-size: 0.85rem; z-index: 1;
}
.mumbai-product img { width: 100%; height: 200px; object-fit: cover; }
.mumbai-product h3 { padding: 20px 20px 10px; color: var(--dark-color); }
.mumbai-product > p { padding: 0 20px; color: var(--gray-color); font-size: 0.95rem; }
.product-features { padding: 15px 20px; list-style: none; }
.product-features li { padding: 5px 0; color: var(--gray-color); font-size: 0.9rem; }
.product-features i { color: var(--primary-color); margin-right: 8px; }
.product-price {
  padding: 15px 20px; background: var(--light-color);
  display: flex; justify-content: space-between; align-items: center;
}
.price-label { color: var(--gray-color); font-size: 0.9rem; }
.price-value { color: var(--primary-color); font-size: 1.5rem; font-weight: 700; }
.btn-block { width: calc(100% - 40px); margin: 0 20px 20px; }

.city-clients { padding: 60px 0; }
.clients-stats {
  display: grid; gap: 30px; margin: 40px 0; padding: 40px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius);
}
.clients-stats .stat { text-align: center; color: white; }
.clients-stats .stat-number {
  display: block; font-size: 2.5rem; font-weight: 700; margin-bottom: 5px;
}
.industry-sectors { margin-top: 40px; }
.industry-sectors h3 { text-align: center; color: var(--dark-color); margin-bottom: 30px; }
.sectors-grid {
  display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.sector {
  background: white; padding: 20px; border-radius: var(--border-radius);
  text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.sector:hover {
  transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0,0,0,0.12);
  background: var(--primary-color); color: white;
}
.sector i { font-size: 2rem; color: var(--primary-color); display: block; margin-bottom: 10px; }
.sector:hover i { color: white; }

.city-testimonials { padding: 60px 0; background: var(--light-color); }
.testimonials-grid {
  display: grid; gap: 30px; margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.testimonial-card {
  background: white; padding: 30px; border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.rating { color: #FFD700; margin-bottom: 15px; }
.testimonial-card p {
  color: var(--gray-color); line-height: 1.6; font-style: italic; margin-bottom: 20px;
}
.testimonial-author strong { display: block; color: var(--dark-color); margin-bottom: 5px; }
.testimonial-author span { color: var(--gray-color); font-size: 0.9rem; }

.city-quote { padding: 60px 0;
  background: linear-gradient(135deg, rgba(139,69,19,0.05), rgba(210,105,30,0.05)); }
.quote-wrapper {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
  background: white; border-radius: var(--border-radius);
  overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.quote-info { background: var(--primary-color); color: white; padding: 40px; }
.quote-info h2 { color: white; margin-bottom: 15px; }
.quote-benefits { margin: 30px 0; }
.quote-benefits .benefit { display: flex; align-items: center; gap: 10px; margin: 15px 0; }
.quote-benefits i { font-size: 1.2rem; color: #FFD700; }
.contact-direct {
  margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2);
}
.call-button {
  display: inline-block; background: white; color: var(--primary-color);
  padding: 12px 25px; border-radius: var(--border-radius);
  text-decoration: none; font-weight: 600; margin-top: 10px; transition: var(--transition);
}
.call-button:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

.quote-form { padding: 40px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%; padding: 12px; border: 1px solid #ddd;
  border-radius: var(--border-radius); font-size: 1rem;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--primary-color);
}
.quote-form textarea { resize: vertical; }

.delivery-info { padding: 60px 0; }
.delivery-grid {
  display: grid; gap: 30px; margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.delivery-card {
  background: white; padding: 30px; border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.delivery-card h3 { color: var(--primary-color); margin-bottom: 20px; }
.delivery-card ul { list-style: none; }
.delivery-card li { padding: 8px 0; color: var(--gray-color); border-bottom: 1px solid #eee; }

.city-location { padding: 60px 0; background: var(--light-color); }
.location-wrapper {
  display: grid; gap: 40px; margin-top: 40px; grid-template-columns: 1fr 1fr;
}
.location-info { background: white; padding: 40px; border-radius: var(--border-radius); }
.address-block, .contact-block { margin: 20px 0; }
.address-block { display: flex; gap: 15px; }
.contact-item {
  display: flex; align-items: center; gap: 10px; margin: 10px 0; color: var(--gray-color);
}
.contact-item i { color: var(--primary-color); width: 20px; }
.map-container {
  border-radius: var(--border-radius); overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.seo-content { padding: 60px 0; }
.seo-content h2 { color: var(--dark-color); margin-bottom: 20px; }
.seo-content h3 { color: var(--primary-color); margin: 30px 0 15px; }
.seo-content p { color: var(--gray-color); line-height: 1.8; margin-bottom: 15px; }

@media (max-width: 992px) {
  .quote-wrapper { grid-template-columns: 1fr; }
  .location-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .city-title { font-size: 2rem; }
  .city-subtitle { font-size: 1.1rem; }
  .hero-features { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .city-features-grid, .mumbai-products-grid, .testimonials-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* =========================================================
   RESPONSIVE BODY OFFSET (final tweaks)
   ========================================================= */
@media (max-width: 768px) {
  body { padding-top: 70px; }
}
@media (max-width: 480px) {
  body { padding-top: 65px; }
}
/* Force consistent header height and logo size */
.nav-wrapper {
  min-height: 90px;          /* header height on load */
  align-items: center;
}
.logo-img {
  width: 88px;               /* bigger logo */
  height: 88px;
  object-fit: contain;
}

/* Optional: shrink slightly on scroll */
.navbar.scrolled .nav-wrapper { min-height: 70px; }
.navbar.scrolled .logo-img { width: 72px; height: 72px; }

/* Tidy text so it doesn't add height */
.logo-text h1 { margin: 0; line-height: 1.1; }
.logo-text .tagline { margin: 0; }

/* Make sure body offset matches header */
body { padding-top: 90px; }
@media (max-width: 768px) {
  .nav-wrapper { min-height: 70px; }
  .logo-img { width: 64px; height: 64px; }
  body { padding-top: 70px; }
}