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

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Color Palette */
  --primary-hue: 38; /* Solar Yellow/Gold */
  --primary: hsl(var(--primary-hue), 95%, 50%);
  --primary-hover: hsl(var(--primary-hue), 95%, 43%);
  --primary-glow: hsla(var(--primary-hue), 95%, 50%, 0.15);
  
  --secondary-hue: 165; /* Forest Green / Teal */
  --secondary: hsl(var(--secondary-hue), 85%, 15%);
  --secondary-light: hsl(var(--secondary-hue), 80%, 25%);
  --emerald: hsl(150, 84%, 37%);
  --emerald-glow: hsla(150, 84%, 37%, 0.2);

  --bg-dark: hsl(165, 30%, 4%);
  --bg-card: hsla(165, 30%, 8%, 0.7);
  --bg-card-hover: hsla(165, 30%, 12%, 0.85);
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-glass-active: rgba(255, 255, 255, 0.15);
  --border-emerald: hsla(150, 84%, 37%, 0.15);
  --border-emerald-active: hsla(150, 84%, 37%, 0.4);

  --text-primary: hsl(0, 0%, 98%);
  --text-secondary: hsl(165, 10%, 75%);
  --text-muted: hsl(165, 8%, 55%);
  
  /* Fonts */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout & Spacing */
  --header-height: 80px;
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 12px 24px -8px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 24px 48px -12px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 24px -4px var(--primary-glow);
}

/* --- LIGHT MODE THEME --- */
[data-theme="light"] {
  --primary: hsl(38, 92%, 38%);
  --primary-hover: hsl(38, 92%, 30%);
  --primary-glow: hsla(38, 92%, 38%, 0.2);
  --emerald: hsl(150, 65%, 28%);
  --emerald-glow: hsla(150, 65%, 28%, 0.15);

  --bg-dark: hsl(210, 20%, 98%);
  --bg-card: hsla(0, 0%, 100%, 0.90);
  --bg-card-hover: hsla(150, 15%, 96%, 0.98);
  --border-glass: rgba(0, 0, 0, 0.09);
  --border-glass-active: rgba(0, 0, 0, 0.20);
  --border-emerald: hsla(150, 65%, 28%, 0.22);
  --border-emerald-active: hsla(150, 65%, 28%, 0.50);

  --text-primary: hsl(210, 25%, 12%);
  --text-secondary: hsl(210, 15%, 32%);
  --text-muted: hsl(210, 10%, 52%);

  --shadow-sm: 0 4px 12px -2px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 12px 28px -6px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 24px 48px -8px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 0 24px -4px var(--primary-glow);
}

/* Body background in light mode */
[data-theme="light"] body {
  background-image:
    radial-gradient(circle at 10% 20%, hsla(150, 50%, 88%, 0.55) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, hsla(38, 80%, 90%, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, hsl(210, 20%, 98%) 0%, hsl(210, 15%, 95%) 100%);
}

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: hsl(210, 15%, 93%); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: hsl(150, 20%, 72%); }

