﻿/* ================================================================
   VAIBHAV ENTERPRISE — style.css
   ================================================================ */

/* ================================================================
   01. CSS VARIABLES
   ================================================================ */
:root {
  --green: #1b4332;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --gold: #c9831a;
  --gold-light: #e9a83a;
  --cream: #f8f4ee;
  --cream-dark: #ede8df;
  --white: #ffffff;
  --dark: #111613;
  --text: #2c3a2e;
  --muted: #6b7c6e;
  --shadow: 0 4px 32px rgba(27, 67, 50, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --ease: 0.3s ease;
}

/* ================================================================
   02. RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  font-family: "Inter", sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 3px;
}

/* ================================================================
   03. NAVBAR
   ================================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  z-index: 1000;
  transition: box-shadow var(--ease);
}
nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}
.nav-logo-text .tagline {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--green);
  background: rgba(27, 67, 50, 0.07);
}
.nav-links a.active {
  color: var(--green);
  font-weight: 700;
}
.nav-links .nav-cta {
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  padding: 10px 22px;
}
.nav-links .nav-cta:hover {
  background: var(--green-mid);
  color: #fff;
}

.nav-wa {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-wa:hover {
  transform: scale(1.1);
}
.nav-wa svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  padding: 16px 5% 24px;
  box-shadow: var(--shadow);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--cream-dark);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--text);
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  transition: 0.2s;
}
.mobile-menu a:hover {
  background: var(--cream);
  color: var(--green);
}
.mobile-menu a.active {
  color: var(--green);
  font-weight: 700;
}
.mobile-menu .mob-cta {
  background: var(--green);
  color: white;
  border-radius: 50px;
  text-align: center;
  margin-top: 8px;
  font-weight: 700;
}
.mobile-menu .mob-cta:hover {
  background: var(--green-mid);
  color: white;
}

/* ================================================================
   04. HERO SECTION
   ================================================================ */
/* ── Splash Screen ── */
#splashScreen {
  position: fixed;
  inset: 0;
  background: var(--green-mid);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashFade 0.6s ease 1.8s forwards;
}
#splashScreen.hidden { display: none; }
.splash-inner {
  text-align: center;
  animation: splashRise 0.7s ease forwards;
}
.splash-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 20px;
  animation: splashPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(201,131,26,0.4));
}
.splash-name {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
}
.splash-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 28px;
}
.splash-bar {
  width: 160px;
  height: 2px;
  background: rgba(193, 19, 19, 0.12);
  border-radius: 99px;
  margin: 0 auto;
  overflow: hidden;
}
.splash-progress {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 99px;
  animation: splashLoad 2.6s ease forwards;
}
@keyframes splashFade  { to { opacity: 0; pointer-events: none; } }
@keyframes splashRise  { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
@keyframes splashPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.07);} }
@keyframes splashLoad  { to { width: 100%; } }

