:root {
  --primary: #0B2D5C;
  --secondary: #2E8B57;
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --text: #5F6C7B;
  --muted: #8A9Aad;
  --heading: #0B2D5C;
  --accent: #2E8B57;
  --accent-dark: #1E5E3A;
  --border: #E5E7EB;
  --dark-bg: #071B37;
  --shadow: 0 10px 30px rgba(11, 45, 92, 0.08);
  --shadow-hover: 0 20px 50px rgba(11, 45, 92, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}


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

.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
}

.hero-content {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214, 162, 74, 0.16);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
}

.hero-copy {
  margin: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 12px 24px rgba(169, 111, 32, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: white;
  border: 1px solid var(--border);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.04);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.visual-glow {
  position: absolute;
  inset: 10% 12% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 162, 74, 0.3), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.image-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 20px 40px rgba(7, 17, 31, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slide-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.slide-dots button.active {
  background: white;
  transform: scale(1.2);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 32px rgba(7, 17, 31, 0.07);
}

.trust-item {
  padding: 14px 10px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e4d8a 100%);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 45, 92, 0.15);
}

.trust-item:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, #3ebd7c 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.25);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-visual {
    min-height: 420px;
  }

  .image-frame {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 14px 12px 28px;
  }

  .hero {
    padding: 18px;
    border-radius: 24px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
  }

  .image-frame {
    min-height: 320px;
    border-radius: 20px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }
}

/* Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--bg);
  box-shadow: 0 4px 20px rgba(11, 45, 92, 0.05);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1280px;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 68px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 85px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: invert(1);
  mix-blend-mode: screen;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--secondary);
}

.nav-menu a:hover::after {
  width: 100%;
}

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

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}

/* Footer Section */
.footer {
  background-color: var(--dark-bg);
  color: #FFFFFF;
  padding: 80px 20px 40px;
  margin-top: 120px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.6fr;
  gap: 28px;
  align-items: start;
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: #a5b4fc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.88rem;
}

.footer-col ul a:hover {
  color: var(--secondary);
}

.footer-logo {
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  color: #FFFFFF;
}

.footer-logo .logo-sub {
  color: var(--secondary);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px;
}

.social-link:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
}

.footer-icon-svg {
  width: 100%;
  height: 100%;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.contact-icon-svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}

.newsletter {
  margin-top: 24px;
}

.newsletter h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--secondary);
}

.newsletter-form button {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: var(--secondary);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #1e5e3a;
}

.footer-bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Splash Screen ── */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#splash-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient overlay so skip button is readable */
#splash-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.0) 50%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}

/* Progress bar at bottom */
#splash-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #a3e635;
  z-index: 2;
  transition: width linear;
}

/* Skip button */
#splash-skip {
  position: absolute;
  bottom: 32px;
  right: 20px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

#splash-skip:hover,
#splash-skip:active {
  background: rgba(163, 230, 53, 0.3);
  transform: scale(1.04);
}

/* Logo watermark on splash */
#splash-logo {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

#splash-logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

#splash-logo span em {
  color: #a3e635;
  font-style: normal;
}

/* Mobile-first: ensure portrait video fills well on mobile */
@media (max-width: 600px) {
  #splash-video {
    object-position: center center;
  }
  #splash-skip {
    bottom: 24px;
    right: 16px;
    font-size: 0.8rem;
    padding: 9px 18px;
  }
  #splash-logo span {
    font-size: 1.2rem;
  }
}

/* ── Floating Action Buttons ── */
.floating-buttons {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.13) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

/* Tooltip label */
.float-btn::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.float-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp */
.float-btn-whatsapp {
  background: #25D366;
}

.float-btn-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Pulse ring on WhatsApp */
@keyframes float-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.float-btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: float-pulse 2.2s infinite;
  z-index: -1;
}

/* Call */
.float-btn-call {
  background: #1e40af;
}

.float-btn-call svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
}

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .navbar {
    height: 70px;
  }
  .nav-menu {
    display: none;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer {
    padding: 60px 20px 30px;
    margin-top: 80px;
  }
}

