/* ==========================================================
   MUD Jeans – Denim Manufacturer Clone
   Palette: black / white + denim blue accents
   ========================================================== */

:root {
  --black: #000000;
  --white: #ffffff;
  --denim: #003388;
  --denim-light: #3499cd;
  --text: #222222;
  --gray-text: #666666;
  --gray-bg: #f4f5f7;
  --line: #e1e1e1;
  --maxw: 1200px;
  --header-h: 76px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --transition: .3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-gray { background: var(--gray-bg); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--black);
}
.section-subtitle { text-align: center; color: var(--gray-text); text-transform: lowercase; letter-spacing: 2px; margin-bottom: 40px; }
.section-lead { text-align: center; color: var(--gray-text); max-width: 760px; margin: 0 auto 56px; font-size: 17px; }
.center-btn { text-align: center; margin-top: 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 38px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--denim); border-color: var(--denim); }
.btn-light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-sm { padding: 10px 24px; font-size: 12px; }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 18px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo img { height: 48px; width: auto; display: block; }
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 14px; font-weight: 700; letter-spacing: 1px; color: var(--black);
  position: relative; padding: 6px 0; transition: var(--transition);
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--denim); transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--denim); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--black); transition: var(--transition); }
.nav-close { display: none; position: absolute; top: 22px; right: 24px; font-size: 34px; background: none; border: 0; color: var(--black); cursor: pointer; line-height: 1; }

/* ==========================================================
   HERO
   ========================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; z-index: -2; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.65) 100%); z-index: -1; }
.hero-content { color: var(--white); padding-top: var(--header-h); }
.hero-title { font-size: clamp(34px, 6vw, 68px); font-weight: 900; line-height: 1.1; text-transform: capitalize; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-title span { display: block; }
.hero-subtitle { font-size: clamp(17px, 2.2vw, 24px); font-weight: 500; margin-bottom: 30px; opacity: .95; }
.hero-points { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-points li {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
  padding: 10px 22px; border-radius: 40px; font-weight: 600; font-size: 15px;
}
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: 13px; letter-spacing: 2px; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ==========================================================
   ABOUT
   ========================================================== */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; margin-top: 40px; }
