/* ==========================================================================
   SV PLAST - LUXURY GYPSUM PLASTER STYLESHEET
   Design Theme: "Architectural 3D Purity"
   Unobscured 3D Metamorphosis Background with Frosted Glass Panels
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #050805;
  --bg-glass-card: rgba(8, 14, 10, 0.58);
  --bg-glass-card-hover: rgba(14, 24, 17, 0.75);

  --text-main: #ffffff;
  --text-muted: #d5ded7;
  --text-dim: #9aa89d;

  /* Brand colors strictly extracted from SV PLAST Logo */
  --brand-green: #2b9e37;
  --brand-green-light: #4ade80;
  --brand-green-dark: #1e7527;
  --brand-green-glow: rgba(43, 158, 55, 0.4);

  /* Aliases mapped to brand logo colors */
  --accent-gold: var(--brand-green);
  --accent-gold-light: var(--brand-green-light);
  --accent-gold-glow: var(--brand-green-glow);
  --accent-teal: var(--brand-green-light);
  --accent-green: var(--brand-green);

  --border-subtle: rgba(255, 255, 255, 0.14);
  --border-brand: rgba(43, 158, 55, 0.45);
  --border-gold: var(--border-brand);
  --border-hover: rgba(74, 222, 128, 0.5);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
  --shadow-glow: 0 0 40px -8px rgba(43, 158, 55, 0.35);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: transparent;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img,
canvas {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

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

button,
input,
textarea,
select {
  font-family: inherit;
}

/* Allow normal text selection inside input fields so visitors can submit forms */
input,
textarea,
select {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* ==========================================================================
   GLOBAL 3D BACKGROUND STAGE
   Unobscured, vibrant 3D animation visible behind all sections
   ========================================================================== */
.global-3d-stage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #000;
  contain: strict;
  will-change: transform;
}

#scroll-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  will-change: transform;
}

/* Canvas Preloader */
.canvas-loader {
  position: absolute;
  inset: 0;
  background: #07090e;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.canvas-loader.fade-out {
  opacity: 0;
}

.loader-bar-bg {
  width: 240px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-light));
  transition: width 0.15s ease;
}



/* ==========================================================================
   Typography, Section Containment & Reusable Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Fast Rendering Section Containment (Zero-lag scroll paint) */
.section-mission-vision,
.section-media,
.section-work,
.section-why,
.section-about,
.section-contact {
  content-visibility: auto;
  contain-intrinsic-size: 1px 750px;
}

.text-brand,
.text-gold {
  color: var(--brand-green-light);
}

.text-gradient-brand,
.text-gradient-gold {
  background: linear-gradient(135deg, #ffffff 20%, #4ade80 70%, #2b9e37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none !important;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.85));
}

h1,
h2,
h3,
.section-title,
.brand-name {
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.85));
}

p,
span,
.nav-link {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.75));
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(8, 14, 10, 0.75);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-green-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
  animation: pulse-glow 2s infinite ease-in-out;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0.75rem;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Frosted Glass Cards (Floating over 3D Background with Specular Highlights) */
