/* ================================================
   NOVA SIGN — styles.css
   Navy #072144 | Gold #b38e4b | Light Gold #fde598
   Oswald (headings) | Poppins (body)
   ================================================ */

:root {
  --navy:        #072144;
  --navy-dark:   #041530;
  --navy-mid:    #0d3060;
  --navy-light:  #1a4a8a;
  --gold:        #b38e4b;
  --gold-light:  #fde598;
  --gold-dark:   #9a7a3f;
  --white:       #ffffff;
  --gray-bg:     #f5f6f8;
  --gray-line:   #e0e2e6;
  --gray-text:   #666;
  --text:        #333;
  --header-h:    96px;
  --ease:        0.3s ease;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 4px 16px rgba(7,33,68,0.10);
  --shadow-md:   0 8px 32px rgba(7,33,68,0.14);
  --shadow-lg:   0 20px 56px rgba(7,33,68,0.20);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--header-h);
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
address { font-style: normal; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 88px 0; }

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-eyebrow.center,
h2.center,
p.center { text-align: center; }

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.15;
}
h2.light { color: var(--white); }

.section-intro {
  max-width: 620px;
  margin: 12px auto 52px;
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.75;
}
.section-intro.light { color: rgba(255,255,255,0.75); }

.section-sub {
  max-width: 580px;
  margin: 12px auto 44px;
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn-quote {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-quote:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-hero {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-hero:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  margin-top: 20px;
  transition: background var(--ease), transform var(--ease);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 44px;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }


/* ================================================
   HEADER — navy background, gold logo
   ================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  z-index: 1000;
  transition: box-shadow var(--ease);
}
#site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo-link { flex-shrink: 0; }
.logo-img  {
  height: 78px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--ease);
}
.logo-img:hover { opacity: 0.85; }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  transition: color var(--ease);
}
.header-phone:hover { color: var(--white); }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ================================================
   HERO
   ================================================ */
.hero-section {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 540px;
  max-height: 820px;
  overflow: hidden;
  padding: 0;
}
.hero-carousel { height: 100%; position: relative; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7,33,68,0.84) 0%, rgba(7,33,68,0.58) 55%, rgba(7,33,68,0.22) 100%);
}
.hero-slide.active { opacity: 1; z-index: 1; }

.slide-badge {
  position: absolute;
  bottom: 44px;
  left: 44px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 52px;
  margin-left: 4%;
}
.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-top: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  line-height: 1.6;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots { position: absolute; bottom: 22px; right: 48px; display: flex; gap: 9px; z-index: 10; }
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.hero-dot.active { background: var(--gold); transform: scale(1.4); }


/* ================================================
   WELCOME / ABOUT
   ================================================ */
.welcome-section { background: var(--white); }

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.welcome-text h2 { margin-bottom: 18px; }
.welcome-text p { color: var(--gray-text); margin-bottom: 16px; line-height: 1.75; }

.welcome-image { position: relative; }
.welcome-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.img-accent-block {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  height: 55%;
  background: var(--gold);
  opacity: 0.22;
  border-radius: var(--radius);
  z-index: 0;
}


/* ================================================
   MISSION & VISION
   ================================================ */
.mission-section { background: var(--gray-bg); }

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

.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: transform var(--ease), box-shadow var(--ease);
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.mission-icon {
  width: 52px;
  height: 52px;
  background: rgba(7,33,68,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mission-icon svg { width: 26px; height: 26px; stroke: var(--gold); }

.mission-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 14px;
}
.mission-card p { font-size: 14px; color: var(--gray-text); line-height: 1.75; }

.values-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.values-list li {
  font-size: 14px;
  color: var(--gray-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.values-list li span { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }


/* ================================================
   SERVICES
   ================================================ */
.services-section {
  background: var(--navy);
  padding: 96px 0;
}
.services-section h2 { margin-bottom: 8px; }

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

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.featured-service {
  background: rgba(179,142,75,0.12);
  border-color: var(--gold);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,33,68,0.85) 0%, rgba(7,33,68,0.2) 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.service-overlay span {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.service-body { padding: 28px; }

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(179,142,75,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); }

.service-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.service-body p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 18px; }

.service-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

.btn-service {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease);
}
.btn-service:hover { background: var(--gold-dark); transform: translateY(-2px); }


/* ================================================
   FEATURED PRODUCTS
   ================================================ */
.products-section { background: var(--gray-bg); }
.products-section h2 { margin-bottom: 8px; }

.products-wrapper {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin: 24px 0 32px;
}
.products-track-container { flex: 1; overflow: hidden; }
.products-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}