/* ---- TYPOGRAPHY ---- */
[data-theme="light"] .gradient-text {
  background: linear-gradient(135deg, hsl(210, 25%, 10%) 25%, hsl(38, 92%, 35%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .gradient-text-green {
  background: linear-gradient(135deg, hsl(150, 65%, 20%) 0%, hsl(150, 60%, 36%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .logo-img,
[data-theme="light"] .hero-logo-large {
  filter: brightness(0);
}

/* ---- HEADER / NAV ---- */
[data-theme="light"] .header.scrolled {
  background: rgba(248, 249, 252, 0.90);
  border-bottom: 1px solid var(--border-emerald);
  box-shadow: 0 4px 16px -4px rgba(0,0,0,0.10);
}
@media (max-width: 992px) {
  [data-theme="light"] .nav {
    background: rgba(246, 248, 252, 0.98);
    border-top: 1px solid var(--border-emerald);
  }
}

/* ---- SECTION BADGE ---- */
[data-theme="light"] .section-badge {
  background: hsla(150, 55%, 88%, 0.65);
  border-color: var(--border-emerald);
  color: var(--emerald);
}

/* ---- HERO SECTION ---- */
[data-theme="light"] .hero {
  background-image: linear-gradient(180deg, rgba(245, 248, 246, 0.88) 0%, rgba(245, 248, 246, 0.94) 100%), url('assets/hero_bg.png');
}
[data-theme="light"] .hero::before {
  background: radial-gradient(circle, hsla(150, 55%, 84%, 0.45) 0%, transparent 70%);
}
[data-theme="light"] .hero-badge {
  background: rgba(0, 0, 0, 0.045);
  border-color: rgba(0,0,0,0.10);
  color: var(--emerald);
}
[data-theme="light"] .hero-glow-card {
  background: linear-gradient(135deg, hsla(150, 45%, 88%, 0.80) 0%, hsla(210, 20%, 94%, 0.92) 100%);
  border-color: var(--border-emerald-active);
}
[data-theme="light"] .floating-tech-badge.badge-1 {
  background: rgba(236, 248, 242, 0.95);
  border: 1px solid var(--border-emerald-active);
  color: var(--emerald);
}
[data-theme="light"] .floating-tech-badge.badge-2 {
  background: rgba(255, 249, 230, 0.95);
  border: 1px solid rgba(160, 100, 8, 0.30);
  color: var(--primary);
}
[data-theme="light"] .hero-stats {
  border-top-color: var(--border-glass);
}

/* ---- ABOUT SECTION ---- */
[data-theme="light"] .about-img-main {
  border-color: var(--border-emerald) !important;
}

/* ---- VISION / MISSION / VALUES ---- */
[data-theme="light"] .vision-mission {
  background: linear-gradient(180deg, transparent 0%, rgba(150, 210, 175, 0.12) 50%, transparent 100%);
  border-top-color: var(--border-glass);
  border-bottom-color: var(--border-glass);
}
[data-theme="light"] .vm-icon {
  background: hsla(150, 55%, 88%, 0.55);
  border-color: var(--border-emerald);
  color: var(--emerald);
}
[data-theme="light"] .vm-card.vision .vm-icon {
  background: hsla(38, 75%, 88%, 0.55);
  border-color: rgba(160, 100, 8, 0.28);
  color: var(--primary);
}
[data-theme="light"] .vm-card::after {
  background: radial-gradient(circle, hsla(150, 55%, 80%, 0.20) 0%, transparent 70%);
}
[data-theme="light"] .value-icon-wrapper {
  background: rgba(150, 210, 175, 0.18);
  border-color: var(--border-emerald);
  color: var(--emerald);
}

/* ---- CATALOG / PRODUCT CARDS ---- */
[data-theme="light"] .product-image-container {
  background: transparent;
  border-bottom-color: var(--border-emerald);
}
[data-theme="light"] .product-tag {
  background: rgba(220, 245, 232, 0.95);
  border-color: var(--border-emerald);
  color: var(--emerald);
}
[data-theme="light"] .product-specs li {
  color: var(--text-secondary);
}
[data-theme="light"] .product-specs li svg {
  color: var(--emerald);
}
[data-theme="light"] .price-label {
  color: var(--text-muted);
}
[data-theme="light"] .filter-tabs {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--border-glass);
}
[data-theme="light"] .filter-tab {
  color: var(--text-secondary);
}
[data-theme="light"] .filter-tab:hover { color: var(--text-primary); }
[data-theme="light"] .filter-tab.active {
  background: var(--emerald);
  color: #fff;
}
[data-theme="light"] .search-input {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--border-glass);
  color: var(--text-primary);
}
[data-theme="light"] .search-input::placeholder { color: var(--text-muted); }
[data-theme="light"] .search-input:focus {
  border-color: var(--border-emerald-active);
  background: #fff;
}

/* ---- REVIEWS ---- */
[data-theme="light"] .review-verified-badge { color: var(--emerald); }
[data-theme="light"] .review-product-tag {
  background: hsla(38, 75%, 88%, 0.55);
  border-color: rgba(160, 100, 8, 0.25);
  color: var(--primary);
}

/* ---- CONTACT SECTION ---- */
[data-theme="light"] .contact-detail-icon {
  background: rgba(150, 210, 175, 0.22);
  border-color: var(--border-emerald);
  color: var(--emerald);
}
[data-theme="light"] .contact-detail-content a:hover { color: var(--primary); }
[data-theme="light"] .gst-box {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--border-glass);
}

/* ---- MAP ---- */
[data-theme="light"] .map-mock-bg {
  background-color: hsl(150, 15%, 90%);
  background-image:
    radial-gradient(rgba(0,0,0,0.06) 1px, transparent 0),
    radial-gradient(rgba(0,0,0,0.03) 2px, transparent 0);
  background-size: 20px 20px, 40px 40px;
}
[data-theme="light"] .map-card-overlay {
  background: rgba(238, 248, 244, 0.97);
  border-color: var(--border-emerald);
}
[data-theme="light"] .map-overlay-info h5 { color: var(--text-primary); }
[data-theme="light"] .map-overlay-info p { color: var(--text-muted); }

/* ---- FORMS ---- */
[data-theme="light"] .form-control {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.10);
  color: var(--text-primary);
}
[data-theme="light"] .form-control::placeholder { color: var(--text-muted); }
[data-theme="light"] .form-control:focus {
  background: #fff;
  border-color: var(--border-emerald-active);
}
[data-theme="light"] .form-control option {
  background: #fff;
  color: var(--text-primary);
}
[data-theme="light"] .form-label { color: var(--text-secondary); }

/* ---- TOAST ---- */
[data-theme="light"] .toast {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--border-emerald-active);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
[data-theme="light"] .toast-message { color: var(--text-primary); }

/* ---- FOOTER ---- */
[data-theme="light"] .footer {
  background: rgba(0, 0, 0, 0.035);
  border-top-color: var(--border-glass);
}
[data-theme="light"] .footer-bottom {
  border-top-color: rgba(0,0,0,0.06);
}

/* ---- THEME TOGGLE BUTTON ---- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--border-emerald-active);
  color: var(--emerald);
  background: var(--bg-card-hover);
  transform: rotate(20deg);
}

/* Show theme toggle on mobile too (alongside hamburger) */
.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- RESET & GENERAL STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, hsla(165, 85%, 8%, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, hsla(38, 95%, 15%, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, hsla(165, 30%, 4%, 1) 0%, hsla(165, 30%, 2%, 1) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: hsl(165, 20%, 15%);
  border: 2px solid var(--bg-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--emerald);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

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

.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-green {
  background: linear-gradient(135deg, #a7f3d0 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- REUSABLE COMPONENTS & UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: hsla(165, 80%, 15%, 0.5);
  border: 1px solid var(--border-emerald);
  border-radius: 100px;
  color: var(--emerald);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 400;
}

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

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  font-size: 0.95rem;
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.btn-primary {
  background: var(--primary);
  color: hsl(165, 30%, 2%);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px hsla(var(--primary-hue), 95%, 50%, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

[data-theme="light"] .btn-secondary {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.18);
}

#btn-cancel-review {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
#btn-cancel-review:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
}
[data-theme="light"] #btn-cancel-review {
  background: rgba(0, 0, 0, 0.05) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
[data-theme="light"] #btn-cancel-review:hover {
  background: rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(0, 0, 0, 0.25) !important;
  color: var(--text-primary) !important;
}

/* ---- Review Form Image upload ---- */
.image-upload-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; text-align: left; }
.image-upload-zone {
  border: 2px dashed var(--border-glass-active);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: rgba(255,255,255,0.02);
  position: relative;
}
.image-upload-zone:hover { border-color: var(--emerald); background: rgba(16,185,129,0.05); }
.image-upload-zone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.image-upload-icon { color: var(--text-muted); margin-bottom: 8px; }
.image-upload-text { font-size: 0.85rem; color: var(--text-secondary); }
.image-upload-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.image-preview-wrap { display: none; margin-top: 12px; }
.image-preview-wrap img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass-active);
  display: block;
}
.btn-remove-img {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: hsl(0, 72%, 51%);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 6px 0;
  margin-top: 6px;
  transition: opacity 0.2s;
}
.btn-remove-img:hover { opacity: 0.7; }

[data-theme="light"] .image-upload-zone {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.12);
}
[data-theme="light"] .image-upload-zone:hover {
  border-color: var(--emerald);
  background: rgba(16,185,129,0.04);
}
[data-theme="light"] .image-preview-wrap img {
  border-color: rgba(0,0,0,0.12);
}

