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

:root {
  --teal: #1de9b6;
  --teal-dark: #00bfa5;
  --steel-blue: #5b8fa8;
  --steel-blue-dark: #3a6b85;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f1f3f5;
  --mid-gray: #dee2e6;
  --text-dark: #1a2332;
  --text-mid: #4a5568;
  --text-light: #718096;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; background: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-logo { height: 90px; width: auto; animation: logoPulse 1.5s ease-in-out infinite; }
.loader-bar { width: 200px; height: 3px; background: var(--light-gray); border-radius: 2px; margin-top: 24px; overflow: hidden; }
.loader-bar-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--steel-blue)); border-radius: 2px; animation: barFill 1.8s ease forwards; }
.loader-text { margin-top: 16px; font-size: 13px; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; }
@keyframes logoPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
@keyframes barFill { from{width:0} to{width:100%} }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mid-gray);
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 56px; width: 80px; object-fit: contain; object-position: center; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text span:first-child { font-size: 16px; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.nav-logo-text span:last-child { font-size: 10px; color: var(--steel-blue); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; position: relative; padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--teal);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--teal); color: var(--text-dark);
  padding: 9px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(29,233,182,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
#hero {
  min-height: 100vh; padding-top: 70px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #f8fdfc 0%, #eaf6f4 40%, #e8f4f9 100%);
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(29,233,182,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(91,143,168,0.1) 0%, transparent 50%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(29,233,182,0.12); color: var(--teal-dark);
  padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero-title {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 20px;
}
.hero-title span { color: var(--steel-blue); }
.hero-subtitle { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal); color: var(--text-dark);
  padding: 13px 28px; border-radius: 8px; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,233,182,0.35); }
.btn-secondary {
  background: transparent; color: var(--steel-blue);
  padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 14px;
  text-decoration: none; border: 2px solid var(--steel-blue); transition: var(--transition);
}
.btn-secondary:hover { background: var(--steel-blue); color: #fff; transform: translateY(-2px); }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--steel-blue); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.hero-image-wrap {
  position: relative; display: flex; justify-content: center;
  animation: floatUp 0.8s ease forwards; opacity: 0;
}
@keyframes floatUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-img-card {
  width: 100%; max-width: 480px; border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-card img { width: 100%; height: 360px; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-icon { font-size: 22px; }
.hero-badge-text strong { display: block; font-size: 13px; font-weight: 700; }
.hero-badge-text span { font-size: 11px; color: var(--text-light); }

/* ── SECTIONS ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: rgba(29,233,182,0.1); color: var(--teal-dark);
  padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
.section-sub { font-size: 15px; color: var(--text-mid); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--teal), var(--steel-blue)); border-radius: 2px; margin: 16px auto 0; }

/* ── ABOUT ── */
#about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text h2 { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.about-text .tagline { color: var(--steel-blue); font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.about-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.badge {
  background: #fff; border: 1px solid var(--mid-gray);
  padding: 6px 14px; border-radius: 20px; font-size: 12px;
  font-weight: 600; color: var(--text-mid); display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.badge:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); }
