/* ============================================================
   PENINSULA WIRE PRODUCTS — MAIN STYLESHEET
   Colour Palette:
     Primary Blue  : #004E78
     Dark Blue     : #002E4A
     Accent Gold   : #F5A623
     Light Gold    : #FFC857
     White         : #FFFFFF
     Off-White     : #F8F9FA
     Text Dark     : #1A1A2E
     Text Mid      : #4A5568
     Border        : #E2E8F0
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A2E;
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── CSS Variables ── */
:root {
  --blue:        #004E78;
  --blue-dark:   #002E4A;
  --blue-light:  #0070A8;
  --gold:        #F5A623;
  --gold-light:  #FFC857;
  --white:       #FFFFFF;
  --off-white:   #F4F7FA;
  --text:        #1A1A2E;
  --text-mid:    #4A5568;
  --border:      #E2E8F0;
  --shadow:      0 4px 24px rgba(0,78,120,0.10);
  --shadow-lg:   0 12px 48px rgba(0,78,120,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--gold-light);
  background: rgba(255,200,87,0.15);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold);
  color: var(--blue-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 40px; font-size: 1.05rem; }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.4; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
}

.fade-in { animation: fadeInUp 0.9s ease both; }

.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── Top Bar ── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-location,
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-location svg,
.topbar-phone svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-phone {
  color: var(--gold-light);
  font-weight: 600;
  transition: color var(--transition);
}
.topbar-phone:hover { color: var(--white); }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover { color: var(--blue); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--blue-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,78,120,0.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--off-white); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,46,74,0.88) 0%,
    rgba(0,78,120,0.75) 50%,
    rgba(0,46,74,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 760px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: max(24px, calc((100vw - 1200px) / 2));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.25s ease both;
}

.hero-content h1 .accent { color: var(--gold); }

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.7s 0.55s ease both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  margin: 0 auto;
  animation: scrollBounce 2s infinite;
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--blue);
  padding: 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.06); }

.stat-number {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ── About ── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }

.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
}
.about-badge-card svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
  flex-shrink: 0;
}
.about-badge-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.about-badge-card span {
  font-size: 0.78rem;
  color: var(--text-mid);
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-icon svg {
  width: 13px;
  height: 13px;
  color: var(--blue-dark);
  stroke-width: 3;
}

/* ── Products ── */
.products { background: var(--off-white); }

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.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.08); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,46,74,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.product-body {
  padding: 24px;
}
.product-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.product-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Why Us ── */
.why-us {
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}
.why-us .container { position: relative; z-index: 1; }

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

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

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(245,166,35,0.15);
  border: 2px solid rgba(245,166,35,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--transition);
}
.why-card:hover .why-icon { background: rgba(245,166,35,0.25); }
.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ── Retailers ── */
.retailers { background: var(--white); }

.retailers-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.retailer-logo {
  flex: 0 0 180px;
}

.retailer-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  color: var(--text-mid);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.retailer-placeholder:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,78,120,0.04);
}
.retailer-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.4;
}
.retailer-placeholder span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── Contact ── */
.contact { background: var(--off-white); }

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

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pulse 3s infinite;
}
.contact-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.contact-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  transition: color var(--transition);
}
a.contact-link:hover { color: var(--gold); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

/* ── Footer ── */
.footer { background: var(--blue-dark); }

.footer-top { padding: 72px 0 56px; }

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

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--transition);
}
.footer-phone svg { width: 16px; height: 16px; }
.footer-phone:hover { color: var(--white); }