/* ── Hero — Centered Premium Layout ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 5% 80px;
  background:
    linear-gradient(160deg, rgba(17,22,19,0.72) 0%, rgba(27,67,50,0.55) 60%, rgba(17,22,19,0.78) 100%),
    url("images/Company.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,131,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating accent particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
  animation: particleDrift linear infinite;
}
.hero-particles span:nth-child(1){ width:6px;height:6px; top:20%;left:15%; animation-duration:12s; }
.hero-particles span:nth-child(2){ width:4px;height:4px; top:60%;left:8%;  animation-duration:9s; animation-delay:2s; }
.hero-particles span:nth-child(3){ width:8px;height:8px; top:30%;left:85%; animation-duration:14s; animation-delay:1s; }
.hero-particles span:nth-child(4){ width:3px;height:3px; top:75%;left:78%; animation-duration:10s; animation-delay:3s; }
.hero-particles span:nth-child(5){ width:5px;height:5px; top:50%;left:92%; animation-duration:11s; animation-delay:0.5s; }
.hero-particles span:nth-child(6){ width:4px;height:4px; top:15%;left:55%; animation-duration:13s; animation-delay:4s; }
@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0); opacity:0.15; }
  50%  { opacity:0.3; }
  100% { transform: translateY(-60px) translateX(20px); opacity:0; }
}

.hero-center {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 131, 26, 0.18);
  border: 1px solid rgba(201,131,26,0.35);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: blink 2s infinite;
}
h1.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
h1.hero-title .gold {
  color: var(--gold-light);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 22px auto 40px;
  max-width: 560px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Trust badges row */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  padding: 20px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  row-gap: 14px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.trust-num {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.trust-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Legacy selectors — keep for any remaining references */


/* ================================================================
   05. SECTIONS & BUTTONS
   ================================================================ */
section {
  padding: 80px 5%;
}
.section-eye {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--ease);
  border: none;
  cursor: pointer;
}
.btn-green {
  background: var(--green);
  color: white;
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.3);
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27, 67, 50, 0.4);
}
.btn-outline {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.btn-gold {
  background: #25d366;
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.3);
}
.btn-gold:hover {
  background: white;
  transform: translateY(-2px);
}
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--green);
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.2s;
}
.view-all:hover {
  background: var(--green);
  color: white;
}

/* ================================================================
   06. FEATURES STRIP
   ================================================================ */
.features-strip {
  background: var(--green);
  padding: 28px 5%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 13px;
  font-weight: 500;
}
.feat-item svg {
  width: 28px;
  height: 28px;
  opacity: 0.85;
  flex-shrink: 0;
}

/* ================================================================
   07. PAGE HERO SECTION (Add this to style.css)
   ================================================================ */
.page-hero {
  padding: 100px 5% 50px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}

.page-hero-eye {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: white;
  text-decoration: underline;
}

/* ================================================================
   08. PRODUCT CARDS
   ================================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.35s;
  border: 2px solid transparent;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(27, 67, 50, 0.15);
  border-color: var(--green-light);
}

.pc-img {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* IMAGE FIX: mix-blend-mode matches the background and displays the full image without cropping */
.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain */
  mix-blend-mode: multiply;
  transition: transform 0.4s;
}
.product-card:hover .product-image {
  transform: scale(1.06);
}

.pc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 1;
}
.pc-badge.gold {
  background: var(--gold);
}
.pc-info {
  padding: 16px 20px 20px;
  background: var(--green);
}
.pc-info h3 {
  color: white;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 3px;
}
.pc-info .pc-gsm {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 10px;
}

.color-dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cdot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
.cdot:hover {
  transform: scale(1.35);
  border-color: white;
}
.cdot[title]::after {
  content: attr(title);
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.cdot:hover::after {
  opacity: 1;
}

.color-dots {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.color-dot:hover {
  transform: scale(1.15);
  border-color: #333;
}

.pc-actions {
  display: flex;
  gap: 8px;
}
.btn-enquire {
  flex: 1;
  background: var(--gold);
  color: white;
  border: none;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}
.btn-enquire:hover {
  background: var(--gold-light);
}
.btn-wa-sm {
  width: 38px;
  background: #25d366;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}
.btn-wa-sm:hover {
  background: #1da851;
}
.btn-wa-sm svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* ================================================================
   09.PRODUCTS DETAIL PAGE
   ================================================================ */
/* Detail grid for product detail cards on products page */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(270px, 1fr)
  ); /* Fixed: was minmax(20px) which collapsed columns */
  gap: 42px;
  margin-top: 48px;
}

.detail-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  transition: 0.3s;
}

/* ================================================================
   10.RESPONSIVE PRODUCT PAGE 
   ================================================================ */