/* About Section / Brand Introduction */
.about-section {
  padding: 120px 0;
  margin-top: 60px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 24px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(11, 45, 92, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.badge-lbl {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.section-eyebrow {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-copy {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 40px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 139, 87, 0.2);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(11, 45, 92, 0.08);
  color: var(--primary);
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.about-card:hover .card-icon {
  background: rgba(46, 139, 87, 0.1);
  color: var(--secondary);
}

.icon-svg {
  width: 100%;
  height: 100%;
}

.about-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.about-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

/* Scroll Animation Styles */
.fade-in-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--card-index) * 150ms);
}

.fade-in-card.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    height: 400px;
  }
  .about-badge {
    bottom: -20px;
    right: -20px;
    padding: 18px 24px;
  }
}

/* Why Choose Section */
.why-choose-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.why-choose-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.why-choose-header .section-description {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  margin-top: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 120px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 139, 87, 0.2);
}

.feature-card .card-icon {
  width: 56px;
  height: 56px;
  background: rgba(11, 45, 92, 0.08);
  color: var(--primary);
  border-radius: 14px;
  padding: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
  background: rgba(46, 139, 87, 0.1);
  color: var(--secondary);
}

.feature-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.35rem;
  color: var(--primary);
}

.feature-content p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}

/* Promise Banner styling */
.promise-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.9) 0%, rgba(7, 27, 55, 0.95) 100%), url('Living Room Transformation After.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  border-radius: 32px;
  padding: 80px 60px;
  color: #ffffff;
  box-shadow: var(--shadow-hover);
  margin-top: 60px;
  overflow: hidden;
  z-index: 1;
}

.promise-header {
  text-align: center;
  margin-bottom: 60px;
}

.promise-header h3 {
  font-size: 2.2rem;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.promise-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.promise-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.promise-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(46, 139, 87, 0.2);
}

