/* ============================================================
   IceGearPro.com — Premium Ice Fishing Equipment Store
   Main Stylesheet
   ============================================================ */

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

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --navy-deep:    #070e1c;
  --navy-dark:    #0a1628;
  --navy-mid:     #0f2040;
  --navy-light:   #1a3a6e;
  --ice-blue:     #7ec8e3;
  --ice-bright:   #b8e4f7;
  --ice-pale:     #e8f7fd;
  --gold:         #e8c44a;
  --gold-light:   #f5d78a;
  --white:        #ffffff;
  --off-white:    #f4f8fc;
  --gray-100:     #eef2f7;
  --gray-300:     #c5d1de;
  --gray-500:     #7a8fa6;
  --gray-700:     #3a4a5c;
  --text-primary: #0a1628;
  --text-light:   #7a8fa6;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --shadow-sm:    0 2px 12px rgba(10,22,40,0.08);
  --shadow-md:    0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg:    0 20px 60px rgba(10,22,40,0.20);
  --shadow-glow:  0 0 40px rgba(126,200,227,0.18);
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', 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-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { line-height: 1.75; color: var(--gray-700); }
.lead { font-size: 1.15rem; color: var(--gray-500); }

/* ── Layout Helpers ─────────────────────────────────────────── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--gray {
  background: var(--off-white);
}
.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}
.section--dark p { color: var(--ice-bright); }
.section--dark h2 { color: var(--white); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* ── Section Labels ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice-blue);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  margin-bottom: 20px;
  color: var(--navy-dark);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 52px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,196,74,0.40);
}
.btn--outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--ice-blue);
  color: var(--ice-blue);
  transform: translateY(-2px);
}
.btn--outline-dark {
  border: 2px solid var(--navy-light);
  color: var(--navy-dark);
}
.btn--outline-dark:hover {
  border-color: var(--navy-dark);
  background: var(--navy-dark);
  color: var(--white);
}
.btn--lg {
  padding: 18px 42px;
  font-size: 1rem;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(7,14,28,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
#navbar:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(7,14,28,0.85), transparent);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-logo-icon {
  width: 38px;
  height: 38px;
}
.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.navbar-logo-text span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ice-blue);
  background: rgba(126,200,227,0.1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 9px 20px !important;
  font-weight: 700 !important;
  border-radius: var(--radius-md) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,196,74,0.35) !important;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── COOKIE BANNER ───────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7,14,28,0.97);
  backdrop-filter: blur(12px);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 2000;
  border-top: 1px solid rgba(126,200,227,0.2);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
#cookie-banner.visible {
  transform: translateY(0);
}
.cookie-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  flex: 1;
}
.cookie-text a {
  color: var(--ice-blue);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-decline {
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(7,14,28,0.80) 0%,
    rgba(10,22,40,0.65) 50%,
    rgba(26,58,110,0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(126,200,227,0.15);
  border: 1px solid rgba(126,200,227,0.3);
  color: var(--ice-bright);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title span {
  color: var(--gold);
  position: relative;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  cursor: pointer;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
#trust-bar {
  background: var(--navy-dark);
  padding: 28px 0;
  border-top: 1px solid rgba(126,200,227,0.12);
  border-bottom: 1px solid rgba(126,200,227,0.12);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.trust-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(126,200,227,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--ice-blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.2;
}
.trust-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* ── CATEGORIES ──────────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
  cursor: pointer;
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.category-card:hover .category-card-img {
  transform: scale(1.07);
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,14,28,0.90) 30%, rgba(7,14,28,0.15) 100%);
  transition: var(--transition);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.95) 30%, rgba(10,22,40,0.25) 100%);
}
.category-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}
.category-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(126,200,227,0.15);
  border: 1px solid rgba(126,200,227,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.category-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.category-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.category-card-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.category-card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}
.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translateY(0);
}
.category-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--navy-deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ── FEATURED PRODUCTS ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--ice-blue);
}
.product-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--off-white);
  overflow: hidden;
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card-img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-badge--new { background: var(--gold); color: var(--navy-deep); }
.product-badge--best { background: var(--navy-dark); color: var(--ice-blue); border: 1px solid rgba(126,200,227,0.3); }
.product-badge--sale { background: #e84a4a; color: white; }
.product-card-body {
  padding: 22px;
}
.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ice-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: var(--font-display);
}
.product-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.55;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-dark);
}
.product-price-old {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--gray-300);
  margin-left: 6px;
}
.product-stars {
  display: flex;
  gap: 2px;
}
.product-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* ── WHY US SECTION ──────────────────────────────────────────── */
#why-us {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(126,200,227,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-us-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.why-us-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(7,14,28,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(126,200,227,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-us-badge-icon {
  font-size: 2rem;
}
.why-us-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 800;
}
.why-us-badge-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.why-us-features {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}
.why-us-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-us-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(126,200,227,0.1);
  border: 1px solid rgba(126,200,227,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-us-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.why-us-feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.why-us-feature-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── LIFESTYLE GALLERY ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--1 { grid-column: 1 / 7; grid-row: 1 / 3; aspect-ratio: unset; height: 420px; }
.gallery-item--2 { grid-column: 7 / 13; grid-row: 1 / 2; height: 200px; }
.gallery-item--3 { grid-column: 7 / 10; grid-row: 2 / 3; height: 206px; }
.gallery-item--4 { grid-column: 10 / 13; grid-row: 2 / 3; height: 206px; }
.gallery-item--5 { grid-column: 1 / 5; height: 220px; }
.gallery-item--6 { grid-column: 5 / 9; height: 220px; }
.gallery-item--7 { grid-column: 9 / 13; height: 220px; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ice-blue);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--ice-pale);
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ice-blue);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-dark);
}
.testimonial-location {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ── BRANDS STRIP ────────────────────────────────────────────── */
#brands {
  padding: 52px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.brands-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 28px;
}
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.brand-name:hover { color: var(--navy-dark); }