/* Tablet view: 2 cards per row */
@media (max-width: 992px) {
  .products-grid,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile view: 1 card per row */
@media (max-width: 600px) {
  .products-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .detail-card {
    margin-bottom: 20px;
  }

  .dc-img {
    height: 180px; /* Smaller image area on mobile */
  }
}

/* ================================================================
   11. STATS STRIP
   ================================================================ */
.stats-strip {
  background: var(--gold);
  padding: 48px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 6px;
}

/* ================================================================
   12. WHY US
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--cream);
  transition: 0.3s;
  text-align: center;
  border: 2px solid transparent;
}
.why-card:hover {
  border-color: var(--green-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(27, 67, 50, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-icon svg {
  width: 28px;
  height: 28px;
}
.why-card h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 15px;
}
.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ================================================================
   13. GALLERY STRIP
   ================================================================ */
.gallery-strip {
  background: var(--green);
  overflow: hidden;
}
.gallery-strip .section-eye {
  color: var(--gold-light);
}
.gallery-strip .section-title {
  color: white;
}
.gallery-track-wrap {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
}
.gallery-track-wrap::before,
.gallery-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.gallery-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--green), transparent);
}
.gallery-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--green), transparent);
}
.gallery-track {
  display: flex;
  gap: 20px;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}
.gallery-track:hover {
  animation-play-state: paused;
}
.gallery-item {
  width: 220px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================================================
   14. FOOTER
   ================================================================ */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 5% 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 16px 0 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.social-btn:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.social-btn svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
}
.fc h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.fc ul li {
  margin-bottom: 10px;
}
.fc ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: 0.2s;
}
.fc ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.fc-contact div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.fc-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a {
  color: var(--gold-light);
}

/* ================================================================
   15. WHATSAPP FLOATING BUTTON
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-float-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float-btn:hover {
  transform: scale(1.12);
  animation: none;
}
.wa-float-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}
.wa-tooltip {
  background: white;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  animation: tooltipIn 0.5s 0.8s forwards;
}

/* ================================================================
   16. MODALS (Quick Enquiry & Auto Popup)
   ================================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  max-width: 480px;
  width: 90%;
  position: relative;
  animation: modalIn 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: 0.2s;
}
.modal-close:hover {
  background: var(--cream-dark);
}
.modal h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.form-grp {
  margin-bottom: 16px;
}
.form-grp label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-grp input,
.form-grp select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: 0.2s;
}
.form-grp input:focus,
.form-grp select:focus {
  border-color: var(--green);
  background: white;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.3);
}

/* Auto Popup Specific Premium CSS */
.auto-modal-design {
  background: var(--cream);
  border-top: 6px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.auto-modal-design h3 {
  color: var(--green);
  font-size: 26px;
}
.btn-premium {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.25);
}
.btn-premium:hover {
  box-shadow: 0 8px 25px rgba(27, 67, 50, 0.4);
  transform: translateY(-2px);
}

/* Auto Peeking Tab */
.peeking-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: white;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 8px;
  border-radius: 8px 0 0 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  z-index: 1500;
  transition: 0.4s ease;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}
.peeking-tab:hover {
  background: var(--gold-light);
  padding-right: 15px;
}
.peeking-tab.hidden {
  transform: translateY(-50%) translateX(100%);
}

/* ================================================================
   17. ANIMATIONS & SCROLL REVEAL
   ================================================================ */
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}
@keyframes shadowPulse {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) scaleX(0.7);
    opacity: 0.2;
  }
}
@keyframes leafFloat {
  0% {
    transform: translateY(-10vh) rotate(0deg) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(720deg) translateX(60px);
    opacity: 0;
  }
}
@keyframes bgPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes scrollLeft {
  to {
    transform: translateX(-50%);
  }
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow:
      0 8px 24px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow:
      0 8px 24px rgba(37, 211, 102, 0.45),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
}
@keyframes tooltipIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Scroll-reveal: elements start invisible, become visible when scrolled into view */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
} /* Fixed: JS uses .active class */

/* ================================================================
   18. RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }
  .hero-trust {
    padding: 16px 16px;
    gap: 0;
  }
  .trust-item {
    padding: 0 14px;
  }
  .trust-num { font-size: 18px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .nav-wa {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #hero {
    padding: 100px 5% 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 36px 5%;
  }
  .stat-num {
    font-size: 32px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .features-strip {
    gap: 12px;
  }
  .feat-item {
    font-size: 12px;
  }
}

/*================================================================
  19. Gallery Grid Layout
 ===============================================================*/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 5%;
}