.promise-icon {
  width: 48px;
  height: 48px;
  background: rgba(46, 139, 87, 0.2);
  color: var(--secondary);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.promise-content h4 {
  font-size: 1rem;
  color: #ffffff;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.promise-content p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

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

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .promise-banner {
    padding: 60px 30px;
  }
}

@media (max-width: 480px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Categories Section */
.products-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.products-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.products-header .section-description {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  margin-top: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 139, 87, 0.2);
}

.product-visual {
  position: relative;
  height: 220px;
  background: #f8fafc;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-category-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.product-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.category-name {
  color: var(--secondary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 4px;
}

.product-content h3 {
  font-size: 1.2rem;
  margin: 6px 0 10px 0;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 24px 0;
  flex-grow: 1; /* Pushes the button to the bottom */
}

.btn-product {
  margin-top: auto;
  align-self: center;
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* Comparison Table styling */
.comparison-container {
  background: var(--surface);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
  margin-top: 60px;
}

.comparison-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 0 30px 0;
  text-align: center;
  font-weight: 800;
}

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table th:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.comparison-table th:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

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

.comparison-table td strong {
  color: var(--primary);
  font-size: 1.05rem;
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .product-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .product-visual {
    height: 240px;
  }
}

/* Detailed Comparison Section */
.comparison-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.comparison-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.comparison-header .section-description {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  margin-top: 20px;
}

.comparison-table-container {
  background: var(--surface);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 80px;
}

.detailed-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.detailed-comparison-table th, .detailed-comparison-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.detailed-comparison-table th {
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

.detailed-comparison-table th:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  text-align: left;
  padding-left: 24px;
}

.detailed-comparison-table th:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.detailed-comparison-table td:first-child {
  text-align: left;
  padding-left: 24px;
  color: var(--primary);
  font-weight: 600;
}

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

.detailed-comparison-table td.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Recommendation Cards Grid */
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.recommend-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.recommend-card:nth-child(1) {
  background: linear-gradient(135deg, #ffffff 40%, #e8f1fa 100%);
}

.recommend-card:nth-child(2) {
  background: linear-gradient(135deg, #ffffff 40%, #f4f5f6 100%);
}

.recommend-card:nth-child(3) {
  background: linear-gradient(135deg, #ffffff 40%, #fcf0ff 100%);
}

.recommend-card:nth-child(4) {
  background: linear-gradient(135deg, #ffffff 40%, #ebfaf2 100%);
}

.recommend-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 139, 87, 0.2);
}

.recommend-badge {
  align-self: flex-start;
  background: rgba(46, 139, 87, 0.1);
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.recommend-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 0 16px 0;
  font-weight: 800;
}

.recommend-heading {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 6px 0;
  font-weight: 700;
}

.recommend-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* Bottom CTA Banner */
.comparison-cta {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.85) 0%, rgba(7, 27, 55, 0.9) 100%), url('pomelli_photoshoot_image_9_16_0710 (2).png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  border-radius: 24px;
  padding: 60px 48px;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  z-index: 1;
}

.comparison-cta h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.comparison-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .recommendation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .comparison-table-container {
    padding: 24px;
  }
  .detailed-comparison-table th, .detailed-comparison-table td {
    padding: 12px 10px;
    font-size: 0.88rem;
  }
  .recommendation-grid {
    grid-template-columns: 1fr;
  }
  .comparison-cta {
    padding: 40px 24px;
  }
  .comparison-cta h3 {
    font-size: 1.5rem;
  }
  .comparison-cta p {
    font-size: 0.95rem;
  }
}

/* Painting Process Section */
.process-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.process-header .section-description {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
  margin-top: 20px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.timeline-step {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 139, 87, 0.2);
}

.step-badge {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(11, 45, 92, 0.05);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.step-icon-container {
  width: 54px;
  height: 54px;
  background: rgba(46, 139, 87, 0.1);
  color: var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.timeline-step:hover .step-icon-container {
  transform: scale(1.08);
}

.timeline-step h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 0 12px 0;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.recommend-product-badge {
  align-self: flex-start;
  background: rgba(11, 45, 92, 0.06);
  color: var(--primary);
  font-size: 0.76rem;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(11, 45, 92, 0.1);
}

.recommend-product-badge strong {
  color: var(--secondary);
  font-weight: 700;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* System Benefits Card */
.system-benefits {
  background: var(--surface);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.benefits-title {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 0 40px 0;
  text-align: center;
  font-weight: 800;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  background: rgba(46, 139, 87, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.benefit-card h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 0 0 10px 0;
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

@media (max-width: 1100px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 0;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .system-benefits {
    padding: 30px 24px;
  }
}

/* Sustainability Section */
.sustainability-section {
  max-width: 1200px;
  margin: 80px auto;
  border-radius: 32px;
  background: linear-gradient(135deg, #0a1f14 0%, #153c26 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10, 31, 20, 0.25);
}

.sustainability-glow-1, .sustainability-glow-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(163, 230, 53, 0.08);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}
.sustainability-glow-1 { top: -150px; left: -150px; }
.sustainability-glow-2 { bottom: -150px; right: -150px; }

.sustainability-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 90px 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.green-eyebrow {
  color: #a3e635;
}

.text-white {
  color: #ffffff !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.8) !important;
}

.sustainability-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.sustain-stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.sustain-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(163, 230, 53, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #a3e635;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  line-height: 1.3;
  display: block;
}

.sustainability-capsules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sustain-capsule {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

.sustain-capsule:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(163, 230, 53, 0.3);
  transform: translateY(-2px);
}

.capsule-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(163, 230, 53, 0.15);
  color: #a3e635;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.capsule-icon-wrap .icon-svg {
  width: 100%;
  height: 100%;
}

.capsule-text h4 {
  font-size: 1rem;
  color: #ffffff;
  margin: 0 0 4px 0;
  font-weight: 700;
}

.capsule-text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

.sustainability-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sustain-image-bg-glow {
  position: absolute;
  width: 102%;
  height: 102%;
  background: linear-gradient(135deg, #1b4b2e 0%, #2e8b57 100%);
  border-radius: 24px;
  filter: blur(20px);
  z-index: 1;
  opacity: 0.45;
  animation: leafFloat 8s infinite ease-in-out;
}

.sustain-image-frame {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.1);
  animation: leafFloat 8s infinite ease-in-out;
}

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.sustain-premium-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.glass-sustain-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11, 45, 92, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 16px;
}

.overlay-badge {
  display: inline-block;
  background: rgba(163, 230, 53, 0.2);
  color: #a3e635;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 8px;
}

.glass-sustain-overlay p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.4;
}

/* Applications Section */
.applications-section {
  padding: 120px 0;
  background: var(--bg);
}

.applications-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.app-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 139, 87, 0.2);
}

.app-image-wrap {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.app-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.app-card:hover .app-image {
  transform: scale(1.08);
}

.app-info {
  padding: 20px;
  flex-grow: 1;
}

.app-info h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0 0 8px 0;
  font-weight: 800;
}

.app-info p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

/* Technology Section */
.tech-section {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.tech-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.tech-infographic {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.tech-timeline-line {
  position: absolute;
  top: 67px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  z-index: 1;
}

.tech-step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 13%;
}

.tech-step-dot {
  width: 54px;
  height: 54px;
  background: var(--surface);
  border: 4px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.tech-step:hover .tech-step-dot {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
  border-color: var(--secondary);
}

.tech-step h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin: 0 0 8px 0;
  font-weight: 800;
}

.tech-step p {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}

/* Dealer Network Section */
.dealer-section {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.dealer-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.dealer-grid-advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.dealer-adv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.dealer-adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 139, 87, 0.2);
}

.adv-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(46, 139, 87, 0.1);
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 12px;
}

.adv-icon-wrap .icon-svg {
  width: 100%;
  height: 100%;
}

.dealer-adv-card h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0 0 10px 0;
  font-weight: 800;
}

.dealer-adv-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.dealer-action-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.dealer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.dealer-visual-panel {
  position: relative;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
}

.dealer-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dealer-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.85) 0%, rgba(7, 27, 55, 0.95) 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  z-index: 2;
}