.product-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.product-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.product-info { padding: 18px 20px 22px; }

.product-label {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.product-desc { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin-top: 10px; }

.prod-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), transform var(--ease);
  align-self: center;
}
.prod-arrow:hover { background: var(--gold); color: var(--navy); transform: scale(1.05); }
.prod-arrow:disabled { opacity: 0.35; cursor: default; transform: none; }

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


/* ================================================
   WHY CHOOSE
   ================================================ */
.why-section { background: var(--navy); padding: 96px 0; }
.why-section h2 { margin-bottom: 52px; }

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

.why-card {
  padding: 40px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-card.navy-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.why-card.gold-card { background: var(--gold); }

.why-icon { width: 60px; height: 60px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 34px; height: 34px; }
.navy-card .why-icon svg { stroke: var(--gold-light); }
.gold-card .why-icon svg { stroke: var(--navy); }

.why-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.navy-card h3 { color: var(--gold-light); }
.gold-card h3 { color: var(--navy); }
.why-card p { font-size: 14px; line-height: 1.75; }
.navy-card p { color: rgba(255,255,255,0.72); }
.gold-card p { color: rgba(7,33,68,0.80); }


/* ================================================
   REVIEWS
   ================================================ */
.reviews-section { background: var(--white); text-align: center; }
.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 36px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.review-card {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.review-quote {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
  opacity: 0.5;
}
.review-text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; color: var(--navy); }
.review-author span   { display: block; font-size: 12px; color: var(--gray-text); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}


/* ================================================
   REACH US (Call / Email / Visit)
   ================================================ */
.reach-section { padding: 0; }

.reach-bg {
  background: var(--navy);
  padding: 88px 0;
}
.reach-bg h2 { margin-bottom: 8px; }

.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  margin: 48px 0 36px;
}

.reach-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--ease), border-color var(--ease);
}
.reach-card:hover { transform: translateY(-6px); border-color: var(--gold); }

.featured-reach {
  background: rgba(179,142,75,0.12);
  border-color: var(--gold);
  padding: 40px 32px;
}

.reach-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(179,142,75,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.reach-icon-wrap svg { width: 28px; height: 28px; stroke: var(--gold); }

.reach-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.reach-logo {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}

.reach-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.reach-contact {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  transition: color var(--ease);
}
.reach-contact:hover { color: var(--gold-light); }

.reach-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 22px;
}
.featured-reach p { margin-bottom: 24px; }

.btn-reach {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease);
}
.btn-reach:hover { background: var(--gold); color: var(--navy); }

