/* ===================================
   Skyplasto Pvt. Ltd. - Static CSS
   Colors: Red, #1D5B86 (Blue), White
=================================== */

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

/* CSS Variables */
:root {
  /* Core Brand Colors */
  --primary: #1D5B86;
  --primary-dark: #15455f;
  --primary-light: #3a7ba8;
  --secondary: #dc2626;
  --secondary-light: #ef4444;
  --secondary-dark: #b91c1c;
  --white: #ffffff;
  --background: #ffffff;
  --foreground: #1f2937;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 10px 30px -10px rgba(29, 91, 134, 0.4);
  --shadow-secondary: 0 10px 30px -10px rgba(220, 38, 38, 0.4);
  
  /* Spacing */
  --container-max: 1152px;
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===================================
   HEADER
=================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}

.top-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 0;
}

.top-bar-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .top-bar-content {
    justify-content: space-between;
  }
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-links a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.3s;
}

.top-bar-links a:hover {
  color: var(--secondary-light);
}

.top-bar-location {
  display: none;
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .top-bar-location {
    display: block;
  }
}

/* Main Navigation */
.main-nav {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-content {
  display: flex;
  min-height: 4rem;
  height: auto;
  padding: 0.5rem 0;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav-content {
    height: 5rem;
    min-height: 5rem;
    padding: 0;
  }
}

/* Logo - responsive image for mobile and desktop */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* Mobile: smaller max height so it fits in the nav bar */
  max-height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .logo-img {
    /* Tablet: slightly larger */
    max-height: 48px;
  }
}

@media (min-width: 1024px) {
  .logo-img {
    /* Laptop/desktop: full size */
    max-height: 52px;
  }
}

/* Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  color: rgba(31, 41, 55, 0.8);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--secondary);
}

/* Header CTA */
.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  transition: opacity 0.2s ease;
}