.dealer-stat-item {
  text-align: center;
  color: white;
}

.stat-count {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.dealer-form-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.dealer-form-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 0 10px 0;
  font-weight: 800;
}

.dealer-form-card p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0 0 30px 0;
}

.dealer-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--bg);
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--secondary);
}

.btn-dealer {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
}

/* Testimonials Carousel Section */
.testimonials-section {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.carousel-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.testimonial-carousel {
  position: relative;
  min-height: 380px;
}

.testimonial-slide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  z-index: 1;
  align-items: center;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
}

.testimonial-content {
  padding: 20px 0;
}

.stars-rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--primary);
  font-weight: 500;
  font-style: italic;
  margin: 0 0 30px 0;
}

.testimonial-author strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 800;
  font-style: normal;
}

.testimonial-author span {
  font-size: 0.88rem;
  color: var(--secondary);
  font-weight: 600;
}

.ba-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-hover);
}

.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Project Gallery Section */
.gallery-section {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.gallery-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.gallery-ba-slider {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.gallery-img-before, .gallery-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}

.gallery-img-before {
  opacity: 0;
}

.gallery-ba-slider:hover .gallery-img-before {
  opacity: 1;
}

.gallery-ba-slider:hover .gallery-img-after {
  opacity: 0.2;
}

.gallery-ba-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(11, 45, 92, 0.9), transparent);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 3;
  pointer-events: none;
}

/* Certifications Section */
.certifications-section {
  padding: 60px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.certifications-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
  gap: 40px;
}

.cert-item {
  text-align: center;
  max-width: 240px;
}

.cert-icon {
  font-size: 2rem;
  color: var(--secondary);
  display: block;
  margin-bottom: 16px;
}

.cert-item h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0 0 6px 0;
  font-weight: 800;
}

.cert-item p {
  font-size: 0.85rem;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 120px 0;
  background: var(--bg);
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-accordion-item.active {
  border-color: rgba(46, 139, 87, 0.3);
}

.faq-trigger {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--secondary);
}

