/* ==========================================================================
   FUSION CONSTRUCTIONS - CORE CUTTING & STRUCTURAL REBARING SPECIALIST
   Premium CSS Stylesheet - Click-to-Expand Interactive Edition (Simplified)
   ========================================================================== */

/* --- Custom Variables & Design Tokens --- */
:root {
  --bg-primary: #090a0f; /* Obsidian carbon slate base */
  --bg-secondary: #10121d; /* High-tech slate secondary */
  --bg-card: rgba(22, 25, 41, 0.6); /* Carbon glassmorphic card base */
  --bg-card-hover: rgba(30, 34, 56, 0.85);
  --border-color: rgba(255, 255, 255, 0.08); /* Subtle clean light lines */
  --border-color-glow: rgba(230, 74, 25, 0.35); /* Concrete Orange-Red glow border */
  
  --accent-red: #E64A19; /* Concrete Orange-Red primary brand color */
  --accent-red-hover: #D84315;
  --accent-red-glow: rgba(230, 74, 25, 0.4);
  --accent-cyan: #00F2FE; /* Active laser telemetry scan cyan */
  --accent-cyan-glow: rgba(0, 242, 254, 0.4);
  --accent-green: #10B981; /* Pulsing Active Depot Green */
  --accent-gold: #F59E0B; /* Safety Warning Gold */
  
  --text-primary: #FFFFFF; /* Stark white for extreme dark contrast */
  --text-secondary: #E2E8F0; /* Off-white description text */
  --text-muted: #94A3B8; /* Charcoal gray text */
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  
  --font-sans: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  --font-tech: 'Orbitron', monospace;
}

/* --- Base & Reset Rules --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  /* iOS momentum scroll */
  -webkit-overflow-scrolling: touch;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-primary);
  /* NOTE: perspective moved OFF body to prevent iOS Safari GPU issues.
     3D effects still work per-element. */
  /* Kill the default blue tap highlight on iOS/Android */
  -webkit-tap-highlight-color: transparent;
  /* Safe-area support for iPhone notch / Dynamic Island */
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/* Better touch targets site-wide */
a, button, [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Typographical Utilities --- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-red {
  color: var(--accent-red);
}

.highlight-text {
  color: var(--accent-cyan);
  font-family: var(--font-tech);
}

/* --- Smooth Page Fade-in (NO TRANSFORM — preserves position:fixed viewport binding) --- */
.fade-in {
  animation: pageReveal 0.3s ease forwards;
}

@keyframes pageReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Scroll Reveal Animations --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1c1f30;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* --- Premium Buttons --- */
.btn-primary, .btn-secondary, .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--text-primary);
  border: 1px solid var(--accent-red);
  box-shadow: 0 4px 14px var(--accent-red-glow);
}

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 74, 25, 0.6);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp .whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 8px;
}

.btn-full {
  width: 100%;
  margin-bottom: 0.75rem;
}

.btn-arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Section Framing --- */
section {
  padding: 7.5rem 0;
  position: relative;
}

.section-header {
  max-width: 680px;
  margin-bottom: 4.5rem;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-tagline {
  color: var(--accent-red);
  font-family: var(--font-tech);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- Navigation Header Styles --- */
#nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(9, 10, 15, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-fast);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.logo-icon {
  width: 2.8rem;
  height: 2.0rem;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(245, 124, 0, 0.4));
}

.logo-text .highlight {
  color: var(--accent-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.nav-phone:hover {
  color: var(--accent-red);
}

.nav-phone .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-fast);
}

/* --- Hero Section Styles --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 6rem;
  background-color: var(--bg-primary);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(20, 22, 38, 0.4) 0%, var(--bg-primary) 85%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
}

.red-orb {
  top: 15%;
  right: 10%;
  width: 450px;
  height: 450px;
  background-color: var(--accent-red);
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.cyan-orb {
  bottom: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background-color: var(--accent-cyan);
  animation: floatOrb 16s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.1); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-container {
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background-color: rgba(230, 74, 25, 0.08);
  border: 1px solid rgba(230, 74, 25, 0.25);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent-red);
}

.animate-pulse {
  animation: pulseScan 2s infinite;
}

@keyframes pulseScan {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.hero-stats-quick {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  width: 100%;
}

.quick-stat {
  display: flex;
  flex-direction: column;
}

.quick-stat .number {
  font-family: var(--font-tech);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-red);
}

.quick-stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 550;
  margin-top: 0.25rem;
}

.quick-divider {
  width: 1px;
  height: 35px;
  background-color: var(--border-color);
}

/* Floating interface widget */
.hero-interactive-badge {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.decal-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.8rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 380px;
  border-left: 4px solid var(--accent-red);
  animation: floatWidget 6s ease-in-out infinite;
}

@keyframes floatWidget {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.decal-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
}

.decal-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tool-tag {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.tool-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent-red);
  margin-right: 0.75rem;
  border-radius: 50%;
}

/* --- HOME CAPABILITIES SHOWCASE SECTION (Home Page Images!) --- */
.home-capabilities-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.15rem;
  border-radius: 8px;
  background: rgba(16, 18, 29, 0.85);
  border: 1px solid rgba(230, 74, 25, 0.28);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.trust-badge-pill:hover {
  border-color: var(--accent-red);
  background: rgba(230, 74, 25, 0.1);
  box-shadow: 0 8px 22px rgba(230, 74, 25, 0.2);
  transform: translateY(-2px);
}

.trust-badge-pill strong {
  color: var(--text-primary);
  font-weight: 700;
}

.trust-badge-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent-red);
  flex-shrink: 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(230, 74, 25, 0.2);
}

.card-body-content {
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.card-body-content h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card-body-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-card-link {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--accent-red);
  font-weight: 700;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.btn-card-link:hover {
  color: var(--accent-cyan);
}

.expandable-card.active {
  border-color: var(--accent-red);
  box-shadow: 0 20px 45px rgba(230, 74, 25, 0.25);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(12%) brightness(85%);
}

.expandable-card:hover .card-hero-img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(100%);
}

.card-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  background-color: var(--accent-red);
  color: var(--text-primary);
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  box-shadow: 0 4px 10px var(--accent-red-glow);
}

.card-intro-block {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.005);
}