.btn-emerald {
  background: var(--emerald);
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--emerald-glow);
}

.btn-emerald:hover {
  background: hsl(150, 84%, 32%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px hsla(150, 84%, 37%, 0.4);
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-active);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(2, 44, 34, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-emerald);
  height: 70px;
  box-shadow: var(--shadow-md);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.header.scrolled .logo-img {
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-normal);
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn {
  padding: 8px 16px;
  font-size: 0.88rem;
}

/* Mobile Menu Button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(2, 44, 34, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-normal);
    z-index: 999;
    border-top: 1px solid var(--border-emerald);
  }
  
  .nav.active {
    left: 0;
  }
  
  .header-actions {
    display: none;
  }
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(3, 15, 10, 0.82) 0%, rgba(3, 15, 10, 0.92) 100%), url('assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(150, 84%, 37%, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .hero-content {
    align-items: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title span {
  display: block;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 28px;
  }
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 13px 20px;
  }
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  border-top: 1px solid var(--border-glass);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.stat-num span {
  color: var(--primary);
}

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

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 20px;
  }
  .stat-num {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
}

/* Hero Visual Block */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-card {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  background: radial-gradient(135deg, hsla(165, 85%, 15%, 0.3) 0%, hsla(165, 30%, 8%, 0.8) 100%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-xl);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.hero-glow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 40%, hsla(38, 95%, 50%, 0.1) 100%);
  pointer-events: none;
}