.about-text p { margin-bottom: 18px; color: #333; font-size: 16px; }
.about-text .btn { margin-top: 14px; }
.about-media img { width: 100%; border-radius: 6px; box-shadow: var(--shadow); }

/* ==========================================================
   FEATURES
   ========================================================== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.feature-card {
  background: var(--white); border-radius: 8px; padding: 36px 26px; text-align: center;
  border: 1px solid var(--line); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--denim-light); }
.feature-icon { width: 72px; height: 72px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-icon-text { font-size: 40px; color: var(--denim); }
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--gray-text); }

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why-list { display: flex; flex-direction: column; gap: 72px; margin-top: 56px; }
.why-item { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-item.reverse .why-img { order: 2; }
.why-img img { width: 100%; height: 380px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.why-body h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; position: relative; padding-bottom: 14px; }
.why-body h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 54px; height: 3px; background: var(--denim); }
.why-body p { color: var(--gray-text); font-size: 16.5px; }

/* ==========================================================
   FACTORY CAROUSEL
   ========================================================== */
.carousel { position: relative; margin-top: 20px; overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); }
.carousel-track { display: flex; transition: transform .55s ease; }
.carousel-slide { min-width: 100%; }
.carousel-slide img { width: 100%; height: 520px; object-fit: cover; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(0,0,0,.45); color: #fff; font-size: 20px; transition: var(--transition);
}
.carousel-btn:hover { background: var(--denim); }
.carousel-btn.prev { left: 18px; }
.carousel-btn.next { right: 18px; }
.carousel-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; z-index: 5; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); cursor: pointer; padding: 0; transition: var(--transition); }
.carousel-dots button.active { background: #fff; width: 26px; border-radius: 6px; }

/* ==========================================================
   LOOK BOOK
   ========================================================== */
.lookbook-stack { display: flex; flex-direction: column; gap: 34px; margin-top: 48px; }
.lookbook .section-title { color: #001940; }
.lb-banner { position: relative; display: block; overflow: hidden; border-radius: 4px; min-height: 282px; box-shadow: 0 10px 28px rgba(20,30,50,.10); }
.lb-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.lb-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(247,248,250,.80) 0%, rgba(247,248,250,.48) 55%, rgba(247,248,250,.34) 100%);
  transition: background .4s ease;
}
.lb-banner:hover::before { background: radial-gradient(ellipse at center, rgba(247,248,250,.62) 0%, rgba(247,248,250,.34) 55%, rgba(247,248,250,.22) 100%); }
.lb-banner:hover img { transform: scale(1.05); }
.lb-caption { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 28px; }
.lb-caption h3 { font-size: 42px; font-weight: 900; letter-spacing: 1.5px; color: #141414; line-height: 1; }
.lb-sub {
  font-family: Georgia, 'Times New Roman', serif; font-style: italic; text-transform: uppercase;
  letter-spacing: 3px; font-size: 24px; color: #1f1f1f; margin: 14px 0 18px;
}
.lb-caption p { font-size: 13px; letter-spacing: 2.4px; text-transform: uppercase; color: #3a3a3a; max-width: 660px; line-height: 1.7; margin: 0; }
.lb-caption p + p { margin-top: 7px; }
@media (max-width: 720px) {
  .lookbook-stack { gap: 20px; margin-top: 34px; }
  .lb-banner { min-height: 208px; }
  .lb-caption h3 { font-size: 29px; }
  .lb-sub { font-size: 17px; letter-spacing: 2px; margin: 10px 0 12px; }
  .lb-caption p { font-size: 10.5px; letter-spacing: 1.3px; line-height: 1.6; }
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process-chart { max-width: 1000px; margin: 0 auto 56px; }
.process-chart img { width: 100%; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.process-steps li {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 22px 16px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  transition: var(--transition);
}
.process-steps li:hover { border-color: var(--denim); box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--denim); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px;
}
.step-name { font-weight: 700; font-size: 15px; }

/* ==========================================================
   LATEST TREND
   ========================================================== */
.trend-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.trend-item { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; background: #eee; }
.trend-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .5s ease; }
.trend-item:hover img { transform: scale(1.08); }

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
  position: relative; padding: 110px 0; text-align: center; color: #fff;
  background: url('../assets/05-factory-gallery/factory-05.jpg') center/cover fixed no-repeat;
}
.final-cta-overlay { position: absolute; inset: 0; background: rgba(0,20,50,.78); }
.final-cta-content { position: relative; }
.final-cta h2 { font-size: clamp(28px,4vw,44px); font-weight: 900; margin-bottom: 14px; }
.final-cta p { font-size: 18px; opacity: .92; margin-bottom: 34px; }
.final-cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: #111418; color: #b8bdc4; padding-top: 72px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1.4fr; gap: 44px; padding-bottom: 52px; }
.footer-logo { height: 62px; width: auto; background: none; border-radius: 0; padding: 0; margin: 0 0 18px; }
.footer-brand p { margin-bottom: 22px; line-height: 1.8; max-width: 340px; }
.footer-col h4 {
  color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 22px; letter-spacing: 1.2px;
  text-transform: uppercase; position: relative; padding-bottom: 12px;
}
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--denim-light); border-radius: 2px; }
.footer-contact li { margin-bottom: 15px; line-height: 1.6; }
.footer-contact strong { color: #fff; font-weight: 700; }
.footer-contact a, .footer-menu a { color: var(--denim-light); transition: var(--transition); }
.footer-contact a:hover, .footer-menu a:hover { color: #fff; }
.footer-menu li { margin-bottom: 13px; }
.footer-menu a { color: #b8bdc4; font-weight: 500; letter-spacing: .3px; display: inline-block; }
.footer-menu a:hover { color: #fff; transform: translateX(4px); }
/* icon contact rows */
.fc-row { display: flex; gap: 12px; align-items: flex-start; }
.fc-ico { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 3px; color: var(--denim-light); }
.fc-row span, .fc-row a { line-height: 1.6; }
/* bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: 13.5px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 10px; align-items: center; opacity: .9; }
.footer-legal a { color: #b8bdc4; transition: var(--transition); }
.footer-legal a:hover { color: #fff; }
.footer-legal span { opacity: .4; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45); transition: var(--transition);
  animation: pulse 2.2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.9);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 22px; right: 32px; font-size: 44px; color: #fff; background: none; border: 0; cursor: pointer; line-height: 1; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trend-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-item, .why-item.reverse { grid-template-columns: 1fr; gap: 26px; }
  .why-item.reverse .why-img { order: 0; }
  .why-img img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: 480px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .nav-toggle { display: flex; }
  .nav-close { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
    background: #fff; flex-direction: column; padding: 90px 34px; box-shadow: -10px 0 40px rgba(0,0,0,.15);
    transition: right .35s ease;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 8px; }
  .main-nav a { display: block; padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .features-grid { grid-template-columns: 1fr; }
  .trend-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .carousel-slide img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; max-width: none; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-points li { font-size: 13.5px; padding: 8px 16px; }
  .final-cta { background-attachment: scroll; }
  .whatsapp-float { width: 50px; height: 50px; right: 18px; bottom: 18px; }
}

@media (max-width: 420px) {
  .trend-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .btn { padding: 12px 28px; }
}

/* ==========================================================
   INNER PAGES (about / products / custom / contacts)
   ========================================================== */

/* Page banner */
.page-hero {
  position: relative;
  margin-top: var(--header-h);
  height: 320px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(rgba(0,20,50,.72), rgba(0,20,50,.72)),
              url('../assets/05-factory-gallery/factory-02.jpg') center/cover no-repeat;
  color: #fff;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.page-hero p { font-size: 18px; opacity: .92; max-width: 640px; margin: 0 auto; }
.breadcrumb { margin-top: 16px; font-size: 13px; letter-spacing: 1px; opacity: .8; }
.breadcrumb a { color: var(--denim-light); }
.breadcrumb a:hover { color: #fff; }

/* Generic rich text */
.prose p { margin-bottom: 18px; color: #333; font-size: 16.5px; }
.lead-text { font-size: 19px; color: var(--gray-text); line-height: 1.8; }

/* Stats band */
.stats-band { background: var(--black); color: #fff; padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; text-align: center; }
.stat-item .stat-num { font-size: clamp(28px, 3vw, 40px); font-weight: 900; color: var(--denim-light); line-height: 1; margin-bottom: 8px; }
.stat-item .stat-label { font-size: 13.5px; letter-spacing: .5px; opacity: .85; text-transform: uppercase; }

/* Generic info cards */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 34px 28px; transition: var(--transition); }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--denim-light); }
.info-card .info-ico { font-size: 34px; margin-bottom: 16px; }
.info-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.info-card p { color: var(--gray-text); font-size: 15px; }

/* Product filter */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 8px auto 44px; }
.filter-btn {
  padding: 10px 24px; border: 2px solid var(--black); background: #fff; color: var(--black);
  font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  border-radius: 40px; cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--denim); color: var(--denim); }
.filter-btn.active { background: var(--denim); border-color: var(--denim); color: #fff; }
.trend-item.hide { display: none; }
.product-tag {
  position: absolute; left: 10px; bottom: 10px; z-index: 2;
  background: rgba(0,0,0,.7); color: #fff; font-size: 11px; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
}

/* Custom options */
.option-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.option-card {
  background: #fff; border-radius: 8px; padding: 30px 22px; text-align: center;
  border: 1px solid var(--line); transition: var(--transition);
}
.option-card:hover { border-color: var(--denim); box-shadow: var(--shadow); transform: translateY(-5px); }
.option-ico { width: 48px; height: 48px; margin: 0 auto 16px; color: #14181f; transition: color .25s ease; }
.option-ico svg { width: 100%; height: 100%; display: block; }
.option-card:hover .option-ico { color: var(--denim); }
.option-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.option-card p { font-size: 13.5px; color: var(--gray-text); }

/* Highlight note band */
.note-band { background: linear-gradient(135deg, var(--denim), #0a4fb0); color: #fff; padding: 56px 0; text-align: center; }
.note-band h2 { font-size: clamp(24px,3vw,34px); font-weight: 900; margin-bottom: 12px; }
.note-band p { font-size: 17px; opacity: .94; max-width: 760px; margin: 0 auto 26px; }
.note-band .btn-light:hover { background: var(--black); border-color: var(--black); color:#fff; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.inquiry-form { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 40px; box-shadow: var(--shadow); }
.inquiry-form h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.inquiry-form .form-sub { color: var(--gray-text); font-size: 14.5px; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 7px; }
.form-group label .req { color: #d33; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 6px;
  font-family: inherit; font-size: 15px; color: var(--text); background: #fafbfc; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--denim); background: #fff; box-shadow: 0 0 0 3px rgba(0,51,136,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input[type="file"] { padding: 10px; background: #fff; }
.form-error { color: #d33; font-size: 12.5px; margin-top: 5px; display: none; }
.form-group.invalid input, .form-group.invalid textarea { border-color: #d33; }
.form-group.invalid .form-error { display: block; }
.btn-submit { width: 100%; padding: 16px; background: var(--denim); color: #fff; border: 0; border-radius: 6px; font-weight: 800; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.btn-submit:hover { background: var(--black); }
.form-success { display: none; background: #e8f6ec; border: 1px solid #9fd8b0; color: #1c7040; padding: 18px 20px; border-radius: 8px; margin-top: 18px; font-weight: 600; align-items: flex-start; gap: 10px; line-height: 1.55; }
.form-success.show { display: flex; }
.form-success .success-ico { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.form-success strong { font-weight: 800; }

.contact-side .contact-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px; margin-bottom: 22px; }
.contact-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; color: var(--text); }
.contact-card h4 svg { width: 21px; height: 21px; flex-shrink: 0; color: #14181f; }
.contact-card ul li { margin-bottom: 13px; font-size: 15px; color: #333; line-height: 1.55; }
.contact-card a { color: var(--denim); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-hours li { display: flex; justify-content: space-between; gap: 12px; }
.contact-hours li span:last-child { color: var(--gray-text); }
.map-placeholder {
  border-radius: 10px; overflow: hidden; height: 260px; margin-bottom: 22px;
  background:
    linear-gradient(rgba(0,51,136,.82), rgba(0,51,136,.82)),
    repeating-linear-gradient(0deg, #c9d6ea 0 38px, #dbe5f2 38px 40px),
    repeating-linear-gradient(90deg, #c9d6ea 0 38px, #dbe5f2 38px 40px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 20px;
}
.map-placeholder .pin { width: 46px; height: 46px; margin-bottom: 12px; color: #fff; }
.map-placeholder .pin svg { width: 100%; height: 100%; display: block; }
.map-placeholder strong { font-size: 17px; margin-bottom: 6px; }
.map-placeholder span { font-size: 14px; opacity: .9; }

/* Inner-page CTA spacing */
.section .section-title:first-child { margin-top: 0; }

/* Responsive for inner pages */
@media (max-width: 992px) {
  .stats-grid { grid-template-columns: repeat(3,1fr); gap: 30px 20px; }
  .info-grid { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .page-hero { height: 260px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .option-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form { padding: 26px 20px; }
}
