/* ============================================================
   UNITED STATES PATRIOT — DESIGN SYSTEM
   Colors: Navy #002147 | Red #B22234 | White #FFFFFF
   Fonts: Oswald (headings) + Inter (body)
   ============================================================ */

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

/* ---- CSS VARIABLES ---- */
:root {
  --navy:        #002147;
  --navy-dark:   #001530;
  --navy-mid:    #00316b;
  --red:         #B22234;
  --red-dark:    #8a1a27;
  --red-light:   #d42a3e;
  --white:       #FFFFFF;
  --off-white:   #f5f5f5;
  --silver:      #C0C0C0;
  --gold:        #C8992E;
  --gold-light:  #e8b84b;
  --gray-light:  #e8edf3;
  --gray-mid:    #6b7a90;
  --gray-dark:   #2c3e55;

  --font-head:   'Oswald', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.15);
  --shadow:      0 4px 20px rgba(0,0,0,0.25);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.35);

  --transition:  0.25s ease;
  --max-width:   1280px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--red);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-top {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-logo .logo-bottom {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > .nav-trigger {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  background: none;
  border: none;
  font: inherit;
}

.nav-links > li > a:hover,
.nav-links > li > .nav-trigger:hover {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), color var(--transition), padding var(--transition);
}

.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
  background: rgba(178,34,52,0.3);
  color: var(--white);
  padding-left: 24px;
}

.dropdown a .dep-icon { font-size: 16px; }

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-quote-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-quote-nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(178,34,52,0.5);
}

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

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

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  padding: 90px 24px 40px;
  overflow-y: auto;
}

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

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 1px;
}

.mobile-nav a:hover { color: var(--gold-light); }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(178,34,52,0.4);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(178,34,52,0.55);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,21,48,0.88) 0%,
    rgba(0,33,71,0.75) 50%,
    rgba(130,20,30,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero h1 span { color: var(--gold-light); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 50px;
}

.hero-pill .pill-icon { font-size: 16px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40%            { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================================
   BADGE STRIP (Trust Signals)
   ============================================================ */
.badge-strip {
  background: var(--navy);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  padding: 28px 0;
}

.badge-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  animation: fadeInUp 0.6s ease-out both;
}

.badge-item:last-child { border-right: none; }

.badge-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
}

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

.section-subtitle {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 640px;
  margin: 16px auto 0;
}

.section-subtitle.white { color: rgba(255,255,255,0.8); }

/* ============================================================
   PRODUCT CATEGORY GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 4/3;
}

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

.product-card .card-img-wrap {
  position: absolute;
  inset: 0;
}

.product-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,15,40,0.9) 0%, rgba(0,15,40,0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(to top, rgba(130,20,30,0.85) 0%, rgba(0,15,40,0.4) 60%, transparent 100%);
}

.product-card-content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-card-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.product-card-arrow {
  background: var(--red);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 12px;
  transition: background var(--transition), transform var(--transition);
}

.product-card:hover .product-card-arrow {
  background: var(--white);
  color: var(--red);
  transform: translateX(4px);
}

/* Coin Image Cards (for product cards using coin images) */
.coin-card {
  aspect-ratio: unset;
  min-height: 300px;
  background: linear-gradient(135deg, var(--navy-dark), var(--gray-dark));
}

.coin-card .card-img-wrap img {
  object-fit: contain;
  padding: 20px;
}

/* ============================================================
   DEPARTMENT SHOWCASE
   ============================================================ */
.dept-section { padding: 0; }

.dept-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.dept-row:nth-child(even) { direction: rtl; }
.dept-row:nth-child(even) > * { direction: ltr; }

.dept-image {
  position: relative;
  overflow: hidden;
}

.dept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.dept-row:hover .dept-image img {
  transform: scale(1.04);
}

.dept-image .dept-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 2px;
}

.dept-content {
  background: var(--navy);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.dept-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-light);
}

.dept-content h2 {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.dept-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.dept-stats {
  display: flex;
  gap: 32px;
  margin: 8px 0;
}

.dept-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dept-stat .stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
}

.dept-stat .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   COIN GALLERY STRIP
   ============================================================ */
.coin-strip {
  background: var(--off-white);
  padding: 60px 0;
}

.coin-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.coin-strip-item {
  background: linear-gradient(135deg, #1a2a40, #0d1b2e);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.coin-strip-item:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.coin-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.coin-strip-item:hover img {
  transform: rotate(5deg) scale(1.05);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  font-size: 400px;
  color: rgba(255,255,255,0.04);
  font-family: Georgia, serif;
  top: -80px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold-light);
  font-size: 18px;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info .author-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
}

.author-info .author-unit {
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 1px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--red);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '★';
  position: absolute;
  font-size: 300px;
  color: rgba(255,255,255,0.06);
  right: 60px;
  top: -80px;
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cta-banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  border-top: 4px solid var(--red);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--red);
  font-weight: bold;
  font-size: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item .icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   PAGE HERO STRIP (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 64px 0;
  border-bottom: 4px solid var(--red);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '★';
  position: absolute;
  right: 5%;
  top: -30px;
  font-size: 200px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
}

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