.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1; /* Makes every box a square */
  position: relative;
  cursor: pointer;
  display: block;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.g-item:hover img {
  transform: scale(1.07); /* Zoom effect on hover */
}

/* Hover overlay */
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.g-item:hover .g-overlay {
  opacity: 1;
}

.g-overlay span {
  color: white;
  font-size: 30px;
}

/* Lightbox popup */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
}

/* Close button for the lightbox overlay */
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  background: none; /* Reset button styles */
  border: none; /* Reset button styles */
}
/* ============================================================
     GALLERY PAGE EXTRA STYLES
     ============================================================ */

/* ── Filter Buttons ── */
.filter-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  background: white;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

/* ── Gallery Section ── */
.gallery-page-section {
  background: var(--cream);
  padding: 60px 0 80px;
}

.gallery-section-head {
  padding: 0 5%;
  margin-bottom: 12px;
}

/* ── Grid ── */
.g-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cream-dark);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 16px;
}

.g-ph svg {
  width: 36px;
  height: 36px;
  opacity: 0.3;
}

.g-ph small {
  font-size: 10px;
  opacity: 0.6;
}

/* ── Count badge ── */
.gallery-count {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  padding: 0 5%;
}

.gallery-count b {
  color: var(--green);
  font-weight: 700;
}

/* ── CTA Banner ── */

.gallery-cta {
  background: var(--green);
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.gallery-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.gallery-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.gallery-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* btn-wa for CTA banner */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-1px);
}
.btn-wa svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .gallery-cta {
    text-align: center;
    justify-content: center;
  }
  .gallery-cta-btns {
    justify-content: center;
  }
  .filter-wrap {
    padding: 0 5%;
  }
  .gallery-count {
    padding: 0 5%;
  }
}

/* ============================================================
     ABOUT PAGE STYLING
     ============================================================ */
.about-page-section {
  padding: 80px 5%;
  background: white;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 40px;
}

.about-features h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--green);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.f-item {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
}

.f-item strong {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--dark);
}

.about-footer-note {
  margin-top: 50px;
  padding: 30px;
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  text-align: center;
  font-style: italic;
}

/* ============================================================
   ABOUT PAGE EXTRA STYLES
   (Styles specific to the About Us page)
   ============================================================ */

/* ── About Story Section ── */
.about-section {
  background: white;
  padding: 80px 5%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

/* Left image box */
.about-img-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.15);
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  position: relative;
}

/* ── 📸 ABOUT IMAGE ──────────────────────────────────────────*/
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image placeholder */
.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  min-height: 320px;
  padding: 40px;
  text-align: center;
  color: white;
}

.about-img-placeholder .big-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  opacity: 0.25;
  letter-spacing: -2px;
}

.about-img-placeholder .label {
  font-size: 14px;
  opacity: 0.6;
}

/* Green accent line (like brochure) */
.green-line {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Right text */
.about-text-box h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-text-box p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text-box strong {
  color: var(--green);
  font-weight: 700;
}

/* ── Why Choose Section ── */
.why-choose-section {
  background: var(--green);
  padding: 80px 5%;
}

.why-choose-section .section-eye {
  color: var(--gold-light);
}
.why-choose-section .section-title {
  color: white;
}
.why-choose-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

/* Checklist items (from brochure) */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.checklist-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.checklist-icon svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.checklist-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.checklist-item p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* Bottom paragraph */
.why-footer-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(201, 131, 26, 0.15);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Values Section ── */
.values-section {
  background: var(--cream);
  padding: 80px 5%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  padding: 28px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(27, 67, 50, 0.06);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.12);
}