.faq-icon-arrow {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-icon-arrow {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-accordion-item.active .faq-panel {
  max-height: 200px; /* high enough to contain content */
  padding: 0 30px 24px;
}

.faq-panel p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* Final CTA Section */
.final-cta-section {
  max-width: 1200px;
  margin: 80px auto;
  border-radius: 32px;
  padding: 100px 40px;
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.9) 0%, rgba(7, 27, 55, 0.95) 100%), url('Hero image.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: white;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(11, 45, 92, 0.2);
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-section h2 {
  font-size: 2.8rem;
  color: white;
  margin: 0 0 20px 0;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}

.final-cta-section p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px 0;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .sustainability-section {
    margin: 60px 24px;
  }
  .sustainability-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }
  .sustainability-visual-wrap {
    order: -1;
  }
  .applications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tech-infographic {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .tech-timeline-line {
    display: none;
  }
  .tech-step {
    width: 80%;
  }
  .dealer-grid-advantages {
    grid-template-columns: repeat(2, 1fr);
  }
  .dealer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: 30px;
    height: auto;
  }
  .testimonial-visual {
    order: -1;
  }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-cta-section {
    margin: 60px 24px;
    padding: 80px 24px;
  }
}

@media (max-width: 768px) {
  .sustainability-section {
    margin: 32px 14px;
    border-radius: 20px;
  }
  .sustainability-container {
    grid-template-columns: 1fr;
    padding: 32px 18px;
    gap: 32px;
  }
  .sustainability-visual-wrap {
    order: -1;
  }
  .sustain-premium-image {
    max-height: 240px;
    width: 100%;
    object-fit: cover;
  }
  .sustain-image-frame {
    border-radius: 16px;
  }
  .glass-sustain-overlay {
    bottom: 14px;
    left: 14px;
    right: 14px;
    padding: 14px;
  }
  .sustainability-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0;
  }
  .sustain-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    text-align: left;
  }
  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 0;
    min-width: 64px;
  }
  .stat-label {
    font-size: 0.82rem;
  }
  .sustainability-capsules {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sustain-capsule {
    padding: 16px;
    gap: 14px;
  }
  .capsule-icon-wrap {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .capsule-text h4 {
    font-size: 0.95rem;
  }
  .capsule-text p {
    font-size: 0.8rem;
  }
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dealer-grid-advantages {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dealer-visual-panel {
    height: 320px;
  }
  .dealer-form-card {
    padding: 30px 20px;
  }
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
  .final-cta-section {
    margin: 40px 16px;
    border-radius: 24px;
    padding: 60px 20px;
  }
  .final-cta-section h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .sustainability-section {
    margin: 24px 10px;
    border-radius: 16px;
  }
  .sustainability-container {
    padding: 24px 14px;
    gap: 24px;
  }
  .sustain-premium-image {
    max-height: 200px;
  }
  .sustainability-highlights {
    margin: 20px 0;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .applications-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page Specific Styles */
.about-hero {
  padding: 60px 0 80px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 30px;
  transition: transform 0.2s ease;
}

.back-link:hover {
  transform: translateX(-4px);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Our Story Section */
.story-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 75px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.story-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}

.story-visual-panel {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  height: 480px;
}

.story-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 35px;
}

.story-stat-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-stat-card .stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}

.story-stat-card .stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.story-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 139, 87, 0.3);
  box-shadow: var(--shadow-hover);
}

/* Vision & Mission Section */
.vision-mission-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vision-card, .mission-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--secondary);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--primary);
}

.vm-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(46, 139, 87, 0.1);
  color: var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.vision-card h2, .mission-card h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 0 16px 0;
  font-weight: 800;
}

.vision-card p, .mission-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* What Makes Us Different */
.different-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.dealer-section-about {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.different-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.diff-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 139, 87, 0.3);
}

.diff-icon {
  width: 48px;
  height: 48px;
  background: rgba(46, 139, 87, 0.1);
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 12px;
}

.diff-icon svg {
  width: 100%;
  height: 100%;
}

.diff-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0 0 10px 0;
  font-weight: 800;
}

.diff-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

/* Promise Section */
.promise-section {
  padding: 80px 0;
  background: var(--bg);
}

.promise-card-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.promise-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(46, 139, 87, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  top: 10%;
  left: 10%;
}

.promise-container {
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.95) 0%, rgba(7, 27, 55, 0.98) 100%), url('Hero image 3.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  padding: 80px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(11, 45, 92, 0.2);
  z-index: 2;
}

.promise-container h2 {
  color: #a3e635;
  font-size: 1.8rem;
  margin: 0 0 20px;
  font-weight: 800;
}

.promise-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 30px;
}

