/* ============================================================
   VELNEX GLOBAL — Main Stylesheet
   Premium Export Website | Construction Chemicals
   ============================================================ */

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

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a1628;
  --navy-light: #0f2040;
  --navy-mid: #1a3357;
  --gold: #c9a84c;
  --gold-light: #dfc07a;
  --gold-dark: #a6883a;
  --gold-bg: rgba(201, 168, 76, 0.10);
  --white: #ffffff;
  --body-bg: #eef2f9;
  --off-white: #f7f3ea;
  --light-gray: #e8ecf2;
  --text-dark: #0f1923;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e2e6ee;
  --border-light: #f0f3f7;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 24px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.16);
  --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.22);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast: all 0.15s ease;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --container: 1200px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #060e1a;
  overscroll-behavior: none;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--body-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

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

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 48px;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}

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

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

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

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.3);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1rem;
  border-radius: 10px;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: -4px;
  text-decoration: none;
}

.logo-icon {
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.logo-icon-letter {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  justify-content: center;
}

.logo-text .logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-text .logo-velnex {
  color: var(--navy) !important;
}

.logo-text .logo-global {
  color: var(--gold) !important;
}

.logo-text .logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-top: 1px;
  white-space: nowrap;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
  white-space: nowrap;
}

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

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

/* ===== DROPDOWN MEGA-MENU — PREMIUM ===== */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  /* tiny 2px gap, not 14px */
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.97);
  width: 480px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 16px;
  box-shadow:
    0 32px 80px rgba(10, 22, 40, 0.22),
    0 8px 28px rgba(10, 22, 40, 0.10),
    0 0 0 1px rgba(201, 168, 76, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.4, 0, .2, 1),
    transform 0.25s cubic-bezier(.4, 0, .2, 1);
  z-index: 200;
  overflow: hidden;
}

/* ── Hover gap bridge: invisible pseudo fills the 2px gap ── */
.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 18px;
  /* covers the gap + a little extra */
  background: transparent;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* ── Arrow (matches gradient header start colour) ── */
.nav-dropdown-arrow {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 13px;
  height: 13px;
  background: #0b1b31;
  /* matches header gradient start */
  transform: translateX(-50%) rotate(45deg);
  z-index: 3;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}

/* ── Header ── */
.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 13px;
  background: linear-gradient(135deg, #0b1b31 0%, #1a3a6e 100%);
  position: relative;
  z-index: 2;
}

/* Gold shimmer line beneath header */
.dropdown-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
  opacity: 0.7;
}

.dropdown-header-label-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-header-icon {
  width: 22px;
  height: 22px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
}

.dropdown-header-title {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
}

.dropdown-view-all {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  padding: 5px 10px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.08);
}

.dropdown-view-all i {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
}

.dropdown-view-all:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.dropdown-view-all:hover i {
  transform: translateX(3px);
}

/* ── Grid ── */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 14px 12px 12px;
  background: #f7f8fa;
  align-items: stretch;
}

/* ── Each Item ── */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 13px;
  border-radius: 11px;
  background: var(--white);
  border: 1.5px solid #eef0f4;
  transition: all 0.22s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Subtle left-border accent on hover preview */
.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #0d2045 0%, #1a3a6e 100%);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2), 0 2px 8px rgba(10, 22, 40, 0.1);
}

.dropdown-item:hover::before {
  opacity: 1;
}

/* Keep arrow indicator */
.dropdown-item::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  color: rgba(0, 0, 0, 0.12);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
}

.dropdown-item:hover::after {
  color: rgba(201, 168, 76, 0.5);
  right: 10px;
}

/* ── Icon box ── */
.di-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.14) 0%, rgba(201, 168, 76, 0.06) 100%);
  border: 1.5px solid rgba(201, 168, 76, 0.28);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #9a7530;
  flex-shrink: 0;
  transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.08);
}

.dropdown-item:hover .di-icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.25) 0%, rgba(201, 168, 76, 0.12) 100%);
  border-color: rgba(201, 168, 76, 0.55);
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
}

/* ── Text ── */
.di-text {
  min-width: 0;
  flex: 1;
}