.btn-reach-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease);
}
.btn-reach-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* Location bar */
.location-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 28px;
}
.location-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(179,142,75,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.location-text { flex: 1; }
.location-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.location-text span { font-size: 13px; color: rgba(255,255,255,0.65); }

.btn-directions {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}
.btn-directions:hover { background: var(--gold); color: var(--navy); }


/* ================================================
   CONTACT FORM
   ================================================ */
.contact-section { background: var(--gray-bg); }
.contact-section h2 { margin-bottom: 8px; }

.consultation-form {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.req { color: var(--gold); }

input, textarea, select {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 2px solid var(--gray-line);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(7,33,68,0.08);
}
input.error, textarea.error { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.10); }
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* Dropzone */
.dropzone {
  border: 2px dashed var(--gray-line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.dropzone.drag-over { border-color: var(--gold); background: rgba(179,142,75,0.04); }
.dropzone-inner svg { margin: 0 auto 12px; display: block; }
.dropzone-inner p { font-size: 14px; color: var(--gray-text); margin-bottom: 4px; }
.drop-hint { font-size: 12px; color: #aaa; }
.file-browse { color: var(--gold); font-weight: 600; cursor: pointer; text-decoration: underline; }
#file-input { display: none; }

.dropzone-files { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 12px; }
.file-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 100px;
}
.file-chip button {
  background: none; border: none; color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 16px; line-height: 1; padding: 0; transition: color var(--ease);
}
.file-chip button:hover { color: var(--white); }

.form-submit { text-align: center; margin-top: 8px; }
.btn-submit {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 64px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.form-success svg { margin: 0 auto 20px; }
.form-success h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.form-success p { color: var(--gray-text); font-size: 15px; line-height: 1.7; }


/* ================================================
   FOOTER
   ================================================ */
.site-footer { background: var(--navy); color: var(--white); }

/* Action bar */
.footer-actions-bar { background: var(--gold); padding: 0; }
.footer-actions-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.footer-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 16px;
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-right: 1px solid rgba(7,33,68,0.15);
  transition: background var(--ease);
}
.footer-action-item:last-child { border-right: none; }
.footer-action-item:hover { background: rgba(7,33,68,0.1); }

.fa-icon {
  width: 40px;
  height: 40px;
  background: rgba(7,33,68,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
}
.fa-icon svg { width: 20px; height: 20px; }

/* Main footer */
.footer-main { padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-tagline { font-size: 14px; color: var(--gold-light); margin-bottom: 12px; }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }

.brand-col address p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 6px; line-height: 1.5; }
.brand-col address a { color: rgba(255,255,255,0.6); transition: color var(--ease); }
.brand-col address a:hover { color: var(--gold-light); }

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  transition: color var(--ease), padding-left var(--ease);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.hours-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255,255,255,0.07);
}
.hours-list li:last-child { border-bottom: none; }

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(179,142,75,0.15);
  border: 1px solid rgba(179,142,75,0.3);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-top: 4px;
}
.footer-badge svg { width: 16px; height: 16px; stroke: var(--gold); fill: var(--gold); flex-shrink: 0; }
.footer-badge span { font-size: 12px; font-weight: 600; color: var(--gold-light); }

.footer-bottom {
  background: var(--navy-dark);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-bottom a:hover { color: var(--gold-light); }


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mission-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .reach-grid      { grid-template-columns: 1fr 1fr; }
  .featured-reach  { grid-column: 1 / -1; order: -1; }
}

@media (max-width: 880px) {
  .header-phone    { display: none; }
  .main-nav        { display: none; }
  .mobile-menu-btn { display: flex; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy-dark);
    padding: 20px 28px 28px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .main-nav.open ul { flex-direction: column; gap: 18px; }
  .main-nav.open a { font-size: 16px; }

  .hero-content    { padding: 0 28px; margin-left: 0; }
  .welcome-grid    { grid-template-columns: 1fr; gap: 40px; }
  .welcome-image img { height: 300px; }
  .mission-grid    { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .product-card    { flex: 0 0 calc(50% - 12px); }
  .reviews-track   { grid-template-columns: 1fr; }
  .reach-grid      { grid-template-columns: 1fr; }
  .footer-actions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .location-bar    { flex-direction: column; text-align: center; }
  .consultation-form { padding: 32px 24px; }
}

@media (max-width: 600px) {
  :root { --header-h: 70px; }
  section { padding: 60px 0; }
  .logo-img { height: 54px; }
  .hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.2rem); }
  .slide-badge { bottom: 24px; left: 24px; font-size: 10px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .form-row  { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-actions-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { flex: 0 0 100%; }
  .review-card  { padding: 28px 22px; }
  .consultation-form { padding: 28px 16px; }
}