.mobile-menu-icon-close {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-btn.is-open .mobile-menu-icon-open {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-btn.is-open .mobile-menu-icon-close {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  body.mobile-menu-open {
    overflow: auto;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0 1rem;
  max-height: min(75dvh, calc(100dvh - 7rem));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s;
}

.mobile-menu a:hover {
  background-color: var(--muted);
}

.mobile-menu a.active {
  background-color: var(--primary);
  color: var(--white);
}

/* Mobile menu: Products dropdown (same options as desktop) */
.mobile-nav-dropdown {
  border-radius: 0.5rem;
  overflow: hidden;
}

.mobile-nav-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mobile-nav-dropdown-trigger:hover {
  background-color: var(--muted);
}

.mobile-nav-dropdown-trigger.active {
  background-color: var(--primary);
  color: var(--white);
}

.mobile-nav-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.mobile-nav-dropdown.open .mobile-nav-chevron {
  transform: rotate(180deg);
}

.mobile-nav-dropdown-content {
  display: none;
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-content {
  display: block;
}

.mobile-nav-all-products {
  display: block;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--primary);
  transition: background-color 0.3s;
}

.mobile-nav-all-products:hover {
  background-color: rgba(29, 91, 134, 0.08);
}

.mobile-nav-all-products.active {
  background-color: var(--primary);
  color: var(--white);
}

.mobile-nav-dropdown-link {
  display: block;
  padding: 0.75rem 1rem 0.75rem 1.125rem;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background-color 0.3s;
}

.mobile-nav-dropdown-link:hover {
  background-color: var(--muted);
}

.mobile-nav-dropdown-link.active {
  background-color: var(--primary);
  color: var(--white);
}

.mobile-nav-submenu {
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.mobile-nav-submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.625rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: left;
  color: var(--foreground);
  background-color: var(--muted);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mobile-nav-submenu-trigger:hover {
  background-color: var(--border);
  color: var(--primary);
}

.mobile-nav-submenu-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.mobile-nav-submenu.open .mobile-nav-submenu-trigger::after {
  transform: rotate(180deg);
}

.mobile-nav-submenu-content {
  display: none;
  padding: 0.25rem 0 0.25rem 1rem;
}

.mobile-nav-submenu.open .mobile-nav-submenu-content {
  display: block;
}

.mobile-nav-submenu-content a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 0.375rem;
  transition: background-color 0.3s, color 0.3s;
}

.mobile-nav-submenu-content a:hover {
  background-color: var(--muted);
  color: var(--primary);
}

.mobile-nav-submenu-content a.active {
  background-color: rgba(29, 91, 134, 0.15);
  color: var(--primary);
  font-weight: 600;
}

/* ===================================
   BUTTONS
=================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-hero {
  background-color: var(--secondary);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-secondary);
}

.btn-hero:hover {
  background-color: var(--secondary-dark);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

/* ===================================
   SECTIONS
=================================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
}

.section-muted {
  background-color: var(--muted);
}

.section-primary {
  background-color: var(--primary);
  color: var(--white);
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-title .highlight {
  color: var(--primary);
}

.section-title .highlight-secondary {
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   HERO SECTION
=================================== */
.hero {
  position: relative;
  /* Height follows banner image (same crop/scale on mobile and desktop) */
  min-height: 0;
  display: block;
  overflow: hidden;
}

.hero-bg {
  position: relative;
  width: 100%;
}

.hero-slides {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
  pointer-events: none;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

/* Full banner visible at every width — no cover crop (keeps embedded text intact) */
.hero-bg img,
.hero-slide img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  vertical-align: top;
}

/* Banners include their own artwork/text — no color wash */
.hero-slider .hero-overlay {
  display: none;
}

.hero-slider-ui {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-slider-arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  outline: none;
}

.hero-slider-arrow:focus-visible {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px rgba(29, 91, 134, 0.9);
}

.hero-slider-prev {
  left: 0.75rem;
}

.hero-slider-next {
  right: 0.75rem;
}

@media (min-width: 768px) {
  .hero-slider-arrow {
    width: 3rem;
    height: 3rem;
  }

  .hero-slider-prev {
    left: 1rem;
  }

  .hero-slider-next {
    right: 1rem;
  }
}

.hero-slider-dots {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-slider-dots {
    bottom: 1.25rem;
  }
}

.hero-slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.hero-slider-dot:hover,
.hero-slider-dot:focus-visible {
  background: rgba(255, 255, 255, 0.75);
  outline: none;
}

.hero-slider-dot.is-active {
  background: var(--white);
  width: 1.25rem;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding-block: 1.75rem 3.75rem;
  padding-inline: 1.25rem;
  max-width: 68rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-content {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-content {
    padding-block: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-inline: 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-badge {
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
  }
}

.hero h1 {
  font-size: clamp(1.5rem, 4.2vw + 0.85rem, 2.25rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero h1 .highlight {
  color: var(--secondary-light);
}

.hero-description {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: none;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .hero-buttons {
    gap: 1rem;
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 3rem;
  display: block;
}

@media (min-width: 768px) {
  .hero-wave svg {
    height: 6rem;
  }
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 5rem 0;
  background-color: var(--primary);
  color: var(--white);
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 7rem 0;
  }
}

.page-hero .diagonal-stripes {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.page-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3.75rem;
  }
}

.page-hero h1 .highlight {
  color: var(--secondary-light);
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .page-hero p {
    font-size: 1.25rem;
  }
}

/* ===================================
   STATS
=================================== */
.stats {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .stats {
    padding: 4rem 0;
  }
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 1rem;
  }
}

/* ===================================
   CARDS
=================================== */
.card {
  background-color: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-hover:hover {
  transform: translateY(-4px);
}

.card-body {
  padding: 1.5rem;
}

.card-img {
  aspect-ratio: 1;
  overflow: hidden;
}

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

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

/* Feature Card */
.feature-card {
  padding: 1.5rem;
  text-align: center;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(29, 91, 134, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Product Card */
.product-card .card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-card .card-body .price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.product-card .card-body .description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.product-features {
  margin-bottom: 1.5rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.product-features li svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===================================
   GRIDS
=================================== */
.grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* ===================================
   CTA SECTION
=================================== */
.cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 7rem 0;
  }
}

.cta-section .bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary), rgba(29, 91, 134, 0.9));
}

.cta-section .diagonal-stripes {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-content h2 {
    font-size: 2.5rem;
  }
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .cta-content p {
    font-size: 1rem;
  }
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===================================
   ABOUT PAGE
=================================== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--secondary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  display: none;
}

@media (min-width: 768px) {
  .about-badge {
    display: block;
  }
}

.about-badge .number {
  font-size: 1.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.about-badge .label {
  font-size: 0.875rem;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

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

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.about-features li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

/* Values Cards */
.value-card {
  padding: 2rem;
  text-align: center;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--white);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--muted-foreground);
}

/* Timeline */
.timeline {
  position: relative;
}

.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
  }
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .timeline-item {
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.timeline-content {
  flex: 1;
}

@media (min-width: 768px) {
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
  }
}

.timeline-card {
  padding: 1.5rem;
}

.timeline-year {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.timeline-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.timeline-dot {
  display: none;
  width: 1rem;
  height: 1rem;
  background-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}

@media (min-width: 768px) {
  .timeline-dot {
    display: block;
  }
}

.timeline-spacer {
  flex: 1;
  display: none;
}

@media (min-width: 768px) {
  .timeline-spacer {
    display: block;
  }
}

/* Capabilities */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .capabilities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 1rem;
  border-radius: 0.5rem;
}

.capability-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary-light);
  flex-shrink: 0;
}

.capability-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===================================
   PRODUCTS PAGE
=================================== */
.product-nav {
  padding: 2rem 0;
  background-color: var(--muted);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 120px;
  z-index: 40;
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .product-nav {
    top: 136px;
  }
}

.product-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.product-nav-links a {
  padding: 0.5rem 1rem;
  background-color: var(--white);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.product-nav-links a:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===================================
   CONTACT PAGE
=================================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .contact-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.contact-card {
  padding: 1.5rem;
  text-align: center;
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(29, 91, 134, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-card h3 {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-card a {
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

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

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.contact-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .contact-form-card h2 {
    font-size: 1.875rem;
  }
}

.contact-form-card > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 91, 134, 0.1);
}

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

/* Map Container */
.map-container {
  border-radius: 0.5rem;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Quick Contact Box */
.quick-contact {
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.quick-contact h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.quick-contact > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.quick-contact-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  transition: background-color 0.3s;
  font-weight: 500;
}

.quick-contact-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.quick-contact-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Trust Indicators */
.trust-card {
  padding: 1.5rem;
}

.trust-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.trust-list li svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background-color: var(--primary);
  color: var(--white);
}

.footer-main {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-main {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

/* Footer Logo - responsive image */
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo-link {
  display: inline-block;
  flex-shrink: 0;
}

.footer-logo-img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 44px;
  width: auto;
}

@media (min-width: 768px) {
  .footer-logo-img {
    max-height: 48px;
  }
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.footer-gst {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Links */
.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary-light);
}

.footer-links a svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.3s;
}

.footer-links a:hover svg {
  transform: translateX(4px);
}

/* Footer Contact */
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-contact a,
.footer-contact .location {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--secondary-light);
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===================================
   UTILITIES
=================================== */
.diagonal-stripes {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(220, 38, 38, 0.1) 10px,
    rgba(220, 38, 38, 0.1) 20px
  );
}

.industrial-pattern {
  background-image: 
    linear-gradient(30deg, rgba(29, 91, 134, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(29, 91, 134, 0.03) 87.5%, rgba(29, 91, 134, 0.03)),
    linear-gradient(150deg, rgba(29, 91, 134, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(29, 91, 134, 0.03) 87.5%, rgba(29, 91, 134, 0.03)),
    linear-gradient(30deg, rgba(29, 91, 134, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(29, 91, 134, 0.03) 87.5%, rgba(29, 91, 134, 0.03)),
    linear-gradient(150deg, rgba(29, 91, 134, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(29, 91, 134, 0.03) 87.5%, rgba(29, 91, 134, 0.03));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.relative {
  position: relative;
}

/* Animation Classes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

/* ===================================
   DROPDOWN MENU
=================================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  padding: 0.5rem 0;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  position: relative;
}

.nav-dropdown-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 0.2s;
}

.nav-dropdown-item > a:hover {
  background-color: var(--muted);
  color: var(--primary);
}

.nav-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 220px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 101;
  padding: 0.5rem 0;
}

.nav-dropdown-item.has-submenu:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-submenu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 0.2s;
}

.nav-submenu a:hover {
  background-color: var(--muted);
  color: var(--primary);
}

.nav-submenu a.active {
  background-color: rgba(29, 91, 134, 0.12);
  color: var(--primary);
  font-weight: 600;
}

/* ===================================
   ABOUT COMPANY SECTION (Home Page)
=================================== */
.about-company-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-company-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-company-text {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-company-text:first-of-type {
  font-size: 1rem;
}

.about-mission-vision {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .about-mission-vision {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.mission-vision-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(29, 91, 134, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-vision-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.mission-vision-item.vision .mission-vision-icon {
  background-color: rgba(220, 38, 38, 0.1);
}

.mission-vision-item.vision .mission-vision-icon svg {
  color: var(--secondary);
}

.mission-vision-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.mission-vision-item p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

.about-company-image {
  position: relative;
}

.about-company-image .image-wrapper {
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
}

.about-company-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.years-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.years-badge svg {
  width: 2rem;
  height: 2rem;
}

.years-text {
  display: flex;
  flex-direction: column;
}

.years-number {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.years-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* ===================================
   CLIENTS SECTION
=================================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.client-card {
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.client-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.client-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(29, 91, 134, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.client-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.client-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
}

/* ===================================
   BREADCRUMB
=================================== */
.breadcrumb-section {
  background-color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-separator {
  color: var(--muted-foreground);
}

.breadcrumb-current {
  color: var(--foreground);
  font-weight: 500;
}

/* ===================================
   PRODUCT DETAILS PAGE
=================================== */
.product-detail-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Sticky image only when product grid is side-by-side (desktop); on mobile/tablet it scrolls with the page */
.product-detail-image {
  position: relative;
}

@media (min-width: 1024px) {
  .product-detail-image {
    position: sticky;
    top: 8rem;
    align-self: start;
  }
}

.product-image-wrapper {
  aspect-ratio: 1;
  background-color: var(--muted);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-category-badge {
  display: inline-block;
  background-color: rgba(29, 91, 134, 0.1);
  color: var(--primary);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.product-detail-info h1 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .product-detail-info h1 {
    font-size: 2.25rem;
  }
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .product-price {
    font-size: 1.875rem;
  }
}

.product-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.product-features-section {
  margin-bottom: 2rem;
}

.product-features-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.product-features-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .product-features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-features-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.product-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Specifications Table */
.specifications-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

.specifications-table-card {
  overflow: hidden;
}

.specifications-table {
  width: 100%;
  border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
  background-color: var(--muted);
}

.specifications-table tr:nth-child(odd) {
  background-color: var(--white);
}

.specifications-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.spec-label {
  font-weight: 600;
  color: var(--foreground);
}

.spec-value {
  color: var(--muted-foreground);
}

/* Applications Grid */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .applications-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.application-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.application-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.application-icon {
  margin-bottom: 1rem;
}

.application-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--secondary);
  margin: 0 auto;
}

.application-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
}

/* ====================== GET QUOTE POPUP ====================== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;           /* Important: Limit height */
    overflow-y: auto;           /* Enable Scrollbar */
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    scrollbar-width: thin;
    scrollbar-color: #1D5B86 #f1f5f9;
}

/* Webkit Scrollbar (Chrome, Edge, Safari) */
.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: #1D5B86;
    border-radius: 20px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: #0f3a5c;
}

.popup-close {
    position: sticky;
    top: 10px;
    right: 10px;
    float: right;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    z-index: 10;
}

.popup-form .form-group {
    margin-bottom: 1.2rem;
}

.popup-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1D5B86;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.popup-form input:focus,
.popup-form textarea:focus {
    border-color: #1D5B86;
    outline: none;
}

/* Responsive */
@media (max-width: 576px) {
    .popup-content {
        padding: 1.8rem 1.4rem;
        max-height: 95vh;
    }
}

/* ====================== WHATSAPP CSS ====================== */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 38px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  will-change: transform;
  animation: pulse-whatsapp 2.2s infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 213, 102, 0.4);
  background: #20b858;
}

.whatsapp-float svg {
  width: 38px;
  height: 38px;
}

/* Pulse animation */
@keyframes pulse-whatsapp {
  0%   { box-shadow: 0 0 0 0 rgba(37, 213, 102, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37, 213, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 213, 102, 0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    left: 20px;
    font-size: 32px;
  }

  .whatsapp-float svg {
    width: 34px;
    height: 34px;
  }


/* ====================== CONTACT FORM INPUT ====================== */

.contact-one__input-title {
    margin-bottom: 8px;
    font-size: 0.90rem;
    font-weight: 600;
    color: var(--heading-color, #1D5B86);
}

.contact-one__input-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
	margin-bottom: 16px;
}

}

.contact-one__input-box:focus-within {
    border-color: #1D5B86;
    box-shadow: 0 0 0 4px rgba(29, 91, 134, 0.15);
}

.contact-one__input-icon {
    padding: 0 15px;
    color: #64748b;
    display: flex;
    align-items: center;
    background: #f8fafc;
    height: 100%;
}

.contact-one__input-box input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 6px 6px;
    font-size: 1rem;
    width: 100%;
    background: transparent;
}

.contact-one__input-box input[type="text"]::placeholder {
    color: #94a3b8;
}

/* Error message for CAPTCHA */
#captchaError {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 6px;
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-one__input-box input[type="text"] {
        padding: 12px 15px;