.di-name {
  font-size: 0.83rem;
  font-weight: 700;
  color: #1a2535;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.di-desc {
  font-size: 0.67rem;
  color: #8a95a5;
  margin-top: 3px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.dropdown-item:hover .di-name {
  color: #ffffff;
}

.dropdown-item:hover .di-desc {
  color: rgba(255, 255, 255, 0.5);
}

/* ── Bottom Footer Bar ── */
.dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: linear-gradient(135deg, #0b1b31 0%, #1a3a6e 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.dropdown-footer-text {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}

.dropdown-footer-text strong {
  color: var(--gold);
  font-weight: 700;
}

.dropdown-footer-cta {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 8px 24px 24px;
  z-index: 999;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  animation: slideDown 0.25s ease;
}

.mobile-nav-brand {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.mobile-nav-brand img {
  max-height: 46px;
  object-fit: contain;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-subdropdown {
  padding: 0 0 8px 8px;
  display: none;
}

.mobile-subdropdown.open {
  display: block;
}

.mobile-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}

.mobile-sub-item:last-child {
  border: none;
}

.mobile-sub-item .di-icon {
  width: 30px;
  height: 30px;
  font-size: 0.82rem;
  background: var(--gold-bg);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  color: var(--gold-dark);
}

.mobile-cta {
  padding: 16px 0 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.28;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg,
      rgba(10, 22, 40, 0.97) 0%,
      rgba(10, 22, 40, 0.80) 45%,
      rgba(26, 51, 87, 0.55) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.30);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--gold);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hs-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hs-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Hero side card */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.hero-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-cat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: var(--trans-fast);
  text-decoration: none;
}

.hero-cat-item:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.25);
}

.hci-icon {
  font-size: 1.2rem;
  width: 32px;
  text-align: center;
}

.hci-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.hci-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  transition: var(--trans-fast);
}

.hero-cat-item:hover .hci-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.scroll-wheel {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  position: relative;
}

.scroll-wheel::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: wheelSpin 2s ease-in-out infinite;
}

@keyframes wheelSpin {
  0% {
    top: 5px;
    opacity: 1;
  }

  100% {
    top: 16px;
    opacity: 0;
  }
}