.promise-headline {
  font-size: 1.4rem;
  color: white;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.promise-actions {
  display: flex;
  justify-content: center;
}

/* About Responsive Media Queries */
@media (max-width: 1100px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-hero-visual {
    order: -1;
  }
  .story-section, .vision-mission-section, .different-section, .dealer-section-about, .catalog-section, .comparison-catalog-section {
    margin: 40px 24px;
    border-radius: 24px;
    padding: 50px 20px;
  }
  .story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-visual-panel {
    order: -1;
    height: 380px;
  }
  .story-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .different-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-container {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .story-section, .vision-mission-section, .different-section, .dealer-section-about, .catalog-section, .comparison-catalog-section {
    margin: 30px 16px;
    padding: 40px 16px;
  }
  .different-grid, .catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .catalog-visual {
    height: 220px;
  }
  .vision-card, .mission-card {
    padding: 30px 24px;
  }
  .promise-container {
    padding: 50px 24px;
    border-radius: 24px;
  }
  .promise-container p {
    font-size: 0.95rem;
  }
  .promise-headline {
    font-size: 1.15rem;
  }
  .products-hero {
    padding: 100px 20px 80px;
  }
}

/* Products Page Specific Styles */
.products-hero, .projects-hero {
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  padding: 140px 40px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 27, 55, 0.35) 0%, rgba(7, 27, 55, 0.5) 100%), url('Living Room Transformation After.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  box-shadow: var(--shadow);
  border: none;
}

.products-hero h1, .projects-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  font-family: 'Outfit', sans-serif;
}

.products-hero .hero-copy, .projects-hero .hero-copy {
  color: #ffffff;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.products-hero .eyebrow, .projects-hero .eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(163, 230, 53, 0.15);
  color: #a3e635;
  border: 1px solid rgba(163, 230, 53, 0.3);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.products-hero .back-link, .projects-hero .back-link {
  position: absolute;
  top: 110px;
  right: 40px;
  color: #ffffff;
  background: rgba(7, 27, 55, 0.6);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 0;
  z-index: 10;
}

.products-hero .back-link:hover, .projects-hero .back-link:hover {
  transform: translateY(-2px);
  background: rgba(7, 27, 55, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
}

.products-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.catalog-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--primary);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 0.95rem;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
  box-shadow: var(--shadow);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.catalog-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.catalog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(46, 139, 87, 0.3);
}

.catalog-visual {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.catalog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-item:hover .catalog-visual img {
  transform: scale(1.05);
}

.catalog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.catalog-content {
  padding: 30px;
}

.catalog-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 0 6px 0;
  font-weight: 800;
}

.catalog-tagline {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 16px;
}

.catalog-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}

.catalog-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.catalog-features li {
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.catalog-features li strong {
  color: var(--primary);
}

.comparison-catalog-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

/* Custom Overrides for Hero Banner backgrounds */
#projects-hero {
  background: linear-gradient(180deg, rgba(7, 27, 55, 0.45) 0%, rgba(7, 27, 55, 0.6) 100%), url('Luxury_emulsions_for_hotels_202607171346.jpeg');
  background-size: cover;
  background-position: center;
  padding: 240px 40px 220px;
}
#contact-hero {
  background: linear-gradient(180deg, rgba(7, 27, 55, 0.45) 0%, rgba(7, 27, 55, 0.6) 100%), url('Hero image 3.jpeg');
  background-size: cover;
  background-position: center;
}
#quote-hero {
  background: linear-gradient(180deg, rgba(7, 27, 55, 0.45) 0%, rgba(7, 27, 55, 0.6) 100%), url('Luxury_Villas_Bespoke_Visual_Finishes_202607171346.jpeg');
  background-size: cover;
  background-position: center;
}

/* Projects Gallery Page Grid */
.projects-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--surface);
  border: 1px solid var(--border);
}

.project-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-ba-slider {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.project-ba-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.project-img-before {
  opacity: 0;
  z-index: 2;
}

.project-img-after {
  opacity: 1;
  z-index: 1;
}

/* Hover effect to show the "before" image */
.project-ba-slider:hover .project-img-before {
  opacity: 1;
}

.project-ba-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(7, 27, 55, 0.95) 0%, rgba(7, 27, 55, 0.4) 100%);
  padding: 20px;
  z-index: 3;
  color: white;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 4px;
}

