/* ============================================================
   JAINCO VENTURES — Design System
   Brand: Navy #0D2B6E | Green #0E6B3C | Gold #E8A020
   Font: Montserrat (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@1,500&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy: #0D2B6E;
  --navy-light: #1A3D8F;
  --navy-dark: #071A4A;
  --green: #0E6B3C;
  --green-light: #12884D;
  --green-dark: #095230;
  --gold: #E8A020;
  --gold-light: #F5B93A;
  --gold-dark: #C08010;

  /* Neutrals */
  --bg: #F0F4F8;
  --bg-alt: #E8EDF4;
  --surface: #FFFFFF;
  --border: #D4DDE8;
  --text-dark: #1A1A2E;
  --text-body: #2D3748;
  --text-muted: #5A6A7A;
  --text-light: #8899AA;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #C8D9F7 0%, #E8F0FD 30%, #F5F9FF 60%, #D9EFE4 100%);
  --grad-cta: linear-gradient(135deg, #E8A020 0%, #F5B93A 100%);
  --grad-green: linear-gradient(135deg, #0E6B3C 0%, #12884D 100%);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13, 43, 110, 0.08);
  --shadow-md: 0 4px 20px rgba(13, 43, 110, 0.12);
  --shadow-lg: 0 8px 40px rgba(13, 43, 110, 0.16);
  --shadow-card: 0 2px 12px rgba(13, 43, 110, 0.08), 0 0 0 1px rgba(13, 43, 110, 0.04);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.25s;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.font-display {
  font-family: 'Montserrat', sans-serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

.font-accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--text-body);
  line-height: 1.7;
}

/* ─── LAYOUT UTILS ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--white {
  background: var(--surface);
}

.section--dark {
  background: var(--navy);
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(14, 107, 60, 0.08);
  border: 1px solid rgba(14, 107, 60, 0.2);
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.section-title span {
  color: var(--green);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Divider with arrows */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-md) auto;
  color: var(--green);
  max-width: 200px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--green);
  opacity: 0.35;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-cta);
  color: white;
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 160, 32, 0.45);
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(13, 43, 110, 0.55);
}

.btn-secondary:hover {
  background: rgba(13, 43, 110, 0.08);
  border-color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
}

.btn-green {
  background: var(--grad-green);
  color: white;
  box-shadow: 0 4px 16px rgba(14, 107, 60, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 107, 60, 0.4);
}

.btn-arrow::after {
  content: ' →';
  font-size: 1.1em;
  transition: transform var(--duration) var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ─── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-body {
  padding: var(--space-xl);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.card-icon--green {
  background: rgba(14, 107, 60, 0.10);
  color: var(--green);
}

.card-icon--navy {
  background: rgba(13, 43, 110, 0.10);
  color: var(--navy);
}

.card-icon--gold {
  background: rgba(232, 160, 32, 0.12);
  color: var(--gold-dark);
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13, 43, 110, 0.1);
  transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(13, 43, 110, 0.1);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.nav-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--duration) var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  border-radius: var(--radius-full);
  transition: width var(--duration) var(--ease);
}

.nav-link:hover {
  color: var(--green);
}

.nav-link:hover::after {
  width: 100%;
  background: var(--green);
}

.nav-link.active {
  color: var(--green);
}

.nav-link.active::after {
  width: 100%;
  background: var(--green);
}

.nav-cta {
  font-size: 0.82rem;
  padding: 0.55rem 1.3rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(13, 43, 110, 0.1);
  padding: var(--space-lg) var(--space-xl);
  flex-direction: column;
  gap: var(--space-lg);
  z-index: 999;
  backdrop-filter: blur(12px);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 1rem;
  color: var(--navy);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(14, 107, 60, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(13, 43, 110, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(232, 160, 32, 0.04) 0%, transparent 60%),
    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='none' fill-rule='evenodd'%3E%3Cg fill='%230D2B6E' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-globe {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  border-radius: 50%;
  border: 1px solid rgba(13, 43, 110, 0.07);
  pointer-events: none;
  opacity: 0.6;
}

.hero-globe::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(13, 43, 110, 0.07);
}

.hero-globe::after {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(13, 43, 110, 0.07);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(13, 43, 110, 0.07);
  border: 1px solid rgba(13, 43, 110, 0.15);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent {
  color: var(--gold-dark);
  -webkit-text-fill-color: var(--gold-dark);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(13, 43, 110, 0.12);
}

.hero-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
}

.hero-logo-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 43, 110, 0.05);
  backdrop-filter: blur(4px);
  position: relative;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(13, 43, 110, 0.15);
}

.hero-logo-inner {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  box-shadow: 0 4px 24px rgba(13, 43, 110, 0.12);
}

.hero-logo-text-group {
  text-align: center;
}

.hero-brand-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.05em;
}

.hero-brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 3px 0;
  margin: 6px 0;
}

.hero-brand-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* Info cards floating */
.hero-info-cards {
  display: flex;
  gap: var(--space-md);
}

.hero-info-card {
  background: white;
  border: 1px solid rgba(13, 43, 110, 0.1);
  box-shadow: 0 2px 12px rgba(13, 43, 110, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  min-width: 120px;
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.hero-info-card:hover {
  box-shadow: 0 4px 20px rgba(13, 43, 110, 0.14);
  transform: translateY(-3px);
}

.hero-info-card-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.hero-info-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── ABOUT SECTION ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-main-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(232, 160, 32, 0.12);
  border-radius: 50%;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.about-stat {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.about-stat-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-xs);
}

.about-badge-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
}

.about-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.about-content .section-title {
  text-align: left;
}

.about-content .section-subtitle {
  text-align: left;
  margin: 0;
}

.about-features {
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--duration) var(--ease);
}

.about-feature:hover {
  background: var(--bg-alt);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(14, 107, 60, 0.1);
  color: var(--green);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-feature-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ─── PRODUCTS SECTION ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-card-img-elem {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-body {
  padding: var(--space-xl);
}

.product-card-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-sm);
}

.product-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-card-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-card-list li::before {
  content: '▸';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─── WHY US SECTION ────────────────────────────────────────── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.why-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
  cursor: default;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 160, 32, 0.3);
}

.why-card-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.why-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.why-card-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ─── CONTACT BANNER ────────────────────────────────────────── */
.contact-banner {
  background: linear-gradient(135deg, #0D2B6E 0%, #1A3D8F 50%, #0D2B6E 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: var(--space-3xl) 0;
}

.contact-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
}

.contact-info-row {
  display: flex;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: white;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.contact-info-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
}

/* ─── CONTACT PAGE ──────────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem var(--space-lg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(13, 43, 110, 0.1);
  background: white;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: white;
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.05em;
}

.footer-brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: var(--space-md) 0;
  font-family: 'Playfair Display', serif;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-mini span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-mini a {
  color: var(--gold-light);
  font-weight: 500;
  transition: color var(--duration);
}

.footer-contact-mini a:hover {
  color: white;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration) var(--ease);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-link:hover {
  color: white;
}

.footer-link::before {
  content: '→';
  font-size: 0.7rem;
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-xl) 0;
  margin-top: var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copy span {
  color: var(--gold);
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--grad-hero);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 1;
}

.page-hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  margin-top: var(--space-md);
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb span::before {
  content: '/';
  margin-right: var(--space-sm);
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) {
  transition-delay: 0.0s;
}

.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;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 3.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-row {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}