.footer-links h4,
.footer-products h4,
.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links ul li,
.footer-products ul li {
  margin-bottom: 10px;
}
.footer-links ul li a,
.footer-products ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links ul li a:hover,
.footer-products ul li a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-contact p svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact p a { color: var(--gold-light); }
.footer-contact p a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,78,120,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--blue-dark);
  transform: translateY(-3px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    padding: 88px 32px 40px;
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .nav-menu ul li { width: 100%; }
  .nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .nav-link.nav-cta {
    margin-top: 16px;
    text-align: center;
    border-radius: 50px;
  }

  /* Overlay when menu open */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
  }
  .nav-overlay.visible { display: block; }

  /* Hero */
  .hero-content {
    margin-left: 0;
    padding: 100px 24px 60px;
    max-width: 100%;
  }
  .hero-bg { background-attachment: scroll; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge-card { right: 0; bottom: -20px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
  .cta-banner .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; }

  /* Section */
  .section { padding: 64px 0; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.2rem; }

  .products-grid { grid-template-columns: 1fr; }

  .topbar-inner { justify-content: center; flex-direction: column; gap: 4px; }

  .hero-content h1 { font-size: 1.8rem; }

  .section-header h2 { font-size: 1.6rem; }

  .about-badge-card { position: static; margin-top: 16px; }
}

/* ============================================================
   DROPDOWN NAVIGATION
   ============================================================ */
.nav-dropdown { position: relative; }

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  min-width: 200px;
  padding: 8px 0;
  z-index: 1000;
  border-top: 3px solid #004E78;
  list-style: none;
  margin: 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-dropdown .dropdown-menu li { list-style: none; }

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #002E4A;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  white-space: nowrap;
}

.nav-dropdown .dropdown-menu a:hover,
.nav-dropdown .dropdown-menu a.active {
  background: #F4F7FA;
  color: #004E78;
  padding-left: 26px;
}