.project-tag {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
}

.project-hover-hint {
  font-size: 0.75rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  color: #a3e635;
}

/* Contact Page Grid & Layout */
.contact-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 40px auto;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .contact-split-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.info-block p, .info-block a {
  font-size: 1.05rem;
  color: var(--copy-light);
  line-height: 1.6;
  text-decoration: none;
}

.info-block a:hover {
  color: var(--accent);
}

.map-placeholder-container {
  height: 250px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-visual {
  text-align: center;
  color: white;
}

.map-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

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

.contact-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.contact-main-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

/* Quote Calculator Styles */
.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
}

@media (max-width: 900px) {
  .calculator-container {
    grid-template-columns: 1fr;
  }
}

.calculator-settings, .calculator-results {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.slider-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.slider-group input[type="range"] {
  flex: 1;
  accent-color: var(--accent);
}

.slider-group input[type="number"] {
  width: 120px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--primary);
  font-weight: 600;
  text-align: center;
}

.estimator-result-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
}

.result-details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.result-row strong {
  font-family: 'Outfit', sans-serif;
  color: #a3e635;
  font-size: 1.15rem;
}

.result-row.total-row {
  border-bottom: none;
  padding-top: 10px;
  font-size: 1.25rem;
}

.result-row.total-row strong {
  font-size: 1.6rem;
  color: #a3e635;
}

.estimate-disclaimer {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 15px;
  text-align: center;
}

color: #a3e635;
}

/* Contact Page Grid & Layout */
.contact-split-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 24px;
}

@media (max-width: 900px) {
  .contact-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary);
  text-align: left;
}

.info-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-left-color: var(--secondary);
}

.info-block h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-block p, .info-block a {
  font-size: 0.95rem;
  color: var(--copy-light);
  line-height: 1.6;
  text-decoration: none;
}

.info-block a {
  color: var(--primary);
  font-weight: 600;
  transition: color 0.2s ease;
}

.info-block a:hover {
  color: var(--secondary);
}

.map-placeholder-container {
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b2d5c 0%, #1e3a8a 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-placeholder-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.map-visual {
  text-align: center;
  color: white;
  z-index: 2;
}

.map-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  display: inline-block;
  animation: mapFloat 3s ease-in-out infinite;
}

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

.map-visual h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.map-visual p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.contact-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 45px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.contact-form-panel h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: left;
}

.contact-form-panel p {
  color: var(--copy-light);
  font-size: 0.95rem;
  margin-bottom: 30px;
  text-align: left;
}

.contact-main-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-main-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.contact-main-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-main-form input,
.contact-main-form select,
.contact-main-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--background);
  color: var(--copy-dark);
  transition: all 0.3s ease;
}

.dealer-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dealer-form .form-group {
  margin: 0;
}

.dealer-form .form-group input {
  width: 100%;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--background);
  color: var(--copy-dark);
  transition: all 0.3s ease;
}

.dealer-form .form-group input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.12);
  background: white;
}

.btn-dealer {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.contact-main-form input:focus,
.contact-main-form select:focus,
.contact-main-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.12);
  background: white;
}

.contact-main-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230b2d5c' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.btn-submit-contact {
  padding: 14px 28px;
  font-size: 1rem;
  align-self: flex-start;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

/* Quote Calculator Styles */
.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

@media (max-width: 900px) {
  .calculator-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.calculator-settings, .calculator-results {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 45px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.calculator-settings .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.calculator-settings label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.calculator-settings select {
  width: 100%;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--background);
  color: var(--copy-dark);
  transition: all 0.3s ease;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230b2d5c' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}

.calculator-settings select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.12);
  background: white;
}

.slider-group {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 5px;
}

.slider-group input[type="range"] {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: var(--border);
  outline: none;
  cursor: pointer;
  accent-color: var(--secondary);
}

.slider-group input[type="number"] {
  width: 110px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.slider-group input[type="number"]:focus {
  border-color: var(--secondary);
  background: white;
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.12);
}

