/* ============================================================
   POWERTRAIN SPECIALIST, INC. — MAIN STYLESHEET
   Color Palette:
     Dark BG:      #111214
     Mid Dark:     #1a1d22
     Card BG:      #22262e
     Accent Red:   #c0392b
     Accent Blue:  #1a3a6b
     Patriot Gold: #c9a84c
     White:        #ffffff
     Light Gray:   #e8e8e8
     Text Gray:    #b0b8c8
   ============================================================ */

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Open Sans', sans-serif;
  background: #111214;
  color: #e8e8e8;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.accent { color: #c0392b; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #c0392b;
  color: #fff;
  border-color: #c0392b;
}
.btn-primary:hover {
  background: #a93226;
  border-color: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #e8e8e8;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-large { padding: 15px 36px; font-size: 1.1rem; }
.btn-small { padding: 8px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- TOP BAR ---- */
.top-bar {
  background: #1a3a6b;
  padding: 8px 0;
  font-size: 0.82rem;
  color: #cdd8f0;
  border-bottom: 2px solid #c0392b;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar i { margin-right: 5px; color: #c9a84c; }

.flag-img {
  display: inline-block;
  vertical-align: middle;
  width: 44px;
  height: auto;
  border-radius: 3px;
  margin-right: 7px;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.top-bar a { color: #fff; font-weight: 600; }
.top-bar a:hover { color: #c9a84c; }

.top-bar-flag { font-weight: 600; color: #c9a84c; }

/* ---- HEADER / NAV ---- */
.site-header {
  background: #111214;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #c0392b;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  transition: background 0.3s ease;
}

.site-header.scrolled { background: rgba(17,18,20,0.97); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-logo img {
  height: 70px;
  width: auto;
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.85; }

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

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

.nav-menu ul li a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cdd8f0;
  padding: 8px 14px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #c0392b;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
  color: #fff;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
  transform: scaleX(1);
}

.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url('../images/hero-banner.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 30, 0.88) 0%,
    rgba(26, 58, 107, 0.55) 50%,
    rgba(10, 15, 30, 0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}

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

.hero-bizname-img {
  display: block;
  max-width: 100%;
  width: auto;
  max-height: 95px;
  height: auto;
  margin: 0 auto 16px auto;
  filter: drop-shadow(0 3px 15px rgba(0,0,0,0.7));
}

.hero-bizname {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
  text-align: center;
  width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  line-height: 1.15;
}

.hero-since {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.8rem, 6vw, 3.4rem);
  color: #c9a84c;
  margin-bottom: 22px;
  margin-top: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  line-height: 1.2;
  text-align: center;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
  text-align: center;
}

.star { color: #c0392b; margin: 0 4px; }

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-sub {
  font-size: 1.1rem;
  color: #cdd8f0;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: #c9a84c;
  margin-top: 8px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

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

/* ---- PATRIOT STRIP ---- */
.patriot-strip {
  background: linear-gradient(90deg, #1a3a6b 0%, #c0392b 50%, #1a3a6b 100%);
  padding: 14px 0;
  overflow: hidden;
}

.patriot-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.patriot-strip-inner span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.patriot-strip-inner i { margin-right: 6px; color: #c9a84c; }

/* ---- NOTICE SECTION ---- */
.notice-section {
  background: #1a1d22;
  padding: 40px 0;
  border-top: 1px solid #2a2f3a;
  border-bottom: 1px solid #2a2f3a;
}

.notice-box {
  background: #22262e;
  border: 2px solid #c0392b;
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.notice-icon {
  font-size: 2rem;
  color: #c0392b;
  flex-shrink: 0;
  margin-top: 4px;
}

.notice-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.notice-content ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice-content ul li {
  color: #b0b8c8;
  font-size: 0.95rem;
}

.notice-content ul li strong { color: #e8e8e8; }

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 { color: #fff; margin-bottom: 12px; }
.section-header p { color: #b0b8c8; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.75); }

/* ---- VALUES SECTION ---- */
.values-section {
  background: #111214;
  padding: 80px 0;
}

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

.value-card {
  background: #1a1d22;
  border: 1px solid #2a2f3a;
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: #c0392b;
}

.value-card.featured {
  border-color: #c9a84c;
  background: #1e2128;
  box-shadow: 0 4px 24px rgba(201,168,76,0.15);
}

.value-card.featured:hover {
  border-color: #c9a84c;
  box-shadow: 0 12px 40px rgba(201,168,76,0.25);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.value-icon img { width: 100%; height: 100%; object-fit: contain; }

.value-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.value-card p { color: #b0b8c8; font-size: 0.95rem; }

/* ---- SERVICES PREVIEW SECTION ---- */
.services-preview {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.services-preview-bg {
  position: absolute;
  inset: 0;
  background: url('../images/gears.jpg') center center / cover no-repeat;
  filter: brightness(0.15) saturate(0.5);
}

.services-preview-inner {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: rgba(26, 29, 34, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(4px);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #c0392b;
}

.service-icon {
  font-size: 2.2rem;
  color: #c0392b;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card p { color: #b0b8c8; font-size: 0.88rem; }

.services-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---- PATRIOTIC SECTION ---- */
.patriot-section {
  position: relative;
  padding: 80px 0;
  background: #1a1d22;
  overflow: hidden;
}

.patriot-section-bg {
  position: absolute;
  inset: 0;
  background: url('../images/patriotic-banner.jpg') center center / cover no-repeat;
  opacity: 0.08;
}

.patriot-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.patriot-flag-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.patriot-text h2 {
  color: #fff;
  margin-bottom: 20px;
}

.patriot-text p {
  color: #b0b8c8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.patriot-image img {
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border: 3px solid rgba(255,255,255,0.1);
  width: 100%;
  object-fit: cover;
  max-height: 360px;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, #1a3a6b 0%, #111214 60%);
  padding: 80px 0;
  text-align: center;
  border-top: 4px solid #c0392b;
}

.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { color: #b0b8c8; font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-address {
  color: #b0b8c8;
  font-size: 0.9rem;
  margin-top: 16px;
}
.cta-address i { color: #c0392b; margin-right: 6px; }

/* ---- FOOTER ---- */
.site-footer { background: #0d0f12; }

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid #1e2228;
}

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

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #7a8499;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  color: #c9a84c !important;
  margin-top: 8px !important;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li a {
  color: #7a8499;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links ul li a:hover { color: #fff; }

.footer-contact p {
  color: #7a8499;
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact i { color: #c0392b; margin-right: 8px; }
.footer-contact a { color: #cdd8f0; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
  background: #090b0d;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { color: #4a5568; font-size: 0.82rem; }
.footer-patriot { color: #c9a84c !important; font-weight: 600; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 80px 0;
  background: url('../images/hero-banner.jpg') center 30% / cover no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.92) 0%, rgba(26,58,107,0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #b0b8c8; font-size: 1.1rem; }

/* ---- ABOUT PAGE ---- */
.about-section { padding: 80px 0; background: #111214; }

.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 { color: #fff; margin-bottom: 20px; }
.about-text p { color: #b0b8c8; margin-bottom: 18px; font-size: 1rem; }

.about-tagline-box {
  background: #1a1d22;
  border-left: 4px solid #c9a84c;
  padding: 24px 28px;
  margin-top: 28px;
  border-radius: 0 8px 8px 0;
}

.big-quote {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: #c9a84c;
  margin-bottom: 10px !important;
}

.about-values-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: #1a1d22;
  border: 1px solid #2a2f3a;
  border-radius: 8px;
  padding: 20px 22px;
  transition: border-color 0.3s;
}

.sidebar-card:hover { border-color: #c0392b; }

.sidebar-card i {
  font-size: 1.5rem;
  color: #c0392b;
  margin-bottom: 10px;
}

.sidebar-card h4 { color: #fff; margin-bottom: 6px; }
.sidebar-card p { color: #b0b8c8; font-size: 0.9rem; }

/* ---- SERVICES DETAIL PAGE ---- */
.services-detail { padding: 80px 0; background: #111214; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-detail-card {
  background: #1a1d22;
  border: 1px solid #2a2f3a;
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}

.service-detail-card:hover {
  border-color: #c0392b;
  transform: translateY(-4px);
}

.service-detail-icon {
  font-size: 2rem;
  color: #c0392b;
  flex-shrink: 0;
  margin-top: 4px;
}

.service-detail-content h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-detail-content p {
  color: #b0b8c8;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.service-detail-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-detail-content ul li {
  color: #b0b8c8;
  font-size: 0.9rem;
  padding-left: 16px;
  position: relative;
}

.service-detail-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 80px 0; background: #111214; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-panel h2,
.contact-form-panel h2 {
  color: #fff;
  margin-bottom: 12px;
}

.contact-info-panel > p,
.contact-form-panel > p {
  color: #b0b8c8;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: #c0392b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.contact-detail h4 { color: #fff; margin-bottom: 4px; }
.contact-detail p { color: #b0b8c8; font-size: 0.95rem; }
.contact-detail a { color: #cdd8f0; }
.contact-detail a:hover { color: #fff; }

.contact-notice {
  background: #1a1d22;
  border: 1px solid #c0392b;
  border-radius: 8px;
  padding: 20px 22px;
  margin-top: 24px;
}

.contact-notice h4 {
  color: #c0392b;
  margin-bottom: 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-notice h4 i { margin-right: 6px; }

.contact-notice ul {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-notice ul li { color: #b0b8c8; font-size: 0.9rem; }
.contact-notice ul li strong { color: #e8e8e8; }

/* ---- CONTACT FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b0b8c8;
}

.form-group input,
.form-group textarea {
  background: #1a1d22;
  border: 1px solid #2a2f3a;
  border-radius: 4px;
  padding: 12px 16px;
  color: #e8e8e8;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #4a5568; }

.form-note { color: #4a5568; font-size: 0.8rem; text-align: center; }

/* ---- MAP SECTION ---- */
.map-section { padding: 60px 0; background: #1a1d22; }

.map-title { color: #fff; text-align: center; margin-bottom: 28px; }

.map-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #2a2f3a;
  margin-bottom: 20px;
}

.map-address-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #b0b8c8;
  font-size: 0.95rem;
}

.map-address-bar i { color: #c0392b; }
.map-address-bar strong { color: #fff; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .top-bar-inner { justify-content: center; gap: 4px; }
  .top-bar-flag { display: none; }
  .top-bar span { font-size: 0.75rem; }

  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111214;
    flex-direction: column;
    padding: 20px 24px;
    border-top: 2px solid #c0392b;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    gap: 0;
    z-index: 999;
  }

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

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    margin-bottom: 16px;
  }

  .nav-menu ul li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #1e2228;
  }

  .nav-cta { width: 100%; justify-content: center; }

  .hero { min-height: auto; padding: 20px 0 40px; }
  .hero-content { padding-top: 30px; padding-bottom: 40px; }
  .hero-text { max-width: 100%; }

  .hero-bizname {
    font-size: clamp(1.3rem, 6vw, 2rem);
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .hero-since {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    text-align: center;
  }

  .hero-eyebrow { text-align: center; }

  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  .hero-sub { font-size: 0.95rem; max-width: 100%; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .patriot-strip-inner { justify-content: center; }
  .patriot-strip-inner span:nth-child(4),
  .patriot-strip-inner span:nth-child(5) { display: none; }

  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .patriot-inner { grid-template-columns: 1fr; }
  .patriot-image { display: none; }

  .about-inner { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .notice-box { flex-direction: column; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .services-cta { flex-direction: column; align-items: center; }

  .hero-bizname {
    font-size: clamp(1.1rem, 5.5vw, 1.6rem);
    white-space: normal;
    word-break: break-word;
  }

  .hero-since {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .nav-logo img { height: 52px; }

  .section-header { margin-bottom: 32px; }
}

/* ---- FORM SUCCESS MESSAGE ---- */
.form-success {
  text-align: center;
  padding: 60px 30px;
  color: #fff;
}
.form-success i {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 20px;
  display: block;
}
.form-success h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #fff;
}
.form-success p {
  font-size: 1.1rem;
  color: #b0b8cc;
}