.glass-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.glass-card:hover {
  background: var(--bg-glass-card-hover);
  border-color: var(--border-brand);
  transform: translateY(-4px) scale(1.005);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.glass-card:hover::before {
  left: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.84rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(43, 158, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(43, 158, 55, 0.65);
  background: linear-gradient(135deg, #34bd3d 0%, #228b2c 100%);
  color: #ffffff;
}

.btn-outline {
  background: rgba(8, 14, 10, 0.6);
  border: 1px solid var(--border-subtle);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--brand-green-light);
  color: #ffffff;
  background: rgba(43, 158, 55, 0.15);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

.btn-call {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border-subtle);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-call:hover {
  border-color: var(--brand-green-light);
  color: #ffffff;
  background: rgba(43, 158, 55, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Clean Navigation Architecture (Slim 64px)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: rgba(5, 8, 5, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  background: rgba(5, 8, 5, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--border-brand);
}

/* Main Navigation Bar */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand-name-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--brand-green-light);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.35rem 0.15rem;
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-light));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Modern Hamburger Button */
.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  padding: 10px 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
  background: rgba(43, 158, 55, 0.2);
  border-color: var(--brand-green-light);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Off-Canvas Navigation Drawer & Backdrop
   ========================================================================== */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1050;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100vh;
  background: #070a08;
  border-left: 1px solid var(--border-brand);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.85);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.drawer-close-btn:hover {
  background: rgba(43, 158, 55, 0.25);
  border-color: var(--brand-green-light);
  color: var(--brand-green-light);
}

.drawer-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  flex: 1;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.drawer-link {
  display: block;
  padding: 0.85rem 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.25s ease, padding-left 0.25s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.drawer-link:hover,
.drawer-link.active {
  color: #fff;
  padding-left: 0.85rem;
  border-left: 3px solid var(--brand-green);
}

.drawer-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-action-btn {
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
  font-size: 0.95rem;
}

.drawer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.drawer-contact-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  transition: var(--transition-smooth);
}

.drawer-contact-card svg {
  color: var(--brand-green-light);
  flex-shrink: 0;
}

.drawer-contact-card strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.drawer-contact-card span {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.drawer-contact-card:hover {
  background: rgba(43, 158, 55, 0.15);
  border-color: var(--brand-green-light);
}

.drawer-wa svg {
  color: #25d366;
}

/* ==========================================================================
   ALL SECTIONS: Transparent Background (Content Floats Over 3D Canvas)
   ========================================================================== */
section {
  position: relative;
  z-index: 1;
  background: transparent !important;
  padding: 5.5rem 0;
  scroll-margin-top: 75px;
}

/* ==========================================================================
   1. Hero Section (Split 2-Container Layout & Mobile Slideshow)
   ========================================================================== */
.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.5rem 0 4.5rem 0;
  position: relative;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.25rem;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.hero-left-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 3rem 3.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hero-left-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.4), transparent);
}

.hero-badge {
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-self: flex-start;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 100%;
  margin-bottom: 2rem;
}

.hero-subtitle strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
  justify-content: flex-start;
}

.hero-left-card .hero-trust-ribbon {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: flex-start;
  width: 100%;
}

.hero-left-card .trust-pill {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
}

/* Right Container: Automatic Slideshow (Full Poster Ratio 2:3, Never Cropped) */
.hero-right-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hero-right-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.4), transparent);
}

.slideshow-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(43, 158, 55, 0.18);
  color: #4ade80;
  border: 1px solid rgba(43, 158, 55, 0.35);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-slideshow-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 2 / 3;
  margin: 0 auto;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: #111a14;
  display: flex;
  flex-direction: column;
}

.hero-slideshow-track {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s ease;
  transform: scale(1.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Specular reflection gloss line */
.hero-slideshow-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 30%, transparent 100%);
}

.hero-slideshow-dots {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 0.85rem;
  max-width: 96%;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.slide-dot.active {
  width: 22px;
  border-radius: 9999px;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
}

.slideshow-timer-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 6;
}

.timer-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2b9e37, #4ade80);
}

@media (max-width: 1024px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-left-card {
    text-align: center;
    padding: 2.5rem 1.75rem;
    align-items: center;
  }

  .hero-badge {
    align-self: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-left-card .hero-trust-ribbon {
    justify-content: center;
  }

  .hero-right-card {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
  }

  .hero-slideshow-container {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 2 / 3;
    height: auto;
    min-height: unset;
  }
}



/* ==========================================================================
   2. Our Mission & Our Vision
   ========================================================================== */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card-icon-header {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   3. 9 Core Advantages
   ========================================================================== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.advantage-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.advantage-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.advantage-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

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

/* ==========================================================================
   4. Our Work in Action (Carousel)
   ========================================================================== */
.gallery-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 2rem;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-brand);
}

.gallery-img-container {
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-container img {
  transform: scale(1.06);
}

.gallery-info {
  padding: 1.25rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.gallery-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.carousel-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}

.gal-dots {
  display: flex;
  gap: 0.5rem;
}

.gal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gal-dot.active {
  background: var(--brand-green);
  width: 26px;
  border-radius: 8px;
}

/* ==========================================================================
   5. Why SV PLAST
   ========================================================================== */
/* Wide Container for Full-Screen Utilization */
.container-wide {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* Two Containers Stack for Our Mission & Our Vision */
.mv-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

.mv-feature-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.2rem 3.5rem;
  border-radius: 24px;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  width: 100%;
}

.mv-feature-card:hover {
  background: var(--bg-glass-card-hover);
  border-color: var(--border-brand);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(-4px);
}

.mv-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.mv-badge {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 0.4rem 1.1rem;
}

.mv-feature-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.mv-feature-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.mv-actions {
  margin-top: 0.5rem;
}

.mv-feature-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-img-frame {
  position: relative;
  width: 80%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.mv-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mv-feature-card:hover .mv-img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .mv-feature-card {
    grid-template-columns: 1fr;
    padding: 2.2rem 1.75rem;
    gap: 2rem;
  }

  .mv-img-frame {
    height: 280px;
  }
}

/* ==========================================================================
   6. About Us
   ========================================================================== */
.about-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
}