.hero-img-showcase {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  opacity: 0.95;
  transition: transform var(--transition-slow);
}
.hero-glow-card:hover .hero-img-showcase {
  transform: scale(1.05);
}

.floating-tech-badge {
  position: absolute;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}

.badge-1 {
  top: 10%;
  left: -5%;
  background: rgba(2, 44, 34, 0.85);
  border: 1px solid var(--border-emerald-active);
  animation: float 5s ease-in-out infinite alternate;
}

.badge-2 {
  bottom: 15%;
  right: -5%;
  background: rgba(15, 12, 5, 0.85);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--primary);
  animation: float 7s ease-in-out infinite alternate-reverse;
}

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

@media (max-width: 992px) {
  .hero-visual {
    margin-top: 40px;
    height: 340px;
  }
  .hero-glow-card {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    height: 260px;
    margin-top: 24px;
  }
  .hero-glow-card {
    max-width: 220px;
  }
  /* Hide decorative floating badges on very small screens */
  .floating-tech-badge {
    display: none;
  }
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-visual {
  position: relative;
}

.about-image-stack {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-main {
  width: 80%;
  height: 380px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid var(--border-emerald);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  transition: transform var(--transition-slow);
}
.about-image-stack:hover .about-img-main {
  transform: scale(1.03);
}

.about-img-decor {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--secondary) 100%);
  border-radius: var(--radius-md);
  bottom: 10px;
  left: 10px;
  z-index: 1;
  opacity: 0.3;
  filter: blur(24px);
}

.about-exp-badge {
  position: absolute;
  top: 30px;
  right: 15px;
  z-index: 3;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-dark);
  animation: spin-slow 20s linear infinite;
}

.about-exp-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg); /* Counteract spin for readability if needed, or rotate together */
}

.about-exp-num {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.about-exp-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Ensure inner text remains readable by keeping it upright if wanted, or let it rotate like an emblem */
.about-exp-badge-inner {
  animation: spin-counter 20s linear infinite;
}
@keyframes spin-counter {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}

.about-metric-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.about-metric-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-emerald-active);
  transform: translateX(6px);
}

.about-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald-glow);
  border: 1px solid var(--border-emerald-active);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-metric-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.about-metric-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

[data-theme="light"] .about-metric-card {
  background: hsla(0, 0%, 100%, 0.90);
  border-color: var(--border-glass);
}
[data-theme="light"] .about-metric-card:hover {
  background: hsla(150, 15%, 96%, 0.98);
  border-color: var(--border-emerald-active);
}
[data-theme="light"] .about-metric-icon {
  background: hsla(150, 55%, 88%, 0.65);
  border-color: var(--border-emerald-active);
  color: var(--emerald);
}

/* --- VISION, MISSION, VALUES --- */
.vision-mission {
  background: linear-gradient(180deg, transparent 0%, rgba(2, 44, 34, 0.2) 50%, transparent 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

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

.vm-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.vm-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, hsla(165, 85%, 25%, 0.15) 0%, transparent 70%);
  filter: blur(20px);
}

.vm-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: hsla(165, 80%, 15%, 0.4);
  border: 1px solid var(--border-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  margin-bottom: 24px;
}

.vm-card.vision .vm-icon {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
  color: var(--primary);
}

.vm-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.vm-card p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Values Grid */
.values-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

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

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

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

.value-card {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.value-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  margin-bottom: 16px;
  transition: var(--transition-normal);
}

.value-card:hover .value-icon-wrapper {
  color: var(--bg-dark);
  background: var(--emerald);
  border-color: var(--emerald);
  box-shadow: 0 0 16px var(--emerald-glow);
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- PRODUCT & SERVICES CATALOG --- */
.catalog-controls {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-normal);
  backdrop-filter: blur(8px);
}