.card-intro-block h3 {
  font-size: 1.45rem;
  color: var(--text-primary);
}

.click-cue {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
  transition: opacity var(--transition-fast);
}

.expandable-card.active .click-cue {
  opacity: 0.4;
}

/* accordion slide pane */
.expandable-pane-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.pane-inner {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.bullet-desc {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.bullet-desc strong {
  font-size: 0.95rem;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-title);
}

.bullet-desc p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pane-action-link {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pane-action-link:hover {
  text-shadow: 0 0 8px var(--accent-cyan-glow);
  color: var(--text-primary);
}

/* --- CLICKABLE INDIAN IS CODES SEALS SECTION --- */
.is-codes-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.is-codes-expand-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.code-expandable-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.8rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.code-expandable-box:hover {
  border-color: var(--border-color-glow);
  box-shadow: 0 10px 25px rgba(230, 74, 25, 0.1);
  transform: translateY(-3px);
}

.code-expandable-box.active {
  border-color: var(--accent-red);
  background-color: var(--bg-card-hover);
}

.code-header-flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.code-seal-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(230, 74, 25, 0.08);
  border: 2px solid var(--accent-red);
  color: var(--text-primary);
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(230, 74, 25, 0.2);
  transition: all var(--transition-fast);
}

.code-expandable-box:hover .code-seal-circle,
.code-expandable-box.active .code-seal-circle {
  box-shadow: 0 0 16px rgba(230, 74, 25, 0.4);
  transform: scale(1.05);
}

.code-header-flex h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.click-cue-code {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.code-expanded-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.code-inner-text {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.code-inner-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.code-inner-text strong {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

/* --- Core Value Props Section --- */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  align-items: start;
}

.prop-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all var(--transition-normal);
}

.prop-card:hover {
  transform: translateY(-6px);
  background-color: var(--bg-card-hover);
  border-color: var(--border-color-glow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.prop-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 1.1rem;
}

.prop-icon-wrapper.red-theme {
  background-color: rgba(230, 74, 25, 0.08);
  color: var(--accent-red);
  border: 1px solid rgba(230, 74, 25, 0.3);
  box-shadow: 0 0 12px rgba(230, 74, 25, 0.15);
}

.prop-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  color: var(--text-primary);
}

.prop-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- MULTI-PAGE BANNER STYLING --- */
.page-banner {
  padding: 7rem 0 5rem;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.page-banner-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-banner-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* --- SERVICES DETAIL ROWS (Services.html) --- */
.services-details-section {
  background-color: var(--bg-primary);
}

.detailed-service-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-color);
}

.detailed-service-row:last-child {
  border-bottom: none;
}

.detailed-service-row.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.detailed-service-row.reverse .service-detail-info {
  grid-order: 2;
  order: 2;
}

.detailed-service-row.reverse .service-detail-visual {
  grid-order: 1;
  order: 1;
}

.service-detail-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.service-paragraph {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Click to Expand Tool specs Coded Natively inside Services.html */
.service-detail-visual {
  display: flex;
  justify-content: center;
  padding: 0 10px;
}

.visual-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  background-color: var(--bg-card);
  display: flex;
  flex-direction: column;
}

.visual-img-wrapper:hover {
  transform: translateY(-6px);
  border-color: var(--accent-red);
  box-shadow: 0 25px 50px rgba(230, 74, 25, 0.2);
}

.service-visual-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  filter: grayscale(10%) brightness(90%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.visual-img-wrapper:hover .service-visual-img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(100%);
}

.click-cue-tool {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 242, 254, 0.3);
  z-index: 5;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.visual-img-wrapper.active .click-cue-tool {
  opacity: 0.3;
}

.service-action-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn-whatsapp-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  background-color: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-whatsapp-inline:hover {
  background-color: #10B981;
  color: #000000;
  border-color: #10B981;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.tech-spec-box.visible-spec {
  background: rgba(16, 18, 29, 0.94);
  border: 1px solid rgba(230, 74, 25, 0.3);
  border-radius: 12px;
  padding: 1.4rem;
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.spec-label {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent-red);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.spec-name {
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 0.5rem;
}

.bullet-specs-simple {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bullet-specs-simple li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 0.4rem;
}

.bullet-specs-simple li:last-child {
  border-bottom: none;
}

/* --- MULTI-STEP LEAD DISPATCH FORM (Contact Page) --- */
.quote-form-section {
  background-color: var(--bg-primary);
}

.quote-card-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background-color: #0b0d15;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
}

.quote-info-side {
  padding: 4.5rem 3.5rem;
  background: linear-gradient(135deg, #10121d 0%, #06070a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-color);
  gap: 2.5rem;
}

.side-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.side-desc {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bullet-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--accent-red);
  margin-top: 0.15rem;
}

.bullet-item div {
  display: flex;
  flex-direction: column;
}

.bullet-item strong {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 700;
}

.bullet-item span {
  font-size: 0.92rem;
  color: #CBD5E1;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.direct-badge {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.direct-lbl {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.direct-number {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-red);
  display: inline-block;
}

.direct-number:hover {
  text-shadow: 0 0 10px var(--accent-red-glow);
}

.quote-form-side {
  padding: 4.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.multistep-form {
  position: relative;
  width: 100%;
}

.form-progress {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 33.3%;
  background-color: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red-glow);
  transition: width var(--transition-normal);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: stepFade 0.4s ease-in-out forwards;
}

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

.step-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.2rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.custom-checkbox-btn {
  cursor: pointer;
  display: block;
}

.custom-checkbox-btn input[type="checkbox"] {
  display: none;
}

.checkbox-content {
  display: block;
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.01);
  text-align: center;
  transition: all var(--transition-fast);
}

.custom-checkbox-btn:hover .checkbox-content {
  border-color: rgba(255,255,255,0.15);
  background-color: rgba(255, 255, 255, 0.03);
}

.custom-checkbox-btn input[type="checkbox"]:checked + .checkbox-content {
  border-color: var(--accent-red);
  background-color: rgba(230, 74, 25, 0.06);
  box-shadow: 0 4px 15px rgba(230, 74, 25, 0.08);
}

.checkbox-label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.custom-checkbox-btn input[type="checkbox"]:checked + .checkbox-content .checkbox-label {
  color: var(--text-primary);
}

.input-row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.input-group {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
}