.about-text-lead {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.about-stat-box {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-green-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
  font-weight: 600;
}

/* ==========================================================================
   7. Contact Us
   ========================================================================== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: #fff;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--brand-green-light);
}

.contact-actions-bar {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ==========================================================================
   Modals (Brochure & Lightbox)
   ========================================================================== */
.brochure-modal,
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.brochure-modal.active,
.lightbox-modal.active {
  display: flex;
}

.brochure-card {
  max-width: 620px;
  width: 100%;
  background: #080d09;
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.brochure-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.brochure-icon {
  font-size: 2rem;
}

.brochure-features-list {
  list-style: none;
  margin: 1.5rem 0;
}

.brochure-features-list li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brochure-features-list li::before {
  content: '✓ ';
  color: var(--brand-green-light);
  font-weight: 700;
}

.brochure-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.lightbox-content {
  max-width: 960px;
  width: 100%;
  position: relative;
  text-align: center;
}

.lightbox-img {
  max-height: 80vh;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.close-modal-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  z-index: 2;
  background: rgba(4, 6, 9, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 420px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: var(--brand-green-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Hero Trust Metrics Ribbon
   ========================================================================== */
.hero-trust-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
  max-width: 1040px;
  width: 100%;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.15rem;
  background: rgba(8, 14, 10, 0.65);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.trust-pill:hover {
  transform: translateY(-2px);
  border-color: var(--brand-green-light);
  box-shadow: 0 6px 22px rgba(43, 158, 55, 0.3);
}

.trust-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.trust-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.trust-text strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.1;
}

.trust-text span {
  font-size: 0.72rem;
  color: var(--brand-green-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* ==========================================================================
   3D Tilt Card & Bag Presentation
   ========================================================================== */
.tilt-card-3d {
  position: relative;
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
}

.glare-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  z-index: 5;
}

/* ==========================================================================
   Technical Specifications Grid
   ========================================================================== */
.specs-wrapper {
  margin-top: 4.5rem;
}

.specs-header {
  text-align: center;
  margin-bottom: 2rem;
}

.specs-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-top: 0.75rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.spec-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.spec-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.spec-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-green-light);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.spec-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.spec-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Interactive Construction Savings & Material Calculator
   ========================================================================== */
.calculator-card {
  margin-top: 3.5rem;
  padding: 3rem;
  border: 1px solid var(--border-brand);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.calc-top {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.calc-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0.75rem 0 0.5rem;
}

.calc-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-inputs-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.input-header label,
.input-group label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.num-input {
  width: 110px;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: right;
  outline: none;
  transition: var(--transition-smooth);
}

.num-input:focus {
  border-color: var(--brand-green-light);
  box-shadow: 0 0 10px rgba(43, 158, 55, 0.4);
}

.brand-range {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.brand-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 12px var(--brand-green);
  cursor: pointer;
  border: 2px solid #fff;
  transition: transform 0.15s ease;
}

.brand-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.brand-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(8, 14, 10, 0.9);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.brand-select:focus {
  border-color: var(--brand-green-light);
}

.calc-note {
  padding: 0.9rem 1.1rem;
  background: rgba(43, 158, 55, 0.12);
  border-left: 3px solid var(--brand-green);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.calc-results-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.result-box {
  background: rgba(8, 14, 10, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.result-box:hover {
  border-color: var(--border-brand);
  transform: translateY(-3px);
}

.res-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.4rem;
}

.res-val {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-green-light);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.res-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.btn-calc-order {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}



/* ==========================================================================
   Commercial Quote & Enterprise Contact Engine
   ========================================================================== */
.contact-enterprise-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-card {
  padding: 1.5rem;
}

.contact-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.dispatch-badge-card {
  padding: 1.35rem;
  background: rgba(43, 158, 55, 0.08);
  border: 1px solid var(--border-brand);
}

.dispatch-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--brand-green-light);
  margin-bottom: 0.5rem;
}

.dispatch-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.quote-form-card {
  padding: 2.5rem;
  border: 1px solid var(--border-brand);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.form-header {
  margin-bottom: 1.75rem;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin: 0.6rem 0 0.35rem;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.enterprise-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-green-light);
  background: rgba(43, 158, 55, 0.12);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25), 0 0 16px rgba(43, 158, 55, 0.4);
}

.form-select option {
  background: #080e0a;
  color: #fff;
}

.form-button-group {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.btn-submit-quote {
  flex: 1.2;
  padding: 0.85rem 1.4rem;
}

.btn-whatsapp-forward {
  flex: 1;
  padding: 0.85rem 1.2rem;
  font-size: 0.88rem;
}

.status-badge {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.status-badge.success {
  background: rgba(43, 158, 55, 0.25);
  border: 1px solid var(--brand-green-light);
  color: #86efac;
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Floating Quick Action Button (Bottom-Left)
   ========================================================================== */
.floating-quick-contact {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 99;
}

.floating-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.2rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 15px rgba(43, 158, 55, 0.3);
  transition: var(--transition-smooth);
}

.floating-wa-btn:hover {
  background: #20ba59;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Clean Essential Footer with Interactive Google Maps
   ========================================================================== */
.site-footer {
  position: relative;
  z-index: 1;
  background: rgba(4, 7, 5, 0.97);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 3.5rem 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1.15fr 1.4fr;
  gap: 2.75rem;
  margin-bottom: 2.75rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-brand .brand-logo {
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.footer-tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--brand-green-light);
  background: rgba(43, 158, 55, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.01em;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-light));
  border-radius: 2px;
}

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-contact-card {
  padding: 0.75rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

a.footer-contact-card:hover {
  background: rgba(43, 158, 55, 0.12);
  border-color: rgba(74, 222, 128, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(43, 158, 55, 0.18);
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(43, 158, 55, 0.16);
  border: 1px solid rgba(74, 222, 128, 0.28);
  color: var(--brand-green-light);
  flex-shrink: 0;
}

.footer-contact-icon.wa-icon {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.35);
  color: #25d366;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.footer-contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.footer-contact-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  word-break: break-word;
  line-height: 1.35;
  transition: color 0.2s ease;
}

a.footer-contact-card:hover .footer-contact-val {
  color: var(--brand-green-light);
}

/* Embedded Google Map */
.footer-map-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.footer-map-iframe {
  width: 100%;
  height: 175px;
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: var(--radius-md);
  display: block;
  filter: contrast(1.05) brightness(0.92);
  transition: var(--transition-smooth);
}

.footer-map-iframe:hover {
  border-color: var(--brand-green-light);
  filter: contrast(1.1) brightness(1);
}

.footer-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(43, 158, 55, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 10px;
  transition: var(--transition-smooth);
  text-decoration: none;
  width: 100%;
}

.footer-map-btn:hover {
  background: var(--brand-green);
  border-color: var(--brand-green-light);
  box-shadow: 0 4px 18px rgba(43, 158, 55, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom-left p {
  filter: none;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--brand-green-light);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.footer-back-to-top:hover {
  background: rgba(43, 158, 55, 0.2);
  border-color: var(--brand-green-light);
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-enterprise-layout {
    grid-template-columns: 1fr;
  }

  .why-content-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-col-map {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .site-footer {
    padding: 3.5rem 0 6rem 0;
  }

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

  .footer-col-map {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    padding-bottom: 2rem;
  }

  .footer-bottom-right {
    justify-content: center;
  }

  .mv-grid,
  .advantages-grid,
  .specs-grid,
  .contact-mini-grid,
  .form-row,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    flex: 0 0 100%;
  }

  .calculator-card,
  .quote-form-card {
    padding: 1.75rem;
  }

  .hero-trust-ribbon {
    gap: 0.75rem;
  }

  .trust-pill {
    padding: 0.45rem 0.9rem;
  }

  .about-card {
    padding: 1.5rem 1.15rem !important;
    border-radius: var(--radius-md);
  }

  .about-text-lead {
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .about-text-body {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 1.5rem;
  }

  .comparison-table-card {
    padding: 1.5rem 1.15rem;
  }

  .comparison-table-card .table-main-title {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .floating-quick-contact {
    bottom: 1.25rem;
    right: 1.25rem;
    left: auto;
    z-index: 999;
  }

  .floating-wa-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  }

  .floating-wa-btn span {
    display: none;
  }

  .floating-wa-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* ==========================================
   DYNAMIC MEDIA SECTIONS (INSTAGRAM, YOUTUBE, GALLERY)
   ========================================== */
.section-media {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.media-slider-wrapper {
  position: relative;
  width: 100%;
}

.media-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-bottom: 1.25rem;
  padding-top: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar for Media Sliders */
.media-grid::-webkit-scrollbar {
  height: 7px;
}

.media-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
}

.media-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-light));
  border-radius: 9999px;
}

.media-grid::-webkit-scrollbar-thumb:hover {
  background: var(--brand-green-light);
}

.media-grid>.media-card,
.media-grid>.gallery-card {
  flex: 0 0 min(330px, 82vw) !important;
  min-width: 280px;
  scroll-snap-align: start;
}

.media-controls {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.slide-cue-pill {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-green-light);
  background: rgba(43, 158, 55, 0.12);
  border: 1px solid rgba(43, 158, 55, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.media-empty {
  width: 100%;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted, #9ca3af);
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-size: 0.95rem;
}

.media-card {
  background: rgba(36, 45, 54, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.media-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 222, 128, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(74, 222, 128, 0.25);
}

/* Instagram Card Container */
.insta-card {
  padding: 0.8rem;
  background: linear-gradient(180deg, #2a343e 0%, #1e262f 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.insta-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.insta-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-card:hover .insta-thumb-img {
  transform: scale(1.05);
}

.insta-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(253, 29, 29, 0.5);
  transition: all 0.25s ease;
  text-decoration: none;
}

.insta-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.insta-info {
  padding: 1rem 0.5rem 0.35rem 0.5rem;
}

.insta-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.insta-badge-pill {
  font-size: 0.7rem;
  background: rgba(253, 29, 29, 0.18);
  border: 1px solid rgba(253, 29, 29, 0.45);
  color: #ff7b7b;
}

.insta-date {
  font-size: 0.75rem;
  color: #a0aec0;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-insta:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

/* YouTube Video Card Container */
.yt-card {
  padding: 0.8rem;
  background: linear-gradient(180deg, #2a343e 0%, #1e262f 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.yt-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.yt-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.yt-card:hover .yt-thumb-img {
  transform: scale(1.05);
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(239, 68, 68, 0.92);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
  transition: all 0.25s ease;
}

.yt-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ef4444;
}

.yt-info {
  padding: 1rem 0.5rem 0.35rem 0.5rem;
}

/* Photo Gallery & Lightbox */
.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.gallery-card {
  cursor: pointer;
}

.gallery-img-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-hover-overlay {
  opacity: 1;
}

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1.5rem;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 85vw;
  max-height: 75vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  margin-top: 1rem;
  color: #f3f4f6;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   Cement Plaster vs SV PLAST Comparison Table & Bag Estimator (Dark Glass Theme)
   ========================================================================== */

/* Comparison Table Styling */
.comparison-table-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  margin-top: 0;
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.comparison-table-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.5), transparent);
  pointer-events: none;
}

.comparison-table-card .table-head-box {
  text-align: center;
  margin-bottom: 2rem;
}

.comparison-table-card .table-main-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.comparison-table-card .table-sub-title {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 500;
}

.comp-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.comp-table th,
.comp-table td {
  padding: 1.15rem 1.5rem;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.comp-table th {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Feature column */
.comp-table th:nth-child(1) {
  width: 30%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.comp-table td:nth-child(1) {
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

/* Traditional Cement column */
.comp-table th.col-trad {
  width: 35%;
  background: rgba(239, 68, 68, 0.14);
  color: #f87171;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-table td.col-trad-val {
  background: rgba(239, 68, 68, 0.05);
  color: #fca5a5;
  font-weight: 600;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* SV PLAST Gypsum column */
.comp-table th.col-svplast {
  width: 35%;
  background: rgba(43, 158, 55, 0.25);
  color: #4ade80;
  border-left: 1px solid rgba(43, 158, 55, 0.3);
}

.comp-table td.col-svplast-val {
  background: rgba(43, 158, 55, 0.1);
  color: #4ade80;
  font-weight: 700;
  border-left: 1px solid rgba(43, 158, 55, 0.3);
}

.comp-table tr:hover td {
  filter: brightness(1.15);
}

.comp-table tr:last-child td {
  border-bottom: none;
}

/* Bag Estimator Styling (Dark Glass Theme) */
.image3-estimator-box {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  color: var(--text-main);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.image3-estimator-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.5), transparent);
  pointer-events: none;
}

.image3-estimator-box .est-head {
  text-align: center;
  margin-bottom: 2rem;
}

.image3-estimator-box .est-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(43, 158, 55, 0.18);
  color: #4ade80;
  border: 1px solid rgba(43, 158, 55, 0.35);
  border-radius: 9999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.image3-estimator-box .est-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.est-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 768px) {
  .image3-estimator-box {
    padding: 1.5rem 1rem;
    margin-top: 1.75rem;
  }

  .image3-estimator-box .est-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .image3-estimator-box .est-head {
    margin-bottom: 1.35rem;
  }

  .est-inputs-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .est-input-card {
    padding: 1rem 1.15rem;
  }

  .thickness-pills-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
  }

  .thickness-pill {
    min-width: 0;
    padding: 0.65rem 0.2rem;
    font-size: 0.8rem;
  }

  .est-results-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .est-result-card {
    padding: 1.15rem 0.5rem;
  }

  .est-result-num {
    font-size: 2.1rem;
  }

  .est-result-sub {
    font-size: 0.78rem;
  }
}

.est-input-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.est-card-label {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.est-card-label span.highlight-sqft {
  color: #4ade80;
  font-size: 1.2rem;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(74, 222, 128, 0.4);
}

.est-slider-input {
  width: 100%;
  accent-color: #4ade80;
  cursor: pointer;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.thickness-pills-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.thickness-pill {
  flex: 1;
  min-width: 60px;
  padding: 0.65rem 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.thickness-pill:hover {
  border-color: #4ade80;
  color: #ffffff;
  background: rgba(43, 158, 55, 0.2);
}

.thickness-pill.active {
  background: #2b9e37;
  color: #ffffff;
  border-color: #4ade80;
  box-shadow: 0 4px 16px rgba(43, 158, 55, 0.45);
}

.est-results-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.est-result-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.est-result-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.est-result-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.est-result-num.num-green {
  color: #4ade80;
  text-shadow: 0 0 24px rgba(74, 222, 128, 0.35);
}

.est-result-num.num-blue {
  color: #60a5fa;
  text-shadow: 0 0 24px rgba(96, 165, 250, 0.35);
}

.est-result-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Wide Landscape Rectangular Contact Form & Single-Line Pan-India Supply Bar
   ========================================================================== */
.contact-wide-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.quote-form-card.rectangular-form {
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem 3rem !important;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-brand);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  width: 100%;
}

.form-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.15rem;
}

@media (max-width: 920px) {
  .form-grid-3col {
    grid-template-columns: 1fr;
  }
}

.rectangular-form .form-input,
.rectangular-form .form-select,
.rectangular-form .form-textarea {
  border-radius: 10px !important;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 0.75rem 1rem;
  width: 100%;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.rectangular-form .form-input:focus,
.rectangular-form .form-select:focus,
.rectangular-form .form-textarea:focus {
  border-color: var(--brand-green-light);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.rectangular-form .form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 0.45rem;
}

.form-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .form-actions-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.btn-submit-quote-single {
  min-width: 280px;
  border-radius: 10px;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(43, 158, 55, 0.4);
}

.form-privacy-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin: 0;
}

/* Pan-India Supply & Technical Highlights Bar */
.pan-india-supply-bar {
  margin-top: 1.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 222, 128, 0.25);
  background: linear-gradient(135deg, rgba(8, 16, 11, 0.85) 0%, rgba(14, 28, 19, 0.7) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
  transition: var(--transition-smooth);
}

.pan-india-supply-bar:hover {
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: 0 10px 36px rgba(43, 158, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.pan-india-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  background: rgba(43, 158, 55, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74, 222, 128, 0.32);
}

.pan-india-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green-light);
  box-shadow: 0 0 10px var(--brand-green-light);
  animation: pulse-glow 2s infinite ease-in-out;
}

.pan-india-items {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: flex-end;
}

.pan-india-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #e2e8f0;
  line-height: 1.35;
  white-space: nowrap;
}

.pan-india-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(43, 158, 55, 0.16);
  border: 1px solid rgba(74, 222, 128, 0.28);
  color: var(--brand-green-light);
  flex-shrink: 0;
}

.pan-india-item-text strong {
  color: #ffffff;
  font-weight: 600;
}

.pan-india-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.95rem;
  user-select: none;
}

/* Tablet & Mobile Breakpoints for Pan-India Supply Bar */
@media (max-width: 960px) {
  .pan-india-supply-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem;
    gap: 1rem;
  }

  .pan-india-badge {
    align-self: flex-start;
    font-size: 0.82rem;
  }

  .pan-india-items {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .pan-india-sep {
    display: none;
  }

  .pan-india-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    font-size: 0.83rem;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .pan-india-supply-bar {
    padding: 1rem 0.9rem;
  }

  .pan-india-badge {
    width: 100%;
    justify-content: center;
  }

  .pan-india-item {
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   Official Lifetime Warranty & ISO Certification Showcase
   ========================================================================== */
.hero-cert-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  width: 100%;
  margin-top: 1.25rem;
}

.hero-cert-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(10, 18, 14, 0.7);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.hero-cert-item:hover {
  transform: translateY(-2px);
}

.cert-item-gold {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.1);
}

.cert-item-gold:hover {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.2);
}

.cert-item-blue {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.cert-item-blue:hover {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.2);
}

.hero-cert-badge-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.hero-cert-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}

.cert-kicker {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.gold-kicker {
  color: #fbbf24;
}

.blue-kicker {
  color: #60a5fa;
}

.cert-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.cert-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .hero-cert-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* About Section Quality Assurance Showcase */
.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.cert-feature-card {
  background: rgba(10, 16, 12, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cert-feature-card:hover {
  transform: translateY(-3px);
}

.cert-feature-gold {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.08);
}

.cert-feature-gold:hover {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 158, 11, 0.15);
}

.cert-feature-blue {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(59, 130, 246, 0.08);
}

.cert-feature-blue:hover {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), 0 0 35px rgba(59, 130, 246, 0.15);
}

.cert-feature-badge-wrap {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem;
}

.cert-feature-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.6));
}

.cert-feature-content {
  flex: 1;
  min-width: 0;
}

.cert-pill-gold {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  margin-bottom: 0.65rem;
}

.cert-pill-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.35);
  margin-bottom: 0.65rem;
}