.search-input:focus {
  border-color: var(--border-emerald-active);
  outline: none;
  box-shadow: 0 0 0 4px var(--emerald-glow);
  background: var(--bg-card-hover);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-normal);
}

.search-input:focus + .search-icon {
  color: var(--emerald);
}

/* Filter Tabs */
.filter-tabs-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 4px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .filter-tabs-wrapper {
    justify-content: flex-start;
  }
}

.filter-tabs {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
  min-width: max-content;
}

.filter-tab {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  background: none;
}

.filter-tab:hover {
  color: var(--text-primary);
}

.filter-tab.active {
  background: var(--emerald);
  color: var(--text-primary);
  box-shadow: 0 4px 12px var(--emerald-glow);
}

/* Product Grid */
/* Product Grid Carousel */
.products-carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.products-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
  margin: -12px 0;
  cursor: grab;
}

.products-carousel-track-wrapper:active {
  cursor: grabbing;
}

.products-grid {
  display: flex;
  flex-direction: row;
  gap: 32px;
  min-height: 200px;
  width: max-content;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

@media (max-width: 1024px) {
  .products-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    gap: 20px;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: linear-gradient(135deg, hsla(150, 45%, 15%, 0.4) 0%, var(--bg-card) 100%);
  flex-shrink: 0;
  /* Width is set dynamically by JS based on the wrapper's actual pixel width */
  min-width: 240px;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  user-select: none;
  border-radius: var(--radius-md);
}

[data-theme="light"] .product-card {
  background: hsla(150, 45%, 92%, 0.95);
  border-color: var(--border-emerald);
}

/* Carousel Side Arrow Buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--text-primary);
  box-shadow: 0 0 15px var(--emerald-glow);
}

[data-theme="light"] .carousel-arrow:hover {
  color: hsl(210, 20%, 98%);
}

.carousel-arrow.prev {
  left: -24px;
}

.carousel-arrow.next {
  right: -24px;
}

.carousel-arrow:disabled {
  opacity: 0.15;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .carousel-arrow.prev {
    left: -12px;
  }
  .carousel-arrow.next {
    right: -12px;
  }
}

@media (max-width: 768px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  .carousel-arrow.prev {
    left: -8px;
  }
  .carousel-arrow.next {
    right: -8px;
  }
}

.product-image-container {
  width: 100%;
  height: 220px;
  background: hsl(165, 30%, 4%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .product-image-container {
    height: 200px;
  }
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform var(--transition-slow), opacity var(--transition-normal);
}

.product-card:hover .product-card-img {
  transform: scale(1.08);
  opacity: 1;
}

.product-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(2, 44, 34, 0.45) 100%);
  pointer-events: none;
}

[data-theme="light"] .product-image-container::after {
  background: linear-gradient(to bottom, transparent 40%, rgba(220, 245, 232, 0.35) 100%);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(2, 44, 34, 0.85);
  border: 1px solid var(--border-emerald);
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

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

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.product-specs {
  list-style: none;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
}

.product-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-specs li svg {
  color: var(--emerald);
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
  margin-top: auto;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .btn-whatsapp-sm {
    width: 100%;
    justify-content: center;
  }
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-amount {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.price-amount.inquire {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
}

.btn-whatsapp-sm {
  padding: 10px 16px;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* Empty State */
.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
}

.catalog-empty svg {
  color: var(--text-muted);
  margin-bottom: 16px;
  opacity: 0.5;
}

.catalog-empty p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* --- CONTACT & LOCATION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

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

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

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(2, 44, 34, 0.4);
  border: 1px solid var(--border-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.contact-detail-content p, .contact-detail-content a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.gst-box {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.gst-label {
  color: var(--text-muted);
  font-weight: 500;
}

.gst-num {
  font-family: monospace;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* Contact Form */
.contact-form-wrapper {
  padding: 40px;
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 24px;
  }
}

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

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--border-emerald-active);
  box-shadow: 0 0 0 3px var(--emerald-glow);
  background: rgba(0, 0, 0, 0.4);
}

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

/* Mock Map Card */
.map-card {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  position: relative;
  margin-top: 32px;
  box-shadow: var(--shadow-md);
}