@media (max-width: 900px) {
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #004E78;
    border-radius: 0;
    background: rgba(0,78,120,0.06);
    padding: 4px 0;
    margin: 4px 0 4px 16px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-dropdown .dropdown-menu a { color: #002E4A; padding: 8px 16px; font-size: 0.88rem; }
  .nav-dropdown .dropdown-menu a:hover { background: transparent; color: #004E78; padding-left: 20px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #002E4A 0%, #004E78 60%, #1a7ab5 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,30,60,0.85) 0%, rgba(0,78,120,0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 64px;
}

.page-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #FFC857; font-size: 0.85rem; font-weight: 600; }
.breadcrumb svg { width: 14px; height: 14px; color: rgba(255,255,255,0.45); flex-shrink: 0; }

/* ============================================================
   PRODUCT PAGE LAYOUT
   ============================================================ */
.product-page { background: #fff; }

.product-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

@media (max-width: 900px) {
  .product-page-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
}

.product-page-img-frame {
  background: #F4F7FA;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.4s ease;
}

.product-page-img-frame:hover img { transform: scale(1.04); }

.product-page-details h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #002E4A;
  margin: 8px 0 20px;
  line-height: 1.2;
}

.product-page-details h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #002E4A;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #F4F7FA;
}

.product-intro { font-size: 1rem; color: #1A1A2E; line-height: 1.75; margin-bottom: 8px; }
.product-page-details p { font-size: 0.95rem; color: #4A5568; line-height: 1.75; margin-bottom: 8px; }

.sizes-table-wrap { overflow-x: auto; margin: 12px 0 8px; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.sizes-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.sizes-table thead th { background: #004E78; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 12px 16px; text-align: left; }
.sizes-table tbody tr:nth-child(even) { background: #F4F7FA; }
.sizes-table tbody tr:nth-child(odd) { background: #fff; }
.sizes-table tbody tr:hover { background: rgba(0,78,120,0.06); }
.sizes-table tbody td { padding: 11px 16px; color: #002E4A; border-bottom: 1px solid rgba(0,0,0,0.06); }
.sizes-table tbody td strong { color: #004E78; }

.product-features { display: flex; flex-direction: column; gap: 10px; margin: 8px 0; }
.product-features .feature-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: #1A1A2E; }
.product-features .feature-icon { width: 24px; height: 24px; background: #004E78; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.product-features .feature-icon svg { width: 13px; height: 13px; stroke: #fff; }

.product-cta-wrap { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid #F4F7FA; }

.btn-outline-dark { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border: 2px solid #002E4A; color: #002E4A; border-radius: 8px; font-weight: 700; font-size: 0.95rem; transition: all 0.3s; text-decoration: none; cursor: pointer; }
.btn-outline-dark:hover { background: #002E4A; color: #fff; }
.btn-outline-dark svg { width: 18px; height: 18px; }
.btn-large { padding: 16px 32px; font-size: 1rem; }

/* ============================================================
   RELATED PRODUCTS
   ============================================================ */
.related-products { padding-top: 56px; border-top: 2px solid #F4F7FA; }
.related-title { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 800; color: #002E4A; margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.related-card { display: flex; flex-direction: column; align-items: center; gap: 10px; background: #F4F7FA; border-radius: 12px; overflow: hidden; padding: 16px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; border: 2px solid transparent; }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,78,120,0.15); border-color: #004E78; }
.related-card img { width: 100%; height: 100px; object-fit: contain; border-radius: 8px; }
.related-card span { font-size: 0.85rem; font-weight: 700; color: #002E4A; text-align: center; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-section { background: #fff; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
@media (max-width: 960px) { .contact-page-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-page-cards { display: flex; flex-direction: column; gap: 24px; }
.contact-page-card { display: flex; gap: 20px; background: #fff; border: 1px solid rgba(0,78,120,0.12); border-radius: 14px; padding: 24px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: box-shadow 0.3s, transform 0.3s; }
.contact-page-card:hover { box-shadow: 0 8px 32px rgba(0,78,120,0.14); transform: translateY(-2px); }
.contact-page-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #004E78, #002E4A); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-page-icon svg { width: 24px; height: 24px; stroke: #fff; }
.contact-page-card-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 800; color: #002E4A; margin: 0 0 6px; }
.contact-page-card-body p { font-size: 0.88rem; color: #4A5568; line-height: 1.6; margin: 0 0 8px; }
.contact-detail-link { font-size: 0.95rem; font-weight: 700; color: #004E78; text-decoration: none; display: block; transition: color 0.2s; }
.contact-detail-link:hover { color: #002E4A; }

.hours-table { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 12px; background: #F4F7FA; border-radius: 6px; font-size: 0.88rem; }
.hours-day { font-weight: 600; color: #002E4A; }
.hours-time { font-weight: 700; color: #004E78; }
.hours-closed .hours-day { color: #4A5568; }
.hours-closed .hours-time { color: #c0392b; font-weight: 600; }

.contact-page-map h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: #002E4A; margin: 8px 0 16px; }
.contact-page-map p { font-size: 0.95rem; color: #4A5568; line-height: 1.7; margin-bottom: 24px; }
.map-embed { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.12); margin-bottom: 32px; }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }
.contact-order-cta { background: linear-gradient(135deg, #002E4A 0%, #004E78 100%); border-radius: 16px; padding: 32px; color: #fff; }
.contact-order-cta h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0 0 8px; }
.contact-order-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin: 0 0 20px; }
.contact-order-cta .btn-outline-dark { border-color: rgba(255,255,255,0.6); color: #fff; }
.contact-order-cta .btn-outline-dark:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ============================================================
   FOOTER LOGO FIX
   ============================================================ */
.footer-logo-wrap { background: #fff; border-radius: 10px; padding: 10px 16px; display: inline-block; margin-bottom: 20px; }
.footer-logo-img { height: 52px !important; width: auto !important; display: block; filter: none !important; opacity: 1 !important; margin-bottom: 0 !important; }
.footer-brand .footer-logo-img { filter: none !important; opacity: 1 !important; height: 52px !important; margin-bottom: 0 !important; }

/* ============================================================
   PRODUCT CARD LINK
   ============================================================ */
.product-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.product-card-link:hover { text-decoration: none; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 600px) {
  .product-cta-wrap { flex-direction: column; }
  .product-cta-wrap .btn { width: 100%; justify-content: center; }
  .contact-order-cta { padding: 24px 20px; }
  .contact-order-cta .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
  .page-hero-content { padding: 56px 20px 48px; }
  .hours-row { font-size: 0.82rem; padding: 6px 10px; }
}