.input-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.input-field {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.85rem 1.2rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  transition: all var(--transition-fast);
}

.input-field:focus {
  border-color: rgba(230, 74, 25, 0.5);
  box-shadow: 0 0 12px rgba(230, 74, 25, 0.15);
  background-color: rgba(0, 0, 0, 0.55);
}

.select-field {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.15rem;
  padding-right: 3rem;
}

.select-field option {
  background-color: #10121d;
  color: var(--text-primary);
  padding: 0.75rem;
}

.textarea-field {
  resize: vertical;
  min-height: 100px;
}

.form-navigation-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2.5rem;
}

.form-success-step {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  animation: stepFade 0.4s ease-in-out forwards;
}

.form-success-step.active {
  display: flex;
}

.success-icon-container {
  width: 70px;
  height: 70px;
  background-color: rgba(230, 74, 25, 0.08);
  border: 1px solid rgba(230, 74, 25, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.success-check-icon {
  width: 32px;
  height: 32px;
}

.success-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.success-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

/* --- PAN-INDIA OPERATIONS HUBS (Contact Page) --- */
.hubs-map-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.hubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.hub-marker-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.25rem;
  width: 100%;
}

.hub-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hub-marker.green-pulse {
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: greenPulse 1.5s infinite alternate;
}

.hubs-grid h4 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.hub-details {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Footer --- */
footer {
  background-color: #040508;
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
}

.footer-badge-item {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  color: var(--text-secondary);
}

.footer-links-column h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
}

.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-column a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links-column a:hover {
  color: var(--accent-red);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem !important;
}

.footer-contact-details li {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.footer-contact-details li strong {
  color: var(--text-secondary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.footer-contact-details li span, .footer-contact-details li a {
  color: var(--text-muted);
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-bottom-bar p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 780px;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
}

.footer-legal-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--accent-red);
}

/* ==========================================================================
   RESPONSIVE STYLES & MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats-quick {
    justify-content: center;
  }
  
  .hero-interactive-badge {
    justify-content: center;
  }
  
  .props-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .capabilities-expand-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .detailed-service-row {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .detailed-service-row.reverse {
    grid-template-columns: 1fr;
  }
  
  .detailed-service-row.reverse .service-detail-info {
    order: unset;
  }
  
  .detailed-service-row.reverse .service-detail-visual {
    order: unset;
  }
  
  .quote-card-container {
    grid-template-columns: 1fr;
  }
  
  .quote-info-side {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 3.5rem 2.5rem;
  }
  
  .quote-form-side {
    padding: 3.5rem 2.5rem;
  }
  
  .hubs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }

  .section-title {
    font-size: clamp(1.4rem, 6vw, 2rem) !important;
  }

  .hero-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    line-height: 1.12;
  }

  /* ---- NAV MOBILE: Hamburger fix ---- */
  /* Keep nav-actions visible but hide phone/button; show only hamburger */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* Hide phone number and "Get Quote" btn on mobile */
  .nav-phone,
  .nav-actions > .btn-primary {
    display: none !important;
  }

  /* Show the hamburger button */
  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 8px;
    z-index: 1010;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  /* Nav drawer — full screen slide-in */
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(9, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 2.5rem 3rem;
    gap: 0;
    z-index: 1005;
    transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255,255,255,0.08);
    overflow-y: auto;
  }

  .nav-links .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }

  .nav-links .nav-link:last-child {
    border-bottom: none;
  }

  .nav-links.mobile-active {
    left: 0;
  }

  /* Checkbox and input grids */
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .input-row-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   FUSION CONSTRUCTIONS - HIGH-CONTRAST PREMIUM DARK THEME RESTORATION
   ========================================================================== */

/* Light-theme overrides removed to restore dark obsidian theme natively. */

/* --- SITE-WIDE PRECISION CONTAINER ALIGNMENT --- */
.container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  display: flow-root;
}
.section-header {
  margin: 0 auto 3.5rem auto !important;
  text-align: center !important;
  max-width: 720px !important;
}
.section-title {
  text-align: center !important;
  font-size: 2.4rem !important;
  margin-bottom: 1rem !important;
}
.section-desc {
  text-align: center !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
}
@media (min-width: 901px) {
  .detailed-service-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5rem !important;
    align-items: center !important;
    margin-bottom: 6rem !important;
  }
  .detailed-service-row:last-child {
    margin-bottom: 0 !important;
  }
  .detailed-service-row.reverse .service-detail-info {
    order: 2 !important;
  }
  .detailed-service-row.reverse .service-detail-visual {
    order: 1 !important;
  }
  .capabilities-expand-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.25rem !important;
    align-items: stretch !important;
  }
  .expandable-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
  }
  .ncr-depot-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2.25rem !important;
    align-items: stretch !important;
  }
  .depot-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
  }
  .props-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.25rem !important;
  }
  .prop-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
}
.depot-details-inner p {
  color: var(--text-secondary) !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
}
.depot-details-inner strong {
  color: var(--text-primary) !important;
}

/* Footer Contrast Block - Ultra Premium Dark */
footer {
  background-color: #0F1115 !important;
  color: #FFFFFF !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer .nav-logo, footer .logo-text, footer h4, footer strong {
  color: #FFFFFF !important;
}
footer .footer-desc, footer p, footer span, footer a {
  color: #94A3B8 !important;
}
footer a:hover {
  color: #FFFFFF !important;
}
footer .footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* --- Hero Left Side Call-to-Action Benefits Panel --- */
.hero-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  width: 100%;
}
.benefit-tag-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(0, 242, 254, 0.04);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 460px;
}
.benefit-icon-bullet {
  color: var(--accent-red);
  font-weight: bold;
  font-size: 1.1rem;
}

/* --- Hero Overlapping Visual Deck --- */
.hero-visual-deck {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deck-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.overlapping-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 3px solid var(--bg-secondary);
  transition: all var(--transition-normal);
}
.card-drill-img {
  top: 5%;
  left: 5%;
  width: 68%;
  aspect-ratio: 4 / 3;
  z-index: 1;
}
.card-rebar-img {
  bottom: 8%;
  right: 5%;
  width: 65%;
  aspect-ratio: 4 / 3;
  z-index: 2;
}
.overlapping-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.overlapping-card:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 5;
  box-shadow: 0 20px 40px rgba(230, 74, 25, 0.45);
  border-color: var(--accent-red);
}

