﻿ 

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,600&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #1B2D6B;
  --primary-light: #2E55A8;
  --primary-dark: #0F1D4A;
  --accent: #4478C2;
  --accent-light: #6B9AD8;
  --gold: #2E55A8;
  --white: #FFFFFF;
  --off-white: #F5F7FB;
  --cream: #F8FAFD;
  --light-gray: #EEF2F8;
  --text-dark: #0E1A3E;
  --text-mid: #3D4F72;
  --text-light: #6278A0;
  --border: #D4DCF0;
  --shadow-sm: 0 2px 8px rgba(27, 45, 107, 0.08);
  --shadow-md: 0 8px 32px rgba(27, 45, 107, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 45, 107, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Raleway', sans-serif;
  --font-italic: 'Raleway', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary-dark);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  color: var(--text-mid);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 6rem 0;
}

.section-pad-sm {
  padding: 4rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 45, 107, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 45, 107, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

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

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

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =========================================
   NAVBAR — Floating Pill Design
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.9rem 0;
  background: rgba(15, 29, 74, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  transition: opacity 0.25s;
}

.logo:hover {
  opacity: 0.88;
}

.nav-logo-img {
  height: 110px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 0.5rem;
}

/* Pill nav container */
.nav-links {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  padding: 0.28rem;
  gap: 0.1rem;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.navbar.scrolled .nav-links {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-links a {
  padding: 0.48rem 1.1rem;
  border-radius: 50px;
  font-size: 0.855rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  font-weight: 600;
}

/* ─── Products Mega Dropdown ─── */
.nav-dropdown-wrap {
  position: relative;
}

.nav-has-dropdown {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

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

.nav-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 56px rgba(7,22,55,0.13), 0 0 0 1px rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.34,1.3,0.64,1);
  z-index: 500;
}

.nav-mega::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid rgba(0,0,0,0.06);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-radius: 2px 0 0 0;
}

.nav-dropdown-wrap:hover .nav-mega,
.nav-dropdown-wrap.open .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  padding: 0.75rem;
}

.mega-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.5rem 0.75rem;
  margin-bottom: 0.25rem;
}

.mega-hdr-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-light);
}

.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.18s;
}
.mega-all-link:hover { gap: 7px; }

.mega-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 0.25rem;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  transition: background 0.15s;
}

.mega-item:hover { background: var(--off-white); }
.mega-item:hover .mega-item-name { color: var(--primary); }
.mega-item:hover .mega-item-arrow { transform: translateX(3px); color: var(--primary); }

.mega-thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.07);
}

.mega-item-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1px;
  line-height: 1.2;
  transition: color 0.15s;
}

.mega-item-desc {
  font-size: 0.68rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.3;
}

.mega-item-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.18s, color 0.15s;
}

/* Mobile mega — inline expand */
@media (max-width: 768px) {
  .nav-mega {
    position: static;
    transform: none !important;
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, max-height 0.3s ease;
    pointer-events: none;
    margin-top: 6px;
  }
  .nav-mega::before { display: none; }
  .nav-dropdown-wrap.open .nav-mega {
    opacity: 1;
    max-height: 560px;
    pointer-events: auto;
  }
  .mega-hdr { border-bottom: none; }
  .mega-hdr-label, .mega-item-name { color: rgba(255,255,255,0.9) !important; }
  .mega-item-desc { color: rgba(255,255,255,0.45) !important; }
  .mega-all-link { color: #A8C4E8 !important; }
  .mega-item:hover { background: rgba(255,255,255,0.08); }
  .mega-item-arrow { color: rgba(255,255,255,0.35); }
  .mega-item:hover .mega-item-arrow { color: #A8C4E8; }
}

/* Nav right group */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
}

/* ── Button ── */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.38rem 0.75rem 0.38rem 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
  user-select: none;
  outline: none;
}

.lang-btn:hover,
.lang-switcher.open .lang-btn {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.lang-flag-btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lang-current {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  min-width: 18px;
}

.lang-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
}