.estimator-result-card {
  background: linear-gradient(135deg, #0b2d5c 0%, #1e3a8a 100%);
  border-radius: 20px;
  padding: 35px;
  border: none;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.estimator-result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.estimator-result-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  color: #a3e635;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-align: left;
}

.result-details {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
  opacity: 0.95;
}

.result-row span {
  font-weight: 500;
  text-align: left;
}

.result-row strong {
  font-family: 'Outfit', sans-serif;
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
}

.result-row.total-row {
  border-bottom: none;
  padding-top: 15px;
  margin-top: 5px;
  opacity: 1;
}

.result-row.total-row span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #a3e635;
}

.result-row.total-row strong {
  font-size: 1.8rem;
  color: #a3e635;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.estimate-disclaimer {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.calculator-lead-form {
  border-top: 1px solid var(--border);
  padding-top: 35px;
  margin-top: 10px;
  text-align: left;
}

.calculator-lead-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.calculator-lead-form p {
  font-size: 0.9rem;
  color: var(--copy-light);
  margin-bottom: 25px;
}

.quote-capture-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-capture-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.quote-capture-form input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--background);
  color: var(--copy-dark);
  transition: all 0.3s ease;
}

.quote-capture-form input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.12);
  background: white;
}

.btn-submit-quote {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.calculator-settings .checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  cursor: pointer;
  width: 100%;
}

.calculator-settings .checkbox-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
  cursor: pointer;
  margin: 0;
}

.calculator-settings .checkbox-group label {
  font-size: 0.9rem;
  color: var(--copy-light);
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

/* Video Review Section styling */
.video-review-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.video-review-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 60px 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

.video-player-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  background: #000;
  line-height: 0;
}

.review-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Video background hero styles */
.video-hero {
  position: relative;
  overflow: hidden;
  background: none !important;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.video-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 27, 55, 0.45) 0%, rgba(7, 27, 55, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.video-hero .products-hero-content,
.video-hero .back-link {
  position: relative;
  z-index: 2;
}

/* Contact Form Trust & Social Connect */
.form-trust-footer {
  margin-top: 25px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: left;
}

.trust-message {
  font-size: 0.85rem;
  color: var(--copy-light);
  margin-bottom: 15px !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-social-connect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.form-social-connect span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.form-social-connect .social-icons {
  display: flex;
  gap: 12px;
}

.form-social-connect .social-link {
  color: var(--primary);
  opacity: 0.7;
  transition: all 0.2s ease;
  background: none;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
}

.form-social-connect .social-link:hover {
  background: none !important;
  color: var(--secondary) !important;
  opacity: 1;
  transform: translateY(-2px);
}

.form-social-connect .footer-icon-svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════
   QUICK ENQUIRY POPUP & FAB STYLES
═══════════════════════════════════════════ */

/* Overlay container */
.enquiry-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 27, 55, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.enquiry-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Popup card */
.enquiry-popup-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.25);
  border: 1px solid rgba(229, 231, 235, 0.8);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.enquiry-popup-overlay.active .enquiry-popup-card {
  transform: scale(1) translateY(0);
}

/* Header */
.enquiry-popup-header {
  padding: 24px 28px 16px;
  background: linear-gradient(135deg, #0b2d5c 0%, #071b37 100%);
  color: #ffffff;
  position: relative;
}

.enquiry-popup-header h3 {
  color: #ffffff;
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.enquiry-popup-header p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Close button */
.enquiry-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.enquiry-popup-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* Content & Form */
.enquiry-popup-body {
  padding: 28px;
}

.enquiry-form-group {
  margin-bottom: 18px;
}

.enquiry-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.enquiry-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--primary);
  background-color: var(--surface);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.enquiry-form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
  background-color: #ffffff;
}

textarea.enquiry-form-control {
  resize: none;
  min-height: 90px;
}

/* Submit button */
.enquiry-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.2);
}

.enquiry-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 139, 87, 0.35);
}

.enquiry-submit-btn:active {
  transform: translateY(0);
}

/* Success View */
.enquiry-success-view {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.enquiry-success-view.active {
  display: block;
}

.enquiry-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(46, 139, 87, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.enquiry-success-view h4 {
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 0 10px;
}

.enquiry-success-view p {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Floating button style */
.float-btn-enquiry {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-dark) 100%);
  color: #ffffff;
}

.float-btn-enquiry svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}