/* ── CTA SECTION ─────────────────────────────────────────────── */
#cta-section {
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/aerial-lake.jpg');
  background-size: cover;
  background-position: center;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,14,28,0.90) 0%, rgba(26,58,110,0.80) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 18px;
}
.cta-content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 38px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────────────────────────*/
#footer {
  background: var(--navy-deep);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand-logo img {
  width: 36px;
  height: 36px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand-name span { color: var(--gold); }
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--ice-blue);
  border-color: var(--ice-blue);
}
.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.footer-social a:hover svg { stroke: var(--navy-deep); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--ice-blue); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--ice-blue); }

/* ── INNER PAGES ─────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-dark);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(126,200,227,0.07) 0%, transparent 70%);
}
.page-hero-label {
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.breadcrumb a:hover { color: var(--ice-blue); }
.breadcrumb-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.65rem;
}
.breadcrumb-current { color: rgba(255,255,255,0.7); }

/* ── PRODUCTS PAGE ───────────────────────────────────────────── */
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}
.filter-btn {
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-body {
  padding: 22px 24px;
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.team-card-role {
  font-size: 0.82rem;
  color: var(--ice-blue);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.team-card-bio {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats-strip-item {
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  text-align: center;
}
.stats-strip-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stats-strip-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-dark);
  transition: var(--transition);
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--ice-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(126,200,227,0.15);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-info-block {
  margin-bottom: 30px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--ice-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.contact-info-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.4;
}
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-map-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.5);
}
.contact-map-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--ice-blue);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 10px;
}
.contact-map-placeholder p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin: 42px 0 12px;
}
.legal-content h3 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin: 26px 0 8px;
}
.legal-content p {
  margin-bottom: 14px;
  color: var(--gray-700);
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--gray-700);
}
.legal-content ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.legal-update {
  font-size: 0.82rem;
  color: var(--gray-300);
  margin-bottom: 36px;
}
.legal-toc {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
  border-left: 3px solid var(--ice-blue);
}
.legal-toc-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: decimal;
  padding-left: 18px;
  color: var(--navy-light);
}
.legal-toc ol li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.legal-toc ol li a {
  color: var(--navy-light);
  transition: var(--transition);
}
.legal-toc ol li a:hover { color: var(--ice-blue); }

/* ── SUCCESS / ERROR MESSAGE ─────────────────────────────────── */
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 14px;
  display: none;
}
.form-message.success {
  background: #e8fdf3;
  border: 1px solid #50c878;
  color: #1a6b3a;
  display: block;
}
.form-message.error {
  background: #fde8e8;
  border: 1px solid #e84a4a;
  color: #8b1a1a;
  display: block;
}

/* ── SCROLL TOP ──────────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--navy-dark);
  border-radius: 50%;
  border: 1px solid rgba(126,200,227,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#scroll-top:hover {
  background: var(--ice-blue);
  transform: translateY(-3px);
}
#scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

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

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: rgba(7,14,28,0.98); padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .navbar-toggle { display: flex; }
  .navbar-inner { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .products-full-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--1, .gallery-item--2, .gallery-item--3, .gallery-item--4, .gallery-item--5, .gallery-item--6, .gallery-item--7 { grid-column: auto; grid-row: auto; height: 200px; }
  .trust-bar-inner { gap: 16px; justify-content: flex-start; }
  .trust-divider { display: none; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .brands-row { gap: 24px; }
  h1 { font-size: 2rem; }
}
