/* =========================================
   Prime Store Trading — Main Stylesheet
   Design: Corporate & Professional
   Colors: Navy #1B2A4A + Gold #C5A028
   ========================================= */

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

:root {
  --navy:       #1B2A4A;
  --navy-dark:  #111E35;
  --navy-light: #2C3E6A;
  --gold:       #C5A028;
  --gold-light: #E8C44A;
  --gold-dark:  #9E7F1A;
  --bg:         #F8F7F4;
  --white:      #FFFFFF;
  --text:       #1A1A2E;
  --muted:      #6B7280;
  --border:     #E2E0DA;
  --success:    #10B981;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 16px rgba(27,42,74,.12);
  --shadow-lg:  0 12px 40px rgba(27,42,74,.18);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: .25s ease;
  --max-width:  1200px;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--muted); }

em { font-style: italic; color: var(--gold); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p   { font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(197,160,40,.1);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .925rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-sm  { padding: .5rem 1.25rem; font-size: .85rem; }
.btn-lg  { padding: .95rem 2.25rem; font-size: 1rem; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

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

.btn-link {
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--transition), color var(--transition);
}
.btn-link:hover { color: var(--gold); gap: .6rem; }

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.navbar .container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 1rem;
}

.nav-brand a {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand .logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.nav-brand .logo-sub {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
  margin-right: 1.5rem;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: .5rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--navy); background: var(--bg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: .6rem 1rem;
  font-size: .875rem;
  color: var(--muted);
  transition: all var(--transition);
}
.dropdown-menu li a:hover { color: var(--navy); background: var(--bg); }

.nav-cta { font-size: .85rem; padding: .6rem 1.4rem; }

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--navy);
  margin-left: auto;
  padding: .25rem .5rem;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 65%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(197,160,40,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(197,160,40,.15);
  border: 1px solid rgba(197,160,40,.3);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 800;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}
.hero h1 em { color: var(--gold-light); font-style: italic; }

.hero > .container > .hero-content > p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 2rem;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-light);
}
.stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 420px;
}
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-wide { grid-column: span 2; }
.hero-card-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.hero-card h4 {
  color: var(--white);
  font-size: .9rem;
  margin-bottom: .25rem;
}
.hero-card p {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
}
.hero-card-stat {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.trust-items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
}
.trust-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Products Overview --- */
.products-section { background: var(--white); padding: 5rem 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background var(--transition);
}
.product-card:hover::before { background: var(--gold); }
.product-card:hover {
  border-color: rgba(197,160,40,.25);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.product-card--featured::before { background: var(--gold) !important; }
.product-card--featured h3,
.product-card--featured .product-card-icon { color: var(--white); }
.product-card--featured p,
.product-card--featured li { color: rgba(255,255,255,.7); }
.product-card--featured .btn-link { color: var(--gold-light); }
.product-card--featured li::before { color: var(--gold-light) !important; }

.product-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.product-card h3 { margin-bottom: .6rem; color: var(--text); }
.product-card > p { margin-bottom: 1.25rem; font-size: .925rem; }

.product-card ul {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.product-card li {
  font-size: .875rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.product-card li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}

/* --- Why Us / Features --- */
.why-us { background: var(--bg); padding: 5rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.feature:hover {
  border-color: rgba(27,42,74,.2);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  width: 56px;
  height: 56px;
  background: rgba(27,42,74,.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature h3 { color: var(--text); margin-bottom: .5rem; font-size: 1.05rem; }
.feature p { font-size: .875rem; }

/* --- Testimonials --- */
.testimonials { background: var(--navy); padding: 5rem 0; }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-tag {
  background: rgba(197,160,40,.15);
  color: var(--gold-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(197,160,40,.15);
}
.testimonial-stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}
.testimonial-text {
  color: rgba(255,255,255,.8);
  font-size: .925rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  color: var(--white);
  font-size: .9rem;
}
.author-role {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--navy-dark); margin-bottom: .75rem; }
.cta-banner > .container > p { color: rgba(27,42,74,.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub  { color: var(--gold); }
.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  margin-top: .75rem;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col li a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: .9rem;
  align-items: flex-start;
}
.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: rgba(197,160,40,.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.contact-info-text {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.contact-info-text a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: .8rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.breadcrumb strong { color: var(--gold-light); }

/* --- About Page --- */
.about-story { padding: 5rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.about-badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about-badge-text {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.about-content .section-tag { margin-bottom: .75rem; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; }
.about-content p:last-of-type { margin-bottom: 1.5rem; }

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2rem;
}
.value-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
}
.value-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(197,160,40,.15);
  color: var(--gold-dark);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Team */
.team-section { background: var(--bg); padding: 5rem 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.team-card h4 { color: var(--text); font-size: 1rem; margin-bottom: .25rem; }
.team-card .team-role {
  font-size: .8rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Stats */
.stats-section { background: var(--navy); padding: 4rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { }
.stat-item .stat-num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-item .stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* --- Products Page --- */
.products-page { padding: 5rem 0; }
.product-category { margin-bottom: 4rem; }
.product-category:last-child { margin-bottom: 0; }
.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.category-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: rgba(27,42,74,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.category-header h2 { margin-bottom: .2rem; }
.category-header p { font-size: .9rem; }

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.item-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.item-card:hover {
  border-color: rgba(197,160,40,.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.item-card-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}
.item-card h4 { font-size: .95rem; color: var(--text); margin-bottom: .35rem; }
.item-card p  { font-size: .825rem; }

/* --- Contact Page --- */
.contact-section { padding: 5rem 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
}
.contact-info-card:hover {
  border-color: rgba(197,160,40,.3);
  box-shadow: var(--shadow-sm);
}
.contact-info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-card h4 { color: var(--text); font-size: .95rem; margin-bottom: .25rem; }
.contact-info-card p, .contact-info-card a {
  font-size: .875rem;
  color: var(--muted);
}
.contact-info-card a:hover { color: var(--navy); }

/* Contact Form */
.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h3 { margin-bottom: .5rem; }
.contact-form-card > p { margin-bottom: 1.75rem; font-size: .9rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.form-submit { width: 100%; justify-content: center; margin-top: .5rem; }

.form-success {
  display: none;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--success);
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
}
.form-success.show { display: block; }

/* --- Map placeholder --- */
.map-section { padding: 0 0 5rem; }
.map-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  gap: .75rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '📍';
  font-size: 3rem;
}
.map-placeholder strong { color: var(--white); font-size: 1.1rem; }
.map-placeholder p { font-size: .875rem; color: rgba(255,255,255,.5); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .products-grid    { grid-template-columns: 1fr 1fr; }
  .features-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .items-grid       { grid-template-columns: repeat(3, 1fr); }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .hero .container  { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .contact-layout   { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn      { display: block; }

  .products-grid   { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .items-grid      { grid-template-columns: repeat(2, 1fr); }
  .form-row        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .trust-items     { gap: 1rem; }

  .hero-stats      { gap: 1.25rem; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .cta-actions     { flex-direction: column; align-items: center; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .values-list     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .items-grid { grid-template-columns: 1fr; }
  .team-grid  { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp .6s ease forwards;
}
.animate-in.delay-1 { animation-delay: .1s; }
.animate-in.delay-2 { animation-delay: .2s; }
.animate-in.delay-3 { animation-delay: .3s; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.bg-navy     { background: var(--navy); }
.bg-light    { background: var(--bg); }
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mb-3  { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.gap-1  { gap: .5rem; }
.gap-2  { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