.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* ── Dropdown panel ── */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  width: 230px;
  background: rgba(6, 16, 34, 0.98);
  backdrop-filter: blur(36px) saturate(180%);
  -webkit-backdrop-filter: blur(36px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0.5rem 0.5rem 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.96);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.26s cubic-bezier(0.34, 1.5, 0.64, 1), visibility 0.22s;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  z-index: 600;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lang-dropdown::-webkit-scrollbar {
  display: none;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Search bar */
.lang-search-wrap {
  padding: 0.45rem 0.45rem 0.4rem;
  position: relative;
  flex-shrink: 0;
}

.lang-search {
  width: 100%;
  padding: 0.5rem 0.8rem 0.5rem 2rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.lang-search::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.lang-search:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 168, 56, 0.4);
}

.lang-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

/* Scrollable list */
.lang-list {
  overflow-y: auto;
  max-height: 340px;
  scrollbar-width: none;
  padding: 0 0.1rem 0.1rem;
}

.lang-list::-webkit-scrollbar {
  display: none;
}


.lang-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.52rem 0.7rem;
  border-radius: 11px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.13s ease, color 0.13s ease, transform 0.15s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(3px);
}

.lang-option.active {
  background: rgba(232, 168, 56, 0.13);
  color: var(--accent-light);
  font-weight: 600;
}

.lang-option.hidden {
  display: none;
}