.value-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.value-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA Banner ── */
/* CTA banner at the bottom of the About page */
.about-cta {
  background: var(
    --green
  ); /* Fixed: was a pointless gradient with same color at both stops */
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.about-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1da851;
  color: var(
    --dark
  ); /* Fixed: var(--black) was undefined, using var(--dark) instead */
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.btn-white:hover {
  background: var(--dark);
  color: #1da851;
  transform: translateY(-2px);
}

.btn-wa-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}
.btn-wa-outline:hover {
  background: white;
  color: var(--green);
  transform: translateY(-2px);
}
.btn-wa-outline svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .main-cta {
    text-align: center;
    justify-content: center;
  }
  .main-cta-btns {
    justify-content: center;
  }
  .checklist-item {
    padding: 16px 18px;
    gap: 12px;
  }
}

/* ============================================================
   PRODUCTS PAGE EXTRA STYLES
   ============================================================ */

/* ── Product Detail Card ── */
.product-detail-section {
  background: var(--cream);
  padding: 70px 5%;
}

.product-detail-section:nth-child(even) {
  background: white;
}

/* Each product block */
.pd-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--cream-dark);
}

.pd-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Alternate layout — image right pe */
.pd-block.reverse {
  direction: rtl;
}
.pd-block.reverse > * {
  direction: ltr;
}

/* ── Left: Image Box ── */
.pd-img-box {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
  box-shadow: 0 8px 40px rgba(27, 67, 50, 0.1);
}

/* Product image */
.pd-img-box img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply; /* Same as home page */
  transition: transform 0.4s ease;
  padding: 20px;
  background: var(--cream-dark);
}

.pd-img-box:hover img {
  transform: scale(1.04);
}

/* Badge on image */
.pd-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 1;
}
.pd-badge.gold {
  background: var(--gold);
}

/* Color dots under image */
.pd-color-section {
  padding: 16px 20px 20px;
  background: var(--green);
  border-radius: 0 0 20px 20px;
}

.pd-color-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

/* Color dots — same style as home page .cdot */
.pd-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Right: Product Info ── */

.pd-info .product-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pd-info h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 6px;
}

.pd-info .pd-capacity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 67, 50, 0.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.pd-info .pd-capacity svg {
  width: 15px;
  height: 15px;
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}

.spec-table tr {
  border-bottom: 1px solid var(--cream-dark);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 10px 6px;
  vertical-align: top;
  line-height: 1.55;
}

.spec-table td:first-child {
  font-weight: 700;
  color: var(--green);
  width: 120px;
  font-size: 13px;
  white-space: nowrap;
}

.spec-table td:last-child {
  color: var(--text);
}

/* Application tags */
.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.app-tag {
  background: rgba(27, 67, 50, 0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

/* Action buttons */
.pd-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* btn-wa same style */
.btn-wa-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 13px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
.btn-wa-product:hover {
  background: #1da851;
  transform: translateY(-1px);
}
.btn-wa-product svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* ── Features bar below each product ── */
.pd-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.pd-feat-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}

.pd-feat-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--green);
  fill: none;
  flex-shrink: 0;
}

/* ── Section divider with product number ── */
.pd-section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.pd-section-head .num {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(27, 67, 50, 0.06);
  line-height: 1;
  flex-shrink: 0;
}

/* ── CTA Banner ── */
.products-cta {
  background: var(--green);
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.products-cta h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.products-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.products-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}
.btn-outline-white:hover {
  background: var(--dark);
  color: #1da851;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pd-block {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pd-block.reverse {
    direction: ltr;
  }
  .pd-img-box img {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .products-cta {
    text-align: center;
    justify-content: center;
  }
  .products-cta-btns {
    justify-content: center;
  }
  .pd-actions {
    flex-direction: column;
  }
  .pd-actions .btn,
  .pd-actions .btn-wa-product {
    justify-content: center;
  }
  .pd-section-head .num {
    font-size: 48px;
  }
}

/* ================================================================
   NEW UTILITY CLASSES
   These replace inline style="" attributes removed from HTML files.
   Each class corresponds to a specific inline style that was
   previously hardcoded in the HTML markup.
   ================================================================ */