/* --- Mini Active Depot Status Map Widget --- */
.mini-depot-map-widget {
  position: absolute;
  bottom: 4%;
  left: 6%;
  background: rgba(16, 18, 29, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  z-index: 10;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  width: 250px;
}
.widget-header-title {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent-red);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}
.widget-depot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.widget-depot-row:last-child {
  border-bottom: none;
}
.widget-depot-name {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.widget-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
.widget-depot-status {
  font-size: 0.72rem;
  color: var(--accent-green);
  font-family: var(--font-tech);
}

/* --- WhatsApp Floating Widget --- */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}
.whatsapp-floating-btn {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}
.whatsapp-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}
.whatsapp-floating-btn .icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.whatsapp-pulse-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid #25D366;
  border-radius: 50%;
  opacity: 0;
  animation: ringPulse 2s infinite;
}
@keyframes ringPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { opacity: 0.4; }
  100% { transform: scale(1.25); opacity: 0; }
}
.whatsapp-tooltip {
  background-color: #10121d;
  color: #FFFFFF;
  border: 1px solid rgba(37, 211, 102, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: auto;
}
.whatsapp-tooltip strong {
  color: #FFFFFF !important;
}
.whatsapp-tooltip span {
  color: #25D366 !important;
}
.whatsapp-floating-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- Work Gallery Comparison Slider & Masonry Grid --- */
.comparison-slider-container {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  position: relative;
  border: 3px solid #1c1f30;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.img-before {
  z-index: 1;
}
.img-after {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.comparison-drag-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--accent-red);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--accent-red-glow);
}
.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background-color: #10121d;
  border: 2px solid var(--accent-red);
  border-radius: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 10px var(--accent-red-glow);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  font-weight: bold;
  pointer-events: none;
}
.slider-label-tag {
  position: absolute;
  top: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 5;
  background-color: rgba(16, 18, 29, 0.85);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.tag-before { left: 1.5rem; border-color: rgba(255,255,255,0.15); color: var(--text-primary); }
.tag-after { right: 1.5rem; border-color: var(--accent-red); color: var(--accent-red); }

/* Filterable Gallery Grid */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.btn-filter {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  color: var(--text-primary);
}
.btn-filter:hover, .btn-filter.active {
  background-color: var(--accent-red);
  color: #FFFFFF;
  border-color: var(--accent-red);
  box-shadow: 0 4px 12px var(--accent-red-glow);
}
.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-normal);
}
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-red);
  box-shadow: 0 8px 30px rgba(230, 74, 25, 0.25);
}
.gallery-item-img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.gallery-item:hover .gallery-item-img {
  transform: scale(1.08);
}
/* Gallery Execution Metrics Bar */
.gallery-metrics-bar {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
  margin-bottom: 3.5rem;
}

.gallery-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-number {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 0.35rem;
  text-shadow: 0 0 15px rgba(230, 74, 25, 0.2);
}

.metric-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-tag {
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--accent-red);
  background-color: rgba(16, 18, 29, 0.85);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(230, 74, 25, 0.3);
  margin-bottom: 0.4rem;
  display: inline-block;
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.25rem;
}

.gallery-item-overlay h4 {
  color: #FFFFFF !important;
  font-size: 1.1rem;
}

.gallery-item-info {
  padding: 1.25rem 1.5rem;
}

.gallery-item-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.gallery-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.location-badge {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.btn-whatsapp-sm {
  font-size: 0.78rem;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-whatsapp-sm:hover {
  background: #10B981;
  color: #000000;
  border-color: #10B981;
}

/* --- Safety Page Compliance Styles --- */
.safety-checklist-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  margin-top: 3rem;
  border-top: 3px solid var(--accent-red);
  box-shadow: 0 6px 20px rgba(0,0,0,0.01);
}
.checklist-title-flex {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.checklist-title-flex h3 {
  font-family: var(--font-tech);
  color: var(--accent-red);
}
.safety-grid-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.check-item-line {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.check-marker-icon {
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 2px;
}
.check-details-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.check-details-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
}

/* --- Regional NCR Depot Expanded Badges --- */
.ncr-depot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}
.depot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.depot-card:hover, .depot-card.active {
  border-color: var(--accent-red);
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.05);
}
.depot-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.depot-name-flex {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.depot-circle-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}
.depot-card-header h4 {
  font-size: 1.15rem;
  font-family: var(--font-title);
}
.depot-details-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}
.depot-details-inner {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Hero Location Coverage Bar */
.hero-location-coverage-bar {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.coverage-title {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--accent-red);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.location-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.location-pill {
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: rgba(16, 18, 29, 0.8);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
}

.location-pill strong {
  color: var(--text-primary);
}

/* Sticky Bottom Action Bar for Instant Mobile & Desktop Conversion */
.sticky-bottom-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 11, 16, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(230, 74, 25, 0.3);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
}

.sticky-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-text-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.sticky-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
  100% { transform: scale(0.95); opacity: 1; }
}

.sticky-btns-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.sticky-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.btn-call {
  background-color: var(--accent-red);
  color: #FFFFFF;
  border: 1px solid var(--accent-red);
  box-shadow: 0 4px 15px rgba(230, 74, 25, 0.3);
}

.btn-call:hover {
  background-color: #D83B0F;
  transform: translateY(-2px);
}

.btn-wa {
  background-color: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.btn-wa:hover {
  background-color: #25D366;
  color: #000000;
  transform: translateY(-2px);
}

/* Adaptive mobile rules for simulator and new components */
@media (max-width: 1024px) {
  .gallery-masonry-grid, .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-masonry-grid, .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .gallery-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .safety-grid-check {
    grid-template-columns: 1fr;
  }
  .ncr-depot-grid {
    grid-template-columns: 1fr;
  }
  .floating-contact-stack {
    bottom: 20px;
    right: 20px;
  }
  .floating-tooltip {
    display: none !important; /* Hide hover tooltips on mobile touch */
  }
  .hero-visual-deck {
    height: 380px;
  }
}

/* ==========================================================================
   QUOTE PAGE STYLES — FULL FORM EXPERIENCE
   ========================================================================== */

/* Hero Header for Quote Page */
.page-hero-header {
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(var(--accent-red-rgb, 220, 38, 38), 0.06) 0%, transparent 100%);
}

