/* ═══════════════════════════════════════════════════════
   NETLIX PACKERS & MOVERS — Common Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ── Material Symbols ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ── Base ── */
body { font-family: 'Inter', sans-serif; background-color: #f7faf8; color: #181c1b; }
h1, h2, h3, h4, h5 { font-family: 'Manrope', sans-serif; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Gradient Text ── */
.text-gradient {
  background: linear-gradient(135deg, #006e1c, #4caf50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero BG Pattern ── */
.hero-pattern {
  background-color: #f7faf8;
  background-image: radial-gradient(#006e1c18 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Tab / Panel ── */
.tab-panel, .tab-content { display: none; }
.tab-panel.active, .tab-content.active { display: block; }
.tab-btn { transition: all 0.2s ease; }
.tab-btn.active { background: #006e1c; color: white; }

/* ── BHK Pill Selector ── */
.bhk-pill {
  cursor: pointer; padding: 6px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; border: 1.5px solid #becab9;
  color: #3f4a3c; transition: all 0.2s; user-select: none;
}
.bhk-pill.selected { background: #006e1c; color: #fff; border-color: #006e1c; }
.bhk-pill:hover:not(.selected) { border-color: #006e1c; color: #006e1c; }

/* ── Form Select ── */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236f7a6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}

/* ── Form Input (contact style) ── */
.form-input {
  width: 100%; background: #ffffff; border: 1.5px solid #becab9;
  border-radius: 0.75rem; padding: 0.875rem 1rem; font-size: 0.875rem;
  font-family: 'Inter', sans-serif; color: #181c1b; outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus { border-color: #006e1c; box-shadow: 0 0 0 3px rgba(0,110,28,0.10); }
.form-input::placeholder { color: #9aaa97; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236f7a6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

/* ── Service Card Hover ── */
.service-card { transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,110,28,0.12); }

/* ── Step / Feature Card Hover ── */
.step-card, .feature-card { transition: all 0.3s ease; }
.step-card:hover, .feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,110,28,0.12); }

/* ── Industry Card ── */
.industry-card { transition: all 0.3s ease; cursor: pointer; }
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,110,28,0.12); border-color: #006e1c; }

/* ── Info Card Hover ── */
.info-card { transition: all 0.25s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,110,28,0.10); }

/* ── FAQ Accordion ── */
.faq-item { border-bottom: 1px solid #becab9; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform 0.3s ease; }

/* ── Success Banner ── */
.success-banner { display: none; }
.success-banner.show { display: flex; }

/* ── Map Placeholder ── */
.map-placeholder {
  background: linear-gradient(135deg, #ebefed 0%, #d7dbd9 100%);
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(#becab930 1px, transparent 1px),
    linear-gradient(90deg, #becab930 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── Badge Float ── */
.badge-float { animation: floatBadge 3s ease-in-out infinite; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ── Checklist Item Slide ── */
.checklist-item { animation: slideIn 0.5s ease forwards; opacity: 0; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── Counter ── */
.counter, .counter-number { font-variant-numeric: tabular-nums; }

/* ── Timeline ── */
.timeline-item:not(:last-child)::after {
  content: ''; position: absolute; left: 27px; top: 60px;
  width: 2px; height: calc(100% - 20px);
  background: linear-gradient(to bottom, #006e1c44, transparent);
}

/* ── Feature Slider ── */
.feature-slider { display: flex; gap: 12px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 2px 8px; }
.feature-slider::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════════════════════
   WHATSAPP & CALL BUTTONS
   ═══════════════════════════════════════════════════════ */
.whatsapp-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; padding: 14px 22px; border-radius: 60px;
  font-weight: 700; text-decoration: none;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  animation: pulse 1.5s infinite; transition: 0.3s ease;
}
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-btn svg { animation: shake 1s infinite; }

.call-btn {
  display: flex; align-items: center; gap: 10px;
  background: #ff5722; color: #fff; padding: 14px 22px; border-radius: 60px;
  font-weight: 700; text-decoration: none;
  box-shadow: 0 10px 25px rgba(255,87,34,0.4);
  animation: callPulse 1.5s infinite; transition: 0.3s ease;
}
.call-btn:hover { transform: scale(1.08); }
.call-btn svg { animation: ring 1s infinite; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes shake {
  0%,100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}
@keyframes callPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,87,34,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255,87,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,87,34,0); }
}
@keyframes ring {
  0%,100% { transform: rotate(0deg); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  60% { transform: rotate(-15deg); }
  80% { transform: rotate(15deg); }
}

/* ═══════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════ */
.mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.3);
  z-index: 40; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: #fff; z-index: 50; overflow-y: auto;
  transition: right 0.3s ease; padding: 24px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}
.mobile-menu.open { right: 0; }

.mobile-menu-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f1f4f2; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #3f4a3c;
}
.mobile-menu-close:hover { background: #e0e3e1; }

.mobile-menu-links { margin-top: 48px; }
.mobile-menu-link {
  display: block; padding: 14px 0; font-size: 15px; font-weight: 600;
  color: #181c1b; text-decoration: none; border-bottom: 1px solid #ebefed;
  transition: color 0.2s;
}
.mobile-menu-link:hover { color: #006e1c; }
.mobile-menu-link.active { color: #006e1c; }

.mobile-menu-sub {
  margin-left: 16px; border-left: 2px solid #ebefed; padding-left: 16px;
}
.mobile-menu-sublink {
  display: block; padding: 10px 0; font-size: 14px; font-weight: 500;
  color: #3f4a3c; text-decoration: none; transition: color 0.2s;
}
.mobile-menu-sublink:hover { color: #006e1c; }

.hamburger-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; padding: 4px; flex-direction: column;
  justify-content: space-around; align-items: center;
}
.hamburger-btn span {
  display: block; width: 24px; height: 2.5px;
  background: #181c1b; border-radius: 2px; transition: all 0.3s;
}

/* Show hamburger on mobile */
@media (max-width: 767px) {
  .hamburger-btn { display: flex; }
}

/* ── Sticky CTA ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  background: white; border-top: 1px solid #becab9;
  padding: 12px 20px; display: flex; gap: 12px; justify-content: center;
}
@media(max-width:768px){
  .sticky-cta { flex-direction: column; }
}

/* ── Progress Bar ── */
.progress-bar { animation: fillBar 1.5s ease forwards; }
@keyframes fillBar { from { width: 0%; } to { width: var(--target-width); } }