.cert-feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.cert-feature-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.cert-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cert-checklist li {
  font-size: 0.82rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.cert-checklist .check-icon {
  color: var(--brand-green-light);
  font-weight: bold;
}

@media (max-width: 860px) {
  .about-cert-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .cert-feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.25rem;
    gap: 1.25rem;
  }

  .cert-feature-badge-wrap {
    width: 88px;
    height: 88px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    padding: 0.65rem;
  }

  .cert-feature-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cert-feature-content .badge-pill {
    margin: 0 auto 0.75rem auto;
  }

  .cert-feature-title {
    font-size: 1.35rem;
    text-align: center;
    margin-bottom: 0.65rem;
    line-height: 1.25;
  }

  .cert-feature-text {
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: center;
    margin: 0 auto 1.25rem auto;
    max-width: 100%;
    color: #cbd5e1;
  }

  .cert-checklist {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
    gap: 0.6rem;
  }

  .cert-checklist li {
    font-size: 0.86rem;
    line-height: 1.45;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 1rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .cert-feature-card {
    padding: 1.5rem 1rem;
  }

  .cert-feature-badge-wrap {
    width: 78px;
    height: 78px;
  }

  .cert-feature-title {
    font-size: 1.22rem;
  }

  .cert-checklist {
    max-width: 100%;
  }
}

/* Drawer Certification Bar */
.drawer-cert-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  margin: 1.25rem 0;
}

.drawer-cert-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #f1f5f9;
}

.drawer-cert-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.drawer-cert-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
}