.page-hero-header .hero-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-red);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.08);
  margin-bottom: 1.2rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Lead Form Card — Glassmorphism */
.lead-form-card {
  background: var(--card-bg, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

.shadow-glass {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Form Header Bar with Progress */
.form-header-bar {
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}

.form-progress-indicator {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--accent-red), #ff6b6b);
  border-radius: 99px;
  box-shadow: 0 0 10px var(--accent-red-glow, rgba(220, 38, 38, 0.4));
  transition: width 0.5s ease;
}

.form-step-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Multi-step form area */
#standalone-quote-form {
  padding: 2rem;
}

.step-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

/* Custom Checkbox Cards Grid */
.service-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.custom-cb-card {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.25s ease;
}

.custom-cb-card:hover {
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.04);
}

.custom-cb-card input[type="checkbox"] {
  display: none;
}

.cb-box {
  display: inline-block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 5px;
  border: 2px solid var(--border-color, rgba(255, 255, 255, 0.15));
  background: transparent;
  position: relative;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.custom-cb-card input:checked ~ .cb-box {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.custom-cb-card input:checked ~ .cb-box::after {
  content: "✓";
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: bold;
}

.cb-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.cb-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Form Grid Layout */
.form-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary, #aaa);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.span-full {
  grid-column: 1 / -1;
}

.form-control {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* Form Action Buttons */
.form-actions-right {
  display: flex;
  justify-content: flex-end;
}

.form-actions-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.glow-btn {
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.25);
}

.glow-btn:hover {
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.margin-top-1rem {
  margin-top: 1rem;
}

/* Success Step */
.success-box {
  padding: 3rem 2rem;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.35);
}

.success-box h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.success-box p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Quote page mobile responsive */
@media (max-width: 768px) {
  .page-hero-header {
    padding: 8rem 0 3rem;
  }
  .service-checkbox-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2col {
    grid-template-columns: 1fr;
  }
  #standalone-quote-form {
    padding: 1.2rem;
  }
  .lead-form-card {
    border-radius: 12px;
  }
  .form-header-bar {
    padding: 0.8rem 1.2rem;
  }
  .form-actions-flex {
    flex-direction: column;
    gap: 0.8rem;
  }
  .form-actions-flex .btn-secondary,
  .form-actions-flex .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* ==========================================================================
   3D IMMERSIVE EXPERIENCE — FULL DEPTH SYSTEM
   ========================================================================== */

/* --- Floating 3D Geometric Background Shapes --- */
.scene-3d-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  perspective: 1000px;
}

.geo-shape {
  position: absolute;
  border: 1px solid rgba(230, 74, 25, 0.12);
  animation: floatRotate3D 20s ease-in-out infinite;
  transform-style: preserve-3d;
  opacity: 0.35;
}

.geo-shape.cube {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 8%;
  border-color: rgba(230, 74, 25, 0.15);
  animation-duration: 25s;
  transform: rotateX(45deg) rotateY(45deg);
}

.geo-shape.diamond {
  width: 40px;
  height: 40px;
  top: 40%;
  right: 12%;
  border-color: rgba(0, 242, 254, 0.12);
  animation-duration: 18s;
  animation-delay: -5s;
  transform: rotate(45deg) rotateX(60deg);
}

.geo-shape.triangle {
  width: 0;
  height: 0;
  border: none;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(230, 74, 25, 0.08);
  top: 65%;
  left: 5%;
  animation-duration: 22s;
  animation-delay: -8s;
}

.geo-shape.ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(0, 242, 254, 0.08);
  top: 20%;
  right: 6%;
  animation-duration: 30s;
  animation-delay: -3s;
}

.geo-shape.hexagon {
  width: 50px;
  height: 50px;
  border-color: rgba(245, 158, 11, 0.1);
  top: 75%;
  right: 20%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(245, 158, 11, 0.04);
  border: none;
  animation-duration: 28s;
  animation-delay: -12s;
}

.geo-shape.cross {
  width: 45px;
  height: 45px;
  top: 50%;
  left: 15%;
  border: none;
  background: 
    linear-gradient(rgba(230, 74, 25, 0.1), rgba(230, 74, 25, 0.1)) center/2px 100% no-repeat,
    linear-gradient(rgba(230, 74, 25, 0.1), rgba(230, 74, 25, 0.1)) center/100% 2px no-repeat;
  animation-duration: 20s;
  animation-delay: -7s;
}

@keyframes floatRotate3D {
  0% {
    transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateY(-30px) translateZ(50px) rotateX(90deg) rotateY(45deg);
  }
  50% {
    transform: translateY(-15px) translateZ(-30px) rotateX(180deg) rotateY(90deg);
  }
  75% {
    transform: translateY(-40px) translateZ(20px) rotateX(270deg) rotateY(135deg);
  }
  100% {
    transform: translateY(0) translateZ(0) rotateX(360deg) rotateY(180deg);
  }
}