.about-info { margin-top: 8px; }
.info-row { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--mid-gray); font-size: 14px; }
.info-row:last-child { border-bottom: none; }
.info-label { font-weight: 600; color: var(--text-dark); min-width: 120px; }
.info-val { color: var(--text-mid); }
.about-map-wrap { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.about-map-wrap iframe { display: block; width: 100%; height: 320px; border: none; }
.about-address-card {
  background: #fff; border: 1px solid var(--mid-gray);
  border-radius: 12px; padding: 18px 20px; margin-top: 16px;
  display: flex; gap: 12px; align-items: flex-start;
}
.about-address-card .icon { font-size: 20px; margin-top: 2px; }
.about-address-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.about-address-card strong { display: block; font-size: 14px; color: var(--text-dark); margin-bottom: 4px; }

/* ── SERVICES ── */
#services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--mid-gray);
  border-radius: 16px; padding: 28px 24px;
  transition: var(--transition); cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--steel-blue));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(29,233,182,0.15), rgba(91,143,168,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.service-highlights { list-style: none; }
.service-highlights li {
  font-size: 12px; color: var(--text-mid); padding: 4px 0;
  display: flex; gap: 6px; align-items: flex-start;
}
.service-highlights li::before { content: '✓'; color: var(--teal-dark); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

/* ── PRODUCTS ── */
#products { background: var(--off-white); }
.product-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 20px; border: 1.5px solid var(--mid-gray);
  background: #fff; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: var(--transition); color: var(--text-mid);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--teal); border-color: var(--teal); color: var(--text-dark); font-weight: 600;
}
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--mid-gray); transition: var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-img { position: relative; overflow: hidden; height: 190px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge-rent {
  position: absolute; top: 10px; right: 10px;
  background: var(--teal); color: var(--text-dark);
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.product-info { padding: 16px; }
.product-cat { font-size: 10px; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-info h3 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; line-height: 1.3; }
.product-info p { font-size: 12px; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }
.product-enquire {
  width: 100%; padding: 8px; border: 1.5px solid var(--steel-blue);
  border-radius: 6px; background: transparent; color: var(--steel-blue);
  font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.product-enquire:hover { background: var(--steel-blue); color: #fff; }
.product-hidden { display: none; }

/* ── WHY US ── */
#whyus { background: linear-gradient(135deg, var(--steel-blue-dark) 0%, var(--steel-blue) 100%); }
#whyus .section-title { color: #fff; }
#whyus .section-sub { color: rgba(255,255,255,0.75); }
#whyus .section-tag { background: rgba(255,255,255,0.15); color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 28px 20px; text-align: center; transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.why-icon { font-size: 36px; margin-bottom: 14px; }
.why-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ── CONTACT ── */
#contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.contact-info > p { color: var(--text-mid); font-size: 14px; margin-bottom: 28px; line-height: 1.6; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--light-gray);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(29,233,182,0.15), rgba(91,143,168,0.15));
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-item h4 { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 14px; color: var(--text-mid); text-decoration: none; display: block; line-height: 1.5; }
.contact-item a:hover { color: var(--teal-dark); }
.contact-form { background: var(--off-white); border-radius: 16px; padding: 32px; border: 1px solid var(--mid-gray); }
.contact-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.contact-form > p { font-size: 13px; color: var(--text-mid); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--mid-gray);
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text-dark); background: #fff; transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 13px; background: var(--teal); border: none; border-radius: 8px;
  font-size: 15px; font-weight: 700; color: var(--text-dark); cursor: pointer;
  transition: var(--transition); font-family: 'Inter', sans-serif;
}
.form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(29,233,182,0.3); }
.form-success { display: none; text-align: center; padding: 20px; color: var(--teal-dark); font-weight: 600; }

/* ── MAP FOOTER ── */
#footer-map { padding: 0; }
#footer-map iframe { display: block; width: 100%; height: 300px; border: none; }

/* ── FOOTER ── */
footer { background: var(--text-dark); color: rgba(255,255,255,0.85); padding: 56px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 50px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-gst { font-size: 11px; color: rgba(255,255,255,0.35); }

/* ── SCROLL ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE NAV ── */
@media(max-width:900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 16px 24px; gap: 0; border-bottom: 1px solid var(--mid-gray); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--light-gray); }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
@media(max-width:600px) {
  section { padding: 60px 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── GALLERY SECTION ── */
#gallery {
  background: var(--white);
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  padding: 8px 22px;
  border-radius: 20px;
  border: 1.5px solid var(--mid-gray);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-mid);
  transition: var(--transition);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--steel-blue);
  border-color: var(--steel-blue);
  color: var(--white);
  font-weight: 600;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--mid-gray);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 233, 182, 0.85); /* teal overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--text-dark);
  padding: 16px;
  text-align: center;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-size: 24px;
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: transform 0.3s ease 0.1s;
}
.gallery-overlay p {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: transform 0.3s ease 0.15s;
}
.gallery-item:hover .gallery-overlay span,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* ── LIGHTBOX MODAL ── */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 23, 0.95); /* darker for premium feel */
  z-index: 10000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-modal.open {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox-modal.open .lightbox-content {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 44px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover {
  color: var(--teal);
  transform: rotate(90deg);
}
.lightbox-caption {
  margin-top: 20px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ── PRODUCT VIEW DETAILS BUTTON ── */
.product-view-details-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  background: var(--steel-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 8px;
}
.product-view-details-btn:hover {
  background: var(--steel-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(91,143,168,0.25);
}

/* ── PRODUCT DETAIL PAGE SPECIFIC STYLES ── */
.product-detail-page {
  background: var(--off-white);
}
.product-main-container {
  padding-top: 110px; /* offset fixed navbar */
  padding-bottom: 80px;
}
.breadcrumbs {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.breadcrumbs a {
  color: var(--steel-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: var(--steel-blue-dark);
}
.breadcrumbs span.active {
  color: var(--text-dark);
  font-weight: 600;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
  align-items: start;
}
.product-media-column {
  position: sticky;
  top: 90px;
}
.product-main-img-card {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  position: relative;
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
}
.product-main-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}
.product-category-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--steel-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.product-title-h1 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.product-status-indicators {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.indicator-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}
.available-badge {
  background: rgba(29, 233, 182, 0.12);
  color: var(--teal-dark);
}
.unavailable-badge {
  background: rgba(239, 83, 80, 0.12);
  color: #d32f2f;
}
.rent-badge {
  background: rgba(91, 143, 168, 0.12);
  color: var(--steel-blue-dark);
}
.product-description-full {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.product-specs-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 8px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.specs-table tr {
  border-bottom: 1px solid var(--light-gray);
}
.specs-table tr:last-child {
  border-bottom: none;
}
.spec-label {
  padding: 12px 16px 12px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  width: 35%;
}
.spec-value {
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-mid);
}

/* ── DETAIL ENQUIRY CARD ── */
.detail-enquiry-card {
  background: linear-gradient(135deg, #f8fdfc 0%, #e8f4f9 100%);
  border-radius: 14px;
  border: 1px solid var(--mid-gray);
  padding: 24px;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}
.enquiry-card-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.enquiry-card-header p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 18px;
}
.enquiry-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enquiry-phone-btn, .enquiry-email-btn, .enquiry-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}
.enquiry-phone-btn {
  background: var(--teal);
  color: var(--text-dark);
}
.enquiry-phone-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.enquiry-email-btn {
  background: transparent;
  border: 2px solid var(--steel-blue);
  color: var(--steel-blue);
}
.enquiry-email-btn:hover {
  background: var(--steel-blue);
  color: var(--white);
  transform: translateY(-1px);
}
.enquiry-wa-btn {
  background: #25d366;
  color: var(--white);
}
.enquiry-wa-btn:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

/* ── RELATED PRODUCTS SECTION ── */
.related-products-section {
  margin-top: 64px;
}

/* ── MOBILE ADAPTATIONS FOR DETAILS PAGE ── */
@media(max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
  }
  .product-media-column {
    position: static;
  }
  .product-main-img-card {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media(max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gallery-item {
    aspect-ratio: 1;
  }
  .gallery-overlay span {
    font-size: 18px;
  }
  .gallery-overlay p {
    font-size: 10px;
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 36px;
  }
}