.lang-flag {
  width: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-country {
  flex: 1;
  font-size: 0.84rem;
}

/* Real flag images (flagcdn.com) */
.lang-flag-img {
  display: block;
  width: 22px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Slightly smaller in the button pill */
.lang-flag-btn .lang-flag-img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.lang-check {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.lang-option.active .lang-check {
  opacity: 1;
}

/* No results */
.lang-no-results {
  padding: 1rem 0.7rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
  display: none;
}

/* Translating overlay spinner */
.translate-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.translate-loading.show {
  opacity: 1;
  pointer-events: auto;
}

.translate-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(10, 22, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.spinner-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.translate-spinner p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  margin: 0;
}

/* Suppress Google's injected toolbar */
.goog-te-banner-frame,
iframe.goog-te-menu-frame {
  display: none !important;
}

.skiptranslate>font,
.skiptranslate {
  font-size: 0 !important;
}

body {
  top: 0 !important;
  position: static !important;
}

#google_translate_element {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  transform-origin: center;
}

/* =========================================
   HERO — HOME (Image Slider)
   ========================================= */
.hero {
  min-height: 100vh;
  background: var(--primary-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

/* Cinematic dual overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
      rgba(6, 16, 35, 0.88) 0%,
      rgba(6, 16, 35, 0.55) 50%,
      rgba(6, 16, 35, 0.22) 100%);
}

.hero-slide-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 35, 0.72) 0%, transparent 38%);
}

/* Slider UI — centered numbered tabs */
.hero-slider-ui {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 3;
}

.slider-tabs {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.stab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.stab-num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.35s;
}

.stab.active .stab-num {
  color: var(--accent);
}

.stab-bar {
  display: block;
  width: 48px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.spl-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
}

.stab.done .stab-num {
  color: rgba(255, 255, 255, 0.45);
}

/* Hero content left-shift */
.hero-container {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 5vw;
  padding-right: 3vw;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 0 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 168, 56, 0.15);
  border: 1px solid rgba(232, 168, 56, 0.4);
  color: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  color: var(--white);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--primary-dark);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* =========================================
   WELCOME / ABOUT INTRO
   ========================================= */
.welcome-section {
  background: var(--cream);
}

.welcome-text .section-subtitle {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.feature-chip svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.welcome-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.welcome-image-wrap .img-placeholder {
  aspect-ratio: 4/5;
}

.experience-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.exp-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.exp-text strong {
  display: block;
  font-size: 1.3rem;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}

.exp-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-section {
  background: var(--white);
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(27, 45, 107, 0.08), rgba(46, 85, 168, 0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.why-card:hover .why-icon svg {
  color: var(--white);
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =========================================
   FEATURED PRODUCTS
   ========================================= */
.products-section {
  background: var(--off-white);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-img-wrap .img-placeholder {
  aspect-ratio: 1;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 79, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn {
  transform: translateY(10px);
  transition: var(--transition) 0.05s;
}

.product-card:hover .product-overlay .btn {
  transform: translateY(0);
}

.product-info {
  padding: 1.25rem;
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}

.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #2D7D46;
  font-weight: 600;
}

.eco-badge svg {
  width: 14px;
  height: 14px;
}

/* =========================================
   IMAGE PLACEHOLDERS (SVG illustrations)
   ========================================= */
.img-placeholder {
  background: linear-gradient(135deg, #EBF0F7 0%, #D6E2F0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--primary);
}

.img-placeholder svg {
  opacity: 0.35;
}

.img-placeholder .img-label {
  font-size: 0.8rem;
  color: var(--primary);
  opacity: 0.5;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Product-specific placeholder colors */
.ph-wood {
  background: linear-gradient(135deg, #F5ECD7, #E8D5B0);
}

.ph-metal {
  background: linear-gradient(135deg, #E8ECF0, #C8D0DC);
}

.ph-textile {
  background: linear-gradient(135deg, #F0E8F0, #D8C0D8);
}

.ph-ceramic {
  background: linear-gradient(135deg, #F0EBE3, #DDD0C0);
}

.ph-eco {
  background: linear-gradient(135deg, #E8F0E8, #C0D8C0);
}

.ph-hero {
  background: linear-gradient(135deg, #0F1D4A, #2E55A8);
}

.ph-about {
  background: linear-gradient(135deg, #EBF0F7, #C8DCF0);
}

/* =========================================
   EXPORT JOURNEY / PROCESS
   ========================================= */
.process-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 1rem;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent), var(--primary-light));
  opacity: 0.4;
  z-index: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(232, 168, 56, 0.25);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.process-step h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
  background: var(--cream);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}

.quote-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.quote-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.testimonial-text {
  font-family: var(--font-italic);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-info strong {
  font-size: 0.9rem;
  display: block;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

/* =========================================
   CERTIFICATIONS / CLIENTS BAR
   ========================================= */
.certs-section {
  background: var(--white);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.certs-title {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.certs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.6rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
}

.cert-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cert-badge svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 50px solid rgba(27, 45, 107, 0.05);
}

.cta-section::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 60px solid rgba(27, 45, 107, 0.05);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: var(--text-mid);
  max-width: 480px;
}

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

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

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

.breadcrumb svg {
  width: 14px;
  height: 14px;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.story-section {
  background: var(--white);
}

.story-section .grid-2 {
  gap: 4rem;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.story-image .img-placeholder {
  aspect-ratio: 3/4;
}

.story-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 50%;
  opacity: 0.15;
}

.values-section {
  background: var(--off-white);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(27, 45, 107, 0.1), rgba(46, 85, 168, 0.15));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
}

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

.team-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-img-wrap .img-placeholder {
  aspect-ratio: 16/9;
  min-height: 400px;
}

.milestones {
  margin-top: 2.5rem;
}

.milestone {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.milestone:last-child {
  border-bottom: none;
}

.milestone-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 70px;
  flex-shrink: 0;
}

.milestone-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.milestone-content p {
  font-size: 0.85rem;
}

/* =========================================
   PRODUCTS PAGE
   ========================================= */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.cat-tab {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.cat-tab:hover,
.cat-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cat-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.cat-section-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.cat-section-header p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.product-detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.product-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-detail-card .img-placeholder {
  aspect-ratio: 4/3;
}

.product-detail-body {
  padding: 1.5rem;
}

.product-detail-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.product-detail-body p {
  font-size: 0.86rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spec-tag {
  font-size: 0.74rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  background: var(--light-gray);
  color: var(--text-mid);
  font-weight: 500;
}

.spec-tag.green {
  background: rgba(45, 125, 70, 0.1);
  color: #2D7D46;
}

.features-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.88rem;
}

.features-table th {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.features-table th:first-child {
  border-radius: 8px 0 0 0;
}

.features-table th:last-child {
  border-radius: 0 8px 0 0;
}

.features-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}

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

.features-table tr:nth-child(even) td {
  background: var(--off-white);
}

.features-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.check {
  color: #2D7D46;
  font-weight: 700;
}

/* =========================================
   GALLERY PAGE
   ========================================= */
.gallery-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gallery-hdr .section-title { margin: 0.4rem 0 0; }

.gallery-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.gf-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.46rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
}

.gf-tab:hover { border-color: var(--primary); color: var(--primary); }

.gf-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gf-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 16px;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 10px;
  padding: 0 5px;
  background: rgba(255,255,255,0.22);
  line-height: 1;
}

.gf-tab:not(.active) .gf-count {
  background: rgba(0,0,0,0.07);
  color: var(--text-light);
}

/* ── Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 28px 72px rgba(0,0,0,0.25);
  z-index: 2;
}

/* ── Card layers ── */
.gi-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gi-bg--navy   { background: linear-gradient(145deg, #091828 0%, #1A3A6B 100%); }
.gi-bg--brown  { background: linear-gradient(145deg, #4A2208 0%, #8C4E1A 100%); }
.gi-bg--steel  { background: linear-gradient(145deg, #16222E 0%, #2E4A65 100%); }
.gi-bg--terra  { background: linear-gradient(145deg, #5A2012 0%, #A84028 100%); }
.gi-bg--forest { background: linear-gradient(145deg, #0E2A1C 0%, #1E6040 100%); }
.gi-bg--plum   { background: linear-gradient(145deg, #2E1240 0%, #6B3070 100%); }
.gi-bg--slate  { background: linear-gradient(145deg, #1C2535 0%, #344E6A 100%); }

.gi-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.32;
  transition: opacity 0.4s;
}

.gallery-item:hover .gi-dots { opacity: 0.12; }

/* Real photo support */
.gi-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.34, 1.1, 0.64, 1);
}

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

.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

/* Category badge */
.gi-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 4px 12px;
}

/* Bottom info */
.gi-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 55%, transparent 100%);
  padding: 26px 16px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.gi-sub {
  font-size: 9.5px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 5px;
  line-height: 1;
}

.gi-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

/* Expand button */
.gi-zoom {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.6) translateY(8px);
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.34, 1.5, 0.64, 1), background 0.2s;
  cursor: pointer;
}

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

.gi-zoom:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
}

.contact-info {}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(27, 45, 107, 0.08), rgba(46, 85, 168, 0.12));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  white-space: nowrap;
}

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

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-mid);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link.whatsapp:hover {
  border-color: #25D366;
  background: #25D366;
}

.social-link.instagram:hover {
  border-color: #E4405F;
  background: #E4405F;
}

.social-link.linkedin:hover {
  border-color: #0A66C2;
  background: #0A66C2;
}

.map-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  margin-top: 2rem;
  overflow: hidden;
  color: var(--text-light);
  font-size: 0.9rem;
  gap: 0.5rem;
}

.map-placeholder svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 45, 107, 0.1);
}

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

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* =========================================
   PRODUCTS OVERVIEW — Category Cards
   ========================================= */
.cat-ov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-ov-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.35s ease;
}

.cat-ov-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
}

.cat-ov-visual {
  height: 150px;
  position: relative;
  overflow: hidden;
}

.cat-ov-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.28;
  transition: opacity 0.3s;
}

.cat-ov-card:hover .cat-ov-dots { opacity: 0.14; }

.cat-ov-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.cat-ov-card:hover .cat-ov-img { transform: scale(1.06); }

.cov-wood    { background: linear-gradient(145deg, #4A2208, #8C4E1A); }
.cov-metal   { background: linear-gradient(145deg, #16222E, #2E4A65); }
.cov-textile { background: linear-gradient(145deg, #2E1240, #6B3070); }
.cov-ceramic { background: linear-gradient(145deg, #5A2012, #A84028); }
.cov-eco     { background: linear-gradient(145deg, #0E2A1C, #1E6040); }
.cov-misc    { background: linear-gradient(145deg, #091828, #1A3A6B); }

.cat-ov-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-ov-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 7px;
}

.cat-ov-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}

.cat-ov-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.cat-ov-count {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.cat-ov-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}

.cat-ov-card:hover .cat-ov-link { gap: 9px; }

@media (max-width: 768px) {
  .cat-ov-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cat-ov-grid { grid-template-columns: 1fr; }
}

/* =========================================
   PRODUCTS DETAIL — Category Nav Tabs
   ========================================= */
.cat-pg-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cat-pg-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-pg-tabs::-webkit-scrollbar { display: none; }

.cat-pg-tab {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.cat-pg-tab:hover { color: var(--primary); }

.cat-pg-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* =========================================
   FOOTER  — Creative Minimal Redesign
   ========================================= */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* ── Watermark ── */
.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(70px, 14vw, 200px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.022);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .footer-watermark {
    display: none;
  }
}

/* ── Stats Strip ── */
.footer-stats {
  position: relative;
  z-index: 1;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
}

.footer-stat {
  text-align: center;
  flex: 1;
  position: relative;
}

.footer-stat+.footer-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.35rem;
}

/* ── Main Body ── */
.footer-body {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3.5rem;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

/* Brand column */
.footer-brand-col {}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  display: block;
}

.footer-brand-name em {
  font-style: normal;
  color: var(--accent);
}

.footer-brand-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.3rem;
}

.footer-accent-bar {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 1.25rem 0;
}

.footer-tagline {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 280px;
}

.footer-email-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  margin-bottom: 1.75rem;
}

.footer-email-cta svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-email-cta:hover {
  color: var(--accent-light);
}

/* Social row */
.footer-social-row {
  display: flex;
  gap: 0.55rem;
}

.footer-soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-soc-btn svg {
  width: 15px;
  height: 15px;
}

.footer-soc-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(232, 168, 56, 0.3);
}

/* Nav columns */
.footer-nav-col {}

.footer-col-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-col-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.38rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease, gap 0.2s ease;
  position: relative;
  overflow: hidden;
}

.footer-nav-list a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.footer-nav-list a:hover {
  color: var(--white);
  gap: 0.75rem;
}

.footer-nav-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact column */
.footer-contact-col {}

.footer-contact-list {
  margin-bottom: 1.5rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-row:last-child {
  border-bottom: none;
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  background: rgba(232, 168, 56, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-icon svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
}

.footer-contact-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  white-space: nowrap;
}

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

/* Cert badges */
.footer-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.footer-cert-badge {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* ── Bottom Bar ── */
.footer-bottom-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 0;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.footer-globe-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.footer-globe-badge svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.15);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
  white-space: nowrap;
}

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

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
  transition-delay: 0.5s;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .process-track {
    flex-direction: column;
    gap: 2rem;
  }

  .process-track::before {
    display: none;
  }

  .gallery-hdr { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-stat {
    min-width: 40%;
  }

  .footer-stat+.footer-stat::before {
    display: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-globe-badge {
    display: none;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Mobile nav pill → stacked drawer */
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    background: rgba(8, 20, 40, 0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    padding: 0.6rem;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    gap: 0.15rem;
    /* animate in */
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none;
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .navbar.scrolled .nav-links {
    background: rgba(8, 20, 40, 0.97);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.72) !important;
    padding: 0.72rem 1.1rem;
    width: 100%;
    border-radius: 11px;
    font-size: 0.9rem;
    background: transparent !important;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    color: var(--white) !important;
  }

  .nav-links a.active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    font-weight: 600;
  }

  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Lang dropdown on mobile */
  .lang-dropdown {
    right: 0;
    left: auto;
    width: 220px;
  }

  .lang-list {
    max-height: 280px;
  }

  .welcome-features {
    grid-template-columns: 1fr;
  }

  .contact-detail-text span,
  .contact-detail-text a {
    white-space: normal;
    word-break: break-word;
  }

  .footer-contact-text a {
    white-space: normal;
    word-break: break-word;
  }

  .page-hero {
    padding: 5.5rem 0 2.5rem;
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding: 4rem 0;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}