/* --- 3D Perspective Grid Floor --- */
.perspective-grid {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.perspective-grid::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: 50%;
  left: -50%;
  background-image:
    linear-gradient(rgba(230, 74, 25, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 74, 25, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
  animation: gridScroll 8s linear infinite;
}

@keyframes gridScroll {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

/* --- 3D Tilt Card System --- */
.tilt-3d {
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.tilt-3d-inner {
  transform: translateZ(30px);
  transition: transform 0.3s ease;
}

.tilt-3d:hover .tilt-3d-inner {
  transform: translateZ(50px);
}

/* 3D depth shadow on tiltable cards */
.tilt-3d::after {
  content: '';
  position: absolute;
  inset: 5%;
  background: var(--accent-red-glow);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}

.tilt-3d:hover::after {
  opacity: 0.15;
}

/* --- 3D Scroll Reveal — Emerge from Depth --- */
.reveal-3d {
  opacity: 0;
  transform: translateZ(-80px) translateY(40px) rotateX(5deg);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.reveal-3d.revealed {
  opacity: 1;
  transform: translateZ(0) translateY(0) rotateX(0deg);
}

/* Stagger children reveal */
.reveal-3d-stagger > * {
  opacity: 0;
  transform: translateZ(-60px) translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-3d-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-3d-stagger.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-3d-stagger.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-3d-stagger.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-3d-stagger.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-3d-stagger.revealed > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-3d-stagger.revealed > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-3d-stagger.revealed > *:nth-child(8) { transition-delay: 0.54s; }
.reveal-3d-stagger.revealed > *:nth-child(9) { transition-delay: 0.61s; }
.reveal-3d-stagger.revealed > *:nth-child(10) { transition-delay: 0.68s; }
.reveal-3d-stagger.revealed > *:nth-child(11) { transition-delay: 0.75s; }
.reveal-3d-stagger.revealed > *:nth-child(12) { transition-delay: 0.82s; }

.reveal-3d-stagger.revealed > * {
  opacity: 1;
  transform: translateZ(0) translateY(0);
}

/* --- 3D Holographic Card Borders --- */
.holo-border {
  position: relative;
  overflow: hidden;
}

.holo-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(
    from var(--holo-angle, 0deg),
    transparent 0%,
    var(--accent-red) 10%,
    var(--accent-cyan) 20%,
    transparent 30%
  );
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: holoSpin 4s linear infinite;
}

.holo-border:hover::before {
  opacity: 0.6;
}

@keyframes holoSpin {
  0% { --holo-angle: 0deg; }
  100% { --holo-angle: 360deg; }
}

@property --holo-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* --- 3D Hero Parallax Depth Layers --- */
.hero-section {
  transform-style: preserve-3d;
  position: relative;
}

.hero-content {
  transform: translateZ(40px);
  position: relative;
  z-index: 2;
}

.hero-visual-deck {
  transform: translateZ(20px);
  position: relative;
  z-index: 1;
}

.glow-orb {
  transform: translateZ(-80px);
  animation: orbFloat3D 6s ease-in-out infinite alternate;
}

@keyframes orbFloat3D {
  0% { transform: translateZ(-80px) translate(0, 0) scale(1); }
  100% { transform: translateZ(-40px) translate(20px, -15px) scale(1.15); }
}

/* --- 3D Logo Spin on Load --- */
.logo-icon {
  animation: logoSpin3D 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-style: preserve-3d;
}

@keyframes logoSpin3D {
  0% { transform: rotateY(-180deg) scale(0.5); opacity: 0; }
  60% { transform: rotateY(20deg) scale(1.05); opacity: 1; }
  100% { transform: rotateY(0deg) scale(1); opacity: 1; }
}

/* --- 3D Card Lift on Hover (Generic) --- */
.expandable-card,
.service-detail-card,
.gallery-item,
.code-expandable-box,
.depot-card,
.stat-card,
.trust-badge-card,
.custom-cb-card {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.expandable-card:hover,
.service-detail-card:hover,
.gallery-item:hover,
.code-expandable-box:hover,
.depot-card:hover,
.stat-card:hover,
.trust-badge-card:hover {
  transform: translateY(-8px) translateZ(20px) rotateX(2deg);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(230, 74, 25, 0.08);
}

/* --- 3D Section Title Entrance --- */
.section-tag {
  animation: tagSlideIn3D 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes tagSlideIn3D {
  0% {
    opacity: 0;
    transform: translateX(-30px) translateZ(-40px) rotateY(-15deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateZ(0) rotateY(0deg);
  }
}

/* --- Floating 3D Badge Pulse --- */
.hero-badge {
  transform-style: preserve-3d;
  animation: badgePulse3D 3s ease-in-out infinite alternate;
}

@keyframes badgePulse3D {
  0% { transform: translateZ(0px); box-shadow: 0 0 0 rgba(230, 74, 25, 0); }
  100% { transform: translateZ(15px); box-shadow: 0 0 25px rgba(230, 74, 25, 0.15); }
}

/* --- 3D Depth Enhancement for Page Banners --- */
.page-banner {
  transform-style: preserve-3d;
  overflow: hidden;
}

.page-banner .container {
  transform: translateZ(30px);
  position: relative;
  z-index: 2;
}

/* --- 3D Interactive Button Press --- */
.btn-primary {
  transform-style: preserve-3d;
  position: relative;
}

.btn-primary:active {
  transform: translateY(2px) translateZ(-5px) scale(0.97);
  box-shadow: 0 2px 8px var(--accent-red-glow);
}

/* --- 3D Footer Depth Layer --- */
.site-footer {
  position: relative;
  transform-style: preserve-3d;
}

.site-footer .footer-grid {
  transform: translateZ(10px);
}

.footer-bottom-bar {
  transform: translateZ(5px);
}

/* --- 3D Navigation Depth (Keep fixed header stable) --- */
#nav-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 100000 !important;
  transform: none !important;
}

/* --- Particle Dust Motes --- */
.dust-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.dust-mote {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(230, 74, 25, 0.3);
  border-radius: 50%;
  animation: dustDrift 15s linear infinite;
}

.dust-mote:nth-child(2) {
  width: 3px; height: 3px;
  background: rgba(0, 242, 254, 0.2);
  animation-duration: 20s;
  animation-delay: -5s;
}

.dust-mote:nth-child(3) {
  background: rgba(255, 255, 255, 0.15);
  animation-duration: 18s;
  animation-delay: -8s;
}

@keyframes dustDrift {
  0% {
    transform: translate(0, 100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translate(10px, 80vh) scale(1);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translate(-20px, -10vh) scale(0.3);
    opacity: 0;
  }
}

/* --- 3D Disabled on Mobile for Performance --- */
@media (max-width: 768px) {
  body {
    perspective: none;
  }
  .scene-3d-shapes,
  .perspective-grid,
  .dust-particles {
    display: none;
  }
  .tilt-3d {
    transform: none !important;
  }
  .hero-content,
  .hero-visual-deck,
  #nav-header {
    transform: none;
  }
  .reveal-3d {
    transform: translateY(30px);
  }
  .reveal-3d.revealed {
    transform: translateY(0);
  }
  .expandable-card:hover,
  .service-detail-card:hover,
  .gallery-item:hover,
  .code-expandable-box:hover,
  .depot-card:hover,
  .stat-card:hover,
  .trust-badge-card:hover {
    transform: translateY(-4px);
  }
}


/* Hide old widget markup if still present */
.small-floating-contact-stack,
.whatsapp-floating-widget {
  display: none !important;
}


.small-floating-btn {
  pointer-events: auto;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.small-floating-btn.btn-call {
  background: linear-gradient(135deg, #E64A19, #D84315);
  box-shadow: 0 4px 16px rgba(230, 74, 25, 0.5);
}

.small-floating-btn.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}

.small-floating-btn:hover {
  transform: scale(1.12) translateY(-2px);
}

.small-floating-btn .small-icon {
  width: 22px;
  height: 22px;
}

.small-btn-tooltip {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(16, 18, 29, 0.95);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.small-floating-btn:hover .small-btn-tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .small-floating-contact-stack {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }
  .small-floating-btn {
    width: 40px;
    height: 40px;
  }
  .small-floating-btn .small-icon {
    width: 20px;
    height: 20px;
  }
  .small-btn-tooltip {
    display: none !important;
  }
}


/* ==========================================================================
   PREMIUM ENHANCEMENTS — CROSS-DEVICE POLISH
   Appended: Nav shrink, button shimmer, mobile nav overlay, image
   lazy reveal, scroll-to-top, safe footer spacing.
   ========================================================================== */

/* --- Navbar: shrinks on scroll (via JS adding .nav-scrolled class) --- */
#nav-header.nav-scrolled {
  background-color: rgba(9, 10, 15, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

#nav-header.nav-scrolled .nav-container {
  height: 64px;
  transition: height 0.3s ease;
}

/* Default nav-container transition */
.nav-container {
  transition: height 0.3s ease;
}

/* --- Button shimmer sweep on hover --- */
.btn-primary {
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}

.btn-primary:hover::before {
  animation: btnShimmer 0.6s ease forwards;
}

@keyframes btnShimmer {
  0%   { left: -75%; }
  100% { left: 125%; }
}

/* Ensure btn-primary is position: relative for shimmer */
.btn-primary {
  position: relative;
}

/* --- Mobile Nav: backdrop overlay when drawer is open --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* --- Hamburger → X animation when nav is open --- */
.mobile-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Image lazy-load: images always visible --- */
img[loading="lazy"].img-loaded {
  opacity: 1;
}


/* --- Scroll-to-top button --- */
.scroll-top-btn {
  position: fixed;
  bottom: calc(130px + env(safe-area-inset-bottom, 0px));
  right: 24px;
  z-index: 99990;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 74, 25, 0.15);
  border: 1px solid rgba(230, 74, 25, 0.35);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: rgba(230, 74, 25, 0.3);
}

.scroll-top-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .scroll-top-btn {
    right: 16px;
    bottom: calc(120px + env(safe-area-inset-bottom, 0px));
    width: 36px;
    height: 36px;
  }
}

/* --- Safe footer bottom on iPhone X / notch phones --- */
footer {
  padding-bottom: max(3rem, calc(2rem + env(safe-area-inset-bottom, 0px)));
}

/* --- Fix horizontal overflow on small devices --- */
.hero-container,
.capabilities-expand-grid,
.gallery-masonry-grid,
.hubs-grid,
.footer-grid,
.detailed-service-row {
  width: 100%;
  max-width: 100%;
}

/* --- Better mobile section padding --- */
@media (max-width: 480px) {
  section {
    padding: 4rem 0;
  }
  .container {
    padding: 0 1.25rem !important;
  }
  .hero-section {
    padding-top: 100px;
    padding-bottom: 4rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-stats-quick {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .quick-stat .number {
    font-size: 1.5rem;
  }
  .decal-card {
    max-width: 100%;
    padding: 1.4rem;
  }
  .trust-badge-pill {
    font-size: 0.82rem;
    padding: 0.5rem 0.9rem;
  }
}

/* --- Ensure no element breaks horizontal bounds --- */
@media (max-width: 390px) {
  .nav-logo {
    font-size: 1.1rem;
  }
  .logo-icon {
    width: 2.2rem;
    height: 1.6rem;
  }
  .hero-title {
    font-size: clamp(1.65rem, 7.5vw, 2.1rem);
  }
  .btn-primary, .btn-secondary {
    padding: 0.7rem 1.3rem;
    font-size: 0.88rem;
  }
}

/* --- Print: hide decorative elements --- */
@media print {
  .floating-contact-bar,
  .scroll-top-btn,
  #nav-header,
  .hero-background,
  .glow-orb {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}


/* ==========================================================================
   ★ BULLETPROOF MOBILE SYSTEM & CONTINUOUS FLOATING CONTACT ICONS ★
   Guarantees:
   1. Floating Call & WhatsApp icons stay CONTINUOUSLY FIXED at corner on scroll
   2. Hamburger menu opens smoothly and displays ALL navigation options
/* ==========================================================================
   ★ STICKY QUICK ACTION PILL BUTTONS (EXACT MATCH TO USER REFERENCE IMAGE) ★
   Green WhatsApp Pill (Top) + Blue Call Pill (Bottom)
   Continuously floating at bottom-right corner while scrolling across all pages
   ========================================================================== */

.sticky-contact-pills,
.floating-contact-bar {
  position: fixed !important;
  top: 50% !important;
  bottom: auto !important;
  right: 18px !important;
  transform: translateY(-50%) !important;
  -webkit-transform: translateY(-50%) !important;
  z-index: 2147483647 !important; /* Maximum priority: always in front of user eyes */
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 12px !important;
  pointer-events: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.contact-pill-btn,
.fcb-btn {
  pointer-events: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 20px !important;
  border-radius: 50px !important; /* Full smooth pill shape */
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4) !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  -webkit-tap-highlight-color: transparent !important;
  touch-action: manipulation !important;
}

.contact-pill-btn:hover,
.fcb-btn:hover {
  transform: scale(1.08) translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55) !important;
}

.contact-pill-btn:active,
.fcb-btn:active {
  transform: scale(0.96) !important;
}

/* WhatsApp pill - Emerald Green (exact match to screenshot) */
.contact-pill-btn.pill-whatsapp,
.fcb-btn.fcb-whatsapp {
  background: #16a34a !important;
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

.contact-pill-btn.pill-whatsapp:hover,
.fcb-btn.fcb-whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #15803d) !important;
}

/* Call pill - Royal Blue (exact match to screenshot) */
.contact-pill-btn.pill-call,
.fcb-btn.fcb-call {
  background: #2563eb !important;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
}

.contact-pill-btn.pill-call:hover,
.fcb-btn.fcb-call:hover {
  background: linear-gradient(135deg, #60a5fa, #1e40af) !important;
}

.pill-icon,
.fcb-icon {
  width: 19px !important;
  height: 19px !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.pill-text,
.fcb-btn-text {
  display: inline-block !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.fcb-pulse-ring,
.fcb-tooltip {
  display: none !important;
}

/* Mobile responsive sizing: locked to screen middle-right (eye level) */
@media (max-width: 768px) {
  .sticky-contact-pills,
  .floating-contact-bar {
    top: 50% !important;
    bottom: auto !important;
    right: 12px !important;
    transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    gap: 10px !important;
  }
  .contact-pill-btn,
  .fcb-btn {
    padding: 8px 15px !important;
    font-size: 14px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45) !important;
  }
  .pill-icon,
  .fcb-icon {
    width: 17px !important;
    height: 17px !important;
  }
  .pill-text,
  .fcb-btn-text {
    font-size: 14px !important;
  }
}

/* --- MOBILE NAVIGATION & RESPONSIVE LAYOUT ENGINE (<= 900px) --- */
@media (max-width: 900px) {

  /* 1. FIXED HEADER */
  #nav-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 72px !important;
    z-index: 100000 !important;
    background: rgba(9, 10, 15, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    overflow: visible !important;
  }

  .nav-container {
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 1.25rem !important;
    max-width: 100% !important;
  }

  .nav-actions {
    display: flex !important;
    align-items: center !important;
  }

  .nav-phone,
  .nav-actions > .btn-primary {
    display: none !important;
  }

  /* 2. VISIBLE, HIGH-TOUCH HAMBURGER BUTTON */
  .mobile-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 8px !important;
    padding: 10px 8px !important;
    cursor: pointer !important;
    z-index: 100002 !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .mobile-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2.5px !important;
    background-color: #FFFFFF !important;
    border-radius: 2px !important;
    transition: transform 0.25s ease, opacity 0.25s ease !important;
    flex-shrink: 0 !important;
  }

  /* Hamburger → X transformation */
  .mobile-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg) !important;
  }
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0 !important;
  }
  .mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg) !important;
  }

  /* 3. MOBILE MENU DROPDOWN — SHOWS ALL OPTIONS CLEANLY */
  .nav-links {
    display: none !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #0d0f18 !important;
    border-bottom: 3px solid var(--accent-red) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95) !important;
    padding: 1rem 1.5rem 2rem !important;
    gap: 0 !important;
    z-index: 100001 !important;
    max-height: calc(100vh - 72px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .nav-links.mobile-active {
    display: flex !important;
    animation: mobileNavReveal 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  }

  @keyframes mobileNavReveal {
    0%   { opacity: 0; transform: translateY(-12px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .nav-links .nav-link {
    display: flex !important;
    align-items: center !important;
    padding: 14px 12px !important;
    font-size: 1.12rem !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    text-decoration: none !important;
    transition: background 0.15s ease, color 0.15s ease !important;
    width: 100% !important;
  }

  .nav-links .nav-link:last-child {
    border-bottom: none !important;
  }

  .nav-links .nav-link:hover,
  .nav-links .nav-link.active {
    color: var(--accent-red) !important;
    background: rgba(230, 74, 25, 0.08) !important;
    border-radius: 6px !important;
    padding-left: 18px !important;
  }

  /* 4. HERO SECTION ALIGNMENT */
  .hero-section {
    padding-top: 100px !important;
    padding-bottom: 3.5rem !important;
    min-height: auto !important;
  }

  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 1.25rem !important;
    gap: 2rem !important;
  }

  .hero-content {
    width: 100% !important;
    align-items: center !important;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-benefits-list {
    width: 100% !important;
    gap: 0.6rem !important;
    margin-bottom: 1.75rem !important;
  }

  .benefit-tag-item {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 0.82rem !important;
    padding: 0.6rem 0.85rem !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .hero-actions {
    width: 100% !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-bottom: 2rem !important;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.85rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  .hero-location-coverage-bar {
    width: 100% !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
  }

  .location-pills-wrap {
    justify-content: center !important;
  }

  /* HERO VISUAL DECK: NO OVERLAPPING ON PHONES */
  .hero-visual-deck {
    width: 100% !important;
    height: auto !important;
    margin-top: 1rem !important;
    position: static !important;
  }

  .deck-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.85rem !important;
    width: 100% !important;
    height: auto !important;
    position: static !important;
  }

  .overlapping-card {
    position: static !important;
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 10px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    border: 2px solid rgba(230, 74, 25, 0.3) !important;
  }

  .card-drill-img,
  .card-rebar-img {
    position: static !important;
    width: 100% !important;
  }

  /* 5. SERVICES DETAIL ROWS: CLEAN STACKING, NO OVERLAP */
  .detailed-service-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    padding: 3rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .detailed-service-row.reverse .service-detail-info {
    order: 1 !important;
  }

  .detailed-service-row.reverse .service-detail-visual {
    order: 2 !important;
  }

  .service-detail-info h2 {
    font-size: 1.6rem !important;
    margin-bottom: 1rem !important;
  }

  .service-paragraph {
    font-size: 0.95rem !important;
    margin-bottom: 1.25rem !important;
  }

  .service-action-group {
    flex-direction: column !important;
    width: 100% !important;
  }

  .service-action-group a {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .visual-img-wrapper {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* 6. CAPABILITIES & GALLERY: SINGLE COLUMN ON PHONE */
  .capabilities-expand-grid,
  .capabilities-grid,
  .gallery-masonry-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .props-grid,
  .ncr-depot-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .gallery-metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }

  /* 7. GENERAL CONTAINERS & SECTION PADDING */
  section {
    padding: 3.5rem 0 !important;
  }

  .container,
  section > .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-banner {
    padding: 5.5rem 0 3rem !important;
  }

  .page-banner-title {
    font-size: 2rem !important;
  }

  .page-banner-desc {
    font-size: 0.95rem !important;
  }

  .section-title {
    font-size: 1.7rem !important;
  }

  .section-desc {
    font-size: 0.95rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