.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-note {
  background: rgba(0,33,71,0.08);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 24px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-note .note-icon { font-size: 20px; flex-shrink: 0; }

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,33,71,0.15);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

.pricing-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}

.pricing-table thead th:first-child {
  text-align: left;
  background: var(--red);
  min-width: 120px;
}

.pricing-table thead th:last-child { border-right: none; }

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(0,33,71,0.08);
  transition: background var(--transition);
}

.pricing-table tbody tr:nth-child(even) { background: var(--gray-light); }
.pricing-table tbody tr:hover { background: rgba(0,33,71,0.06); }

.pricing-table tbody td {
  padding: 16px;
  text-align: center;
  border-right: 1px solid rgba(0,33,71,0.06);
  color: var(--gray-dark);
  font-weight: 500;
}

.pricing-table tbody td:last-child { border-right: none; }

.pricing-table tbody td:first-child {
  text-align: left;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(0,33,71,0.04);
}

.pricing-table .price-cell {
  font-weight: 600;
  color: var(--navy-mid);
}

.pricing-table .price-popular {
  color: var(--red);
  font-weight: 700;
}

.qty-header-note {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}

/* ============================================================
   MULTI-STEP FORM
   ============================================================ */
.form-page {
  background: var(--off-white);
  min-height: 100vh;
}

.form-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* Progress bar */
.progress-bar-wrap {
  margin-bottom: 48px;
}

.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.progress-step .step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 3px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-mid);
  transition: all var(--transition);
  z-index: 2;
  position: relative;
}

.progress-step.active .step-circle {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(0,33,71,0.2);
}

.progress-step.completed .step-circle {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.progress-step .step-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-mid);
}

.progress-step.active .step-label { color: var(--navy); }
.progress-step.completed .step-label { color: var(--red); }

.progress-line {
  position: absolute;
  top: 22px;
  left: 50%;
  right: -50%;
  height: 3px;
  background: var(--gray-light);
  z-index: 1;
}

.progress-step:last-child .progress-line { display: none; }
.progress-step.completed .progress-line { background: var(--red); }

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,33,71,0.08);
  display: none;
}

.form-card.active { display: block; animation: fadeInUp 0.35s ease-out; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-step-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-step-subtitle {
  font-size: 15px;
  color: var(--gray-mid);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
}

.form-group .required { color: var(--red); }

.form-control {
  padding: 14px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,33,71,0.1);
}

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

/* Radio cards for size/finish selection */
.radio-card-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}

.radio-card input[type="radio"] { display: none; }

.radio-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.radio-card label .rc-icon { font-size: 24px; }

.radio-card label .rc-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.radio-card label .rc-sub {
  font-size: 11px;
  color: var(--gray-mid);
}

.radio-card input:checked + label {
  border-color: var(--navy);
  background: rgba(0,33,71,0.06);
  box-shadow: 0 0 0 3px rgba(0,33,71,0.12);
}

.radio-card input:checked + label .rc-label { color: var(--navy); }

/* Toggle */
.toggle-group {
  display: flex;
  gap: 12px;
}

.toggle-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-mid);
  cursor: pointer;
  transition: all var(--transition);
}

.toggle-btn.selected,
.toggle-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* File Upload */
.file-drop {
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.file-drop:hover {
  border-color: var(--navy);
  background: rgba(0,33,71,0.03);
}

.file-drop .drop-icon { font-size: 40px; margin-bottom: 12px; }
.file-drop .drop-text { font-size: 15px; color: var(--gray-mid); }
.file-drop .drop-hint { font-size: 12px; color: var(--gray-mid); margin-top: 6px; }
.file-drop strong { color: var(--navy); }

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-mid);
  padding: 12px 24px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-back:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  padding: 14px 32px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-next:hover {
  background: var(--navy-mid);
  transform: translateX(3px);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  padding: 16px 40px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(178,34,52,0.4);
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(178,34,52,0.55);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  border: 2px solid var(--navy);
  border-radius: 50px;
  background: none;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  background: linear-gradient(135deg, #1a2a40, #0d1b2e);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(0,33,71,0.12);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 20px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--red); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--red);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.8;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay helpers */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dept-row { grid-template-columns: 1fr; }
  .dept-row:nth-child(even) { direction: ltr; }
  .dept-image { min-height: 300px; }
  .dept-content { padding: 44px 36px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 70vh; }
  .hero-bg { background-attachment: scroll; }

  .badge-strip-inner { flex-direction: column; align-items: stretch; }
  .badge-item { max-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .badge-item:last-child { border-bottom: none; }

  .products-grid { grid-template-columns: 1fr; }
  .coin-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

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

  .dept-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-pills { flex-direction: column; }
  .radio-card-group { grid-template-columns: repeat(2, 1fr); }
  .coin-strip-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