/* -- Navbar logo image sizing (replaces inline width/height on logo img) -- */
.nav-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

/* -- Footer branding layout (replaces inline flex styling in footer) -- */
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

/* Footer logo image sizing */
.footer-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

/* Footer brand name text */
.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

/* Footer brand tagline text */
.footer-brand-tagline {
  font-size: 11px;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* -- Section with white background (replaces style="background:white") -- */
.section-white {
  background: white;
}

/* -- Products preview header on index.html (replaces inline flex layout) -- */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

/* -- Breadcrumb active item (replaces inline color/weight on breadcrumb span) -- */
.breadcrumb-active {
  color: var(--gold-light);
  font-weight: 600;
}

/* -- Quick jump navigation bar on products page -- */
.quick-jump-bar {
  background: white;
  padding: 20px 5%;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Label text in the quick jump bar */
.quick-jump-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* Individual quick jump link buttons */
.quick-jump-link {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  padding: 6px 16px;
  border: 1.5px solid var(--green);
  border-radius: 50px;
  transition: 0.2s;
}

.quick-jump-link:hover {
  background: var(--green);
  color: white;
}

/* -- About page buttons wrapper (replaces inline flex on about page) -- */
.about-btns-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* About page placeholder enterprise subtitle */
.about-placeholder-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.5;
}

/* -- Text alignment utility -- */
.text-center {
  text-align: center;
}

/* -- Gallery strip "View Full Gallery" link wrapper -- */
.gallery-view-all {
  text-align: center;
  margin-top: 36px;
}

/* -- Transition delay utilities (replaces inline transition-delay styles) -- */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

/* Section subtitle that needs centering */
.section-sub-center {
  margin: 0 auto;
}

/* Product card image background colors */
.pc-img-green {
  background: #eaf5f0;
}
.pc-img-peach {
  background: #fff3ee;
}
.pc-img-blue {
  background: #f0f7ff;
}
.pc-img-gold {
  background: #fff8ee;
}

/* Gallery item image styling (for homepage gallery strip) */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

/* ================================================================
   CONTACT PAGE
   Styles for the Contact Us page layout, info cards, and form.
   ================================================================ */

/* -- Contact section layout -- */
.contact-section {
  background: white;
  padding: 80px 5%;
}

/* Two-column grid: info on left, form on right */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* -- Contact info card (left side) -- */
.contact-info-card {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(27, 67, 50, 0.08);
}

.contact-info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-info-card > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Individual contact detail row (icon + text) */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

/* Circular icon container for contact details */
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(27, 67, 50, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
}

.contact-detail h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-detail a:hover {
  color: var(--green);
}

/* -- Contact form card (right side, green background) -- */
.contact-form-card {
  background: var(--green);
  padding: 40px;
  border-radius: var(--radius);
  color: white;
}

.contact-form-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

/* Form inputs on green background need lighter colors */
.contact-form .form-grp label {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form .form-grp input,
.contact-form .form-grp select,
.contact-form .form-grp textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.contact-form .form-grp input::placeholder,
.contact-form .form-grp textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-grp input:focus,
.contact-form .form-grp select:focus,
.contact-form .form-grp textarea:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.15);
}

/* Textarea styling */
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: 0.2s;
  font-family: "Inter", sans-serif;
  resize: vertical;
  min-height: 100px;
}

/* Submit button uses gold color on contact form */
.contact-form .form-submit {
  background: var(--gold);
}

.contact-form .form-submit:hover {
  background: var(--gold-light);
}

/* -- Social links in contact info card -- */
.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
}

/* -- Contact page responsive -- */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* -- Additional utilities -- */
.text-gold {
  color: var(--gold-light);
}
.m-b-0 {
  margin-bottom: 0;
}
.pad-80-5 {
  padding: 80px 5%;
}
.footer-desc {
  margin-top: 20px;
  font-size: 14.5px;
  opacity: 0.8;
}
.btn-full-width {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}