/* ===== ABOUT TEASER ===== */
.about-teaser {
  background: var(--off-white);
}

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

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.03);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.aib-big {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.aib-small {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.about-content {}

.about-stats {
  display: flex;
  gap: 16px;
  margin: 32px 0;
}

.about-stat {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.as-num {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
}

.as-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== CATEGORIES ===== */
.categories-section {
  background: var(--body-bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 0;
}

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

.category-card:hover::after {
  opacity: 1;
}

.category-card:hover .cc-icon {
  background: rgba(201, 168, 76, 0.18);
}

.category-card:hover .cc-name {
  color: var(--white);
}

.category-card:hover .cc-desc {
  color: rgba(255, 255, 255, 0.6);
}

.category-card:hover .cc-link {
  color: var(--gold);
}

.cc-icon {
  width: 76px;
  height: 76px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 22px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.cc-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.cc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.cc-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

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

.why-section .section-label {
  color: var(--gold-light);
}

.why-section .section-label::before {
  background: var(--gold-light);
}

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

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-6px);
}

.why-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
}

.why-num {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.why-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

/* ===== PROCESS ===== */
.process-section {
  background: var(--off-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 47px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, var(--border) 100%);
}

.process-step {
  text-align: center;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 96px;
  height: 96px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step:hover .step-circle {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.08);
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1c3a70 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===== FOOTER ===== */
footer {
  background: radial-gradient(circle at 50% 0%, #0d1e38 0%, #060e1a 100%);
  padding: 76px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-brand img {
  max-width: 240px !important;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

.footer-logo-brand:hover img {
  opacity: 0.85;
}

.footer-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.3);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--trans-fast);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.fci-icon {
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.fci-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-bottom a {
  color: var(--gold);
  transition: var(--trans-fast);
}

.footer-bottom a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPing 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes waPing {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

.reveal-d5 {
  transition-delay: 0.5s;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--navy);
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.10;
}

.page-banner-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  opacity: 0.3;
}

.page-banner h1 {
  color: var(--white);
}

.page-banner .sub {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
  font-size: 1rem;
  max-width: 540px;
}

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

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 36px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  transition: var(--trans-fast);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-bg);
}

.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.filter-btn.active:hover {
  background: var(--navy-light);
}

.filter-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.filter-btn.active .filter-dot {
  background: var(--gold);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

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

.product-card.hidden {
  display: none;
}

.product-card.animating {
  animation: fadeIn 0.35s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pc-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pc-image img {
  mix-blend-mode: multiply;
}

.pc-image-icon {
  font-size: 4rem;
}

.pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.pc-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pc-code {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.pc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.pc-desc {
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.pc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--off-white);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.btn-inquire {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  transition: var(--trans-fast);
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
}

.btn-inquire:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ===== ABOUT PAGE ===== */
.about-story {
  background: var(--body-bg);
}

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

.about-story-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

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

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.mc-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: var(--gold);
}

.mission-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.mission-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.values-section {
  background: var(--body-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.vi-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--gold);
  background: var(--gold-bg);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: var(--transition);
}

.value-item:hover .vi-icon {
  background: var(--navy);
  color: var(--gold-light);
  transform: scale(1.1);
}

.vi-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.vi-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

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

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
  height: fit-content;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.contact-info-card>p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  font-size: 0.85rem;
}

.ci-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.ci-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.ci-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}

.ci-val {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}

.wa-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 28px;
  transition: var(--transition);
  text-decoration: none;
}

.wa-cta:hover {
  background: #20a857;
  transform: translateY(-2px);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-card>p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.req {
  color: var(--gold-dark);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--trans-fast);
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.10);
}

.form-control::placeholder {
  color: var(--text-light);
}

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

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(37, 211, 102, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.form-success h4 {
  color: #1a7a40;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

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

  .about-story-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid .about-img-wrap {
    order: -1;
  }

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

  .contact-grid .contact-form-card {
    order: 1;
  }

  .contact-grid .contact-info-card {
    order: 2;
  }

  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-stats {
    flex-wrap: wrap;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img-wrap img,
  .about-story-img img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  /* Hero Section Mobile Polish */
  .hero {
    min-height: auto;
    padding: 110px 0 60px;
  }

  .hero-grid {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero-badge {
    margin: 0 auto 20px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    font-size: 0.95rem;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    margin-bottom: 40px;
    gap: 12px;
  }

  .hero-actions .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    width: 220px;
    justify-content: center;
  }

  .hero-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }

  .hero-stats > div {
    text-align: center;
    flex: 1;
    min-width: 0;
  }

  .hero-stats .hs-num {
    font-size: 1.45rem;
  }

  .hero-stats .hs-lbl {
    font-size: 0.65rem;
    line-height: 1.25;
    white-space: normal;
  }

  .section {
    padding: 64px 0;
  }

  .main-nav,
  .header-right .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    margin-left: 0;
    gap: 8px;
  }

  .logo-icon {
    height: 46px;
  }

  .logo-text .logo-name {
    font-size: 1.2rem;
  }

  .logo-text .logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    margin-top: 1px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
    width: 100%;
  }

  .footer-socials {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .footer-col {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .footer-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer-col h4 {
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
  }

  .footer-col h4::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    position: static;
    width: auto;
    height: auto;
    background: none;
    border: none;
  }

  .footer-col.active h4::after {
    transform: rotate(180deg);
  }

  .footer-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }

  .footer-col.active .footer-links {
    max-height: 220px;
    opacity: 1;
    margin-top: 16px;
  }

  .footer-col .footer-contact-item {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    margin-bottom: 0;
  }

  .footer-col.active .footer-contact-item {
    max-height: 80px;
    opacity: 1;
    margin-bottom: 16px;
  }

  .footer-col.active .footer-contact-item:last-child {
    margin-bottom: 0;
  }

  .footer-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 0.62rem;
    gap: 8px;
  }

  .footer-bottom span {
    white-space: nowrap;
  }

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

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

  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-info-card {
    padding: 24px;
  }
}

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

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

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

  .about-stats {
    flex-wrap: wrap;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 220px;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .footer-bottom {
    font-size: 0.54rem;
    gap: 4px;
  }

  .logo {
    gap: 8px;
  }

  .logo-icon {
    height: 40px;
  }

  .logo-text .logo-name {
    font-size: 1.05rem;
  }

  .logo-text .logo-tagline {
    font-size: 0.52rem;
    letter-spacing: 0.15em;
  }

  .hamburger {
    padding: 6px;
  }
}


/* ===== GLOBAL LOADER ===== */
.global-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.global-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
  margin-bottom: 20px;
}

.loader-text {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  animation: pulse 1.5s infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}