.map-mock-bg {
  width: 100%;
  height: 100%;
  background-color: hsl(165, 30%, 3%);
  background-image: 
    radial-gradient(var(--border-glass) 1px, transparent 0),
    radial-gradient(rgba(255,255,255,0.01) 2px, transparent 0);
  background-size: 20px 20px, 40px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-mock-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--emerald-glow);
  border: 2px dashed var(--emerald);
  animation: pulse-ring 2.5s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; box-shadow: 0 0 0 0 hsla(150, 84%, 37%, 0.4); }
  70% { transform: scale(1.1); opacity: 0.2; box-shadow: 0 0 0 15px hsla(150, 84%, 37%, 0); }
  100% { transform: scale(0.8); opacity: 0; }
}

.map-pin {
  color: var(--primary);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  z-index: 2;
  cursor: pointer;
  animation: bounce 2s infinite;
}

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

.map-card-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(2, 44, 34, 0.95);
  border: 1px solid var(--border-emerald);
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.map-overlay-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.map-overlay-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-map-nav {
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 4px;
}

/* Toast Message */
.toast {
  position: fixed;
  bottom: 24px;
  right: -100vw;
  background: var(--bg-card);
  border: 1px solid var(--border-emerald-active);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  max-width: calc(100vw - 32px);
  transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(16px);
}

.toast.show {
  right: 16px;
}

@media (min-width: 480px) {
  .toast.show {
    right: 24px;
  }
}

.toast-icon {
  color: var(--emerald);
  flex-shrink: 0;
}

.toast-message {
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- FOOTER --- */
.footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-about h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-about-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--emerald);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

.footer-developer span {
  color: var(--primary);
  font-weight: 500;
}

/* --- CUSTOMER REVIEWS & TESTIMONIALS --- */
.reviews-summary-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

.reviews-summary-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
}

@media (max-width: 600px) {
  .reviews-summary-wrapper {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .reviews-summary-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
}

.summary-rating-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.summary-stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
}

.summary-stars svg {
  fill: currentColor;
}

.summary-stars svg.empty {
  fill: none;
  color: var(--text-muted);
}

.summary-rating-count {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 480px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card {
    padding: 20px;
  }
}

.review-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-user-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.review-user-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.review-stars-wrapper {
  color: var(--primary);
  display: flex;
  gap: 2px;
}

.review-stars-wrapper svg {
  fill: currentColor;
}

.review-stars-wrapper svg.empty {
  fill: none;
  color: var(--text-muted);
}

.review-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  align-self: flex-start;
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: right;
}

/* Star Rating Selector */
.interactive-stars {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 48px;
}

.review-star {
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.review-star:hover,
.review-star.hover,
.review-star.active {
  color: var(--primary);
}

.review-star svg {
  fill: none;
  stroke: currentColor;
  transition: fill var(--transition-fast);
}

.review-star.active svg,
.review-star.hover svg {
  fill: currentColor;
}

.write-review-container {
  padding: 40px;
}

@media (max-width: 480px) {
  .write-review-container {
    padding: 24px;
  }
}

/* --- FLOATING WHATSAPP BUTTON (MOBILE) --- */
.whatsapp-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .whatsapp-fab {
    display: flex;
  }
  /* Push toast above the FAB */
  .toast {
    bottom: 90px;
  }
}

/* --- ANIMATIONS (REVEAL ON SCROLL) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- VELVETEK LOGO --- */
.velvetek-logo {
  height: 20px;
}

/* Dark mode (default): show white-text dark logo, hide light logo */
.velvetek-logo-dark  { display: inline-block; height: 80px; }
.velvetek-logo-light { display: none; }

/* Light mode: show original logo, hide dark logo */
[data-theme="light"] .velvetek-logo-dark  { display: none; }
[data-theme="light"] .velvetek-logo-light { display: inline-block; }

/* --- GALLERY SECTION --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(3, 15, 10, 0.95) 0%, rgba(3, 15, 10, 0.45) 60%, transparent 100%);
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(15px);
  transition: all var(--transition-normal);
}

[data-theme="light"] .gallery-overlay {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.75) 60%, transparent 100%);
  color: var(--text-primary);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-category {
  display: inline-block;
  padding: 4px 10px;
  background: var(--emerald-glow);
  border: 1px solid var(--border-emerald-active);
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.gallery-overlay h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

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

/* Responsive Scaling for Header on Mid-size Screens */
@media (min-width: 993px) and (max-width: 1240px) {
  .nav {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.88rem;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .btn {
    padding: 10px 18px;
    font-size: 0.88rem;
  }
}
