/* ============================================================
   SHIRTECH - Main Stylesheet
   Colors: Navy, Ink-Red, Thread-Teal, Gold, Purple
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --navy:       #0f0f23;
  --navy-mid:   #1a1a2e;
  --ink-red:    #e63946;
  --teal:       #2ec4b6;
  --gold:       #ff9f1c;
  --purple:     #7b2fbe;
  --light-bg:   #f8f9fa;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --text-muted: #6c757d;
  --border:     #e9ecef;

  --gradient: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0d1b4b 100%);
  --gradient-accent: linear-gradient(90deg, #e63946, #7b2fbe, #2ec4b6, #ff9f1c);

  --shadow:       0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.16);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.05rem; }
p  { color: var(--text-muted); }

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.gradient-text {
  background: linear-gradient(90deg, #2ec4b6, #ff9f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5.5rem 0; }
.section-alt { background: var(--light-bg); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr;      gap: 3rem;  align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

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

/* ===== SCROLL ANIMATIONS ===== */
.animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink-red);
  color: var(--white);
}
.btn-primary:hover {
  background: #c1121f;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--ink-red);
  border: 2px solid var(--ink-red);
}
.btn-outline:hover {
  background: var(--ink-red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: #24a99d;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(46, 196, 182, 0.35);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  padding: 0.75rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  color: var(--white);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}
.nav-logo .accent { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-links a:hover        { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--ink-red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #c1121f !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== COLOR BAR ===== */
.color-bar {
  height: 5px;
  background: var(--gradient-accent);
  background-size: 300% 100%;
  animation: colorSlide 5s linear infinite;
}
@keyframes colorSlide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

/* ===== HERO (HOME) ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient);
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(46, 196, 182, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(230, 57,  70, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(123, 47, 190, 0.10) 0%, transparent 55%);
}
.hero-content  { position: relative; z-index: 1; }
.hero h1       { color: var(--white); margin-bottom: 1.5rem; max-width: 720px; }
.hero .lead    { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px; margin-bottom: 2.5rem; }
.hero-buttons  { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3  { font-size: 2rem; color: var(--white); font-weight: 800; }
.hero-stat p   { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin: 0; }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  background: var(--gradient);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 50%, rgba(46, 196, 182, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 75% 50%, rgba(230, 57,  70, 0.12) 0%, transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero p  { color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: 1rem; color: var(--text); }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-accent);
  background-size: 300% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
}
.card-icon.red    { background: rgba(230, 57,  70, 0.10); }
.card-icon.teal   { background: rgba(46,  196, 182, 0.10); }
.card-icon.gold   { background: rgba(255, 159, 28,  0.10); }
.card-icon.purple { background: rgba(123, 47,  190, 0.10); }

.card h3 { margin-bottom: 0.75rem; color: var(--text); }
.card p  { margin-bottom: 1.5rem; }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--navy); padding: 4rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.25rem; }
.stat-item p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ===== WHO WE SERVE GRID ===== */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.serve-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
}
.serve-item:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 196, 182, 0.14);
}
.serve-item .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.serve-item h4    { font-size: 0.9rem; color: var(--text); }

/* ===== GALLERY ITEMS ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light-bg);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 15, 35, 0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--ink-red);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
}

/* ===== GALLERY PLACEHOLDER ===== */
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
}
.gallery-placeholder span { font-size: 2.5rem; }
.gallery-placeholder p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.lightbox-content {
  position: relative; z-index: 1;
  max-width: 90vw;
  text-align: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.lightbox-close {
  position: absolute;
  top: -2.25rem; right: 0;
  background: none; border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--ink-red), var(--teal));
}
.step { text-align: center; }
.step-number {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  position: relative; z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--navy);
}
.step h4 { color: var(--text); margin-bottom: 0.4rem; }
.step p  { font-size: 0.85rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(46, 196, 182, 0.2) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(230, 57,  70, 0.15) 0%, transparent 55%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.72); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-buttons    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTENT BLOCKS ===== */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-block.reverse .content-text { order: 2; }
.content-block.reverse .content-img  { order: 1; }

.content-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
}
.content-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.content-img-placeholder {
  border-radius: var(--radius-lg);
  background: var(--light-bg);
  aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  border: 2px dashed var(--border);
  font-size: 3.5rem;
}
.content-img-placeholder p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.tag.red    { background: rgba(230, 57,  70, 0.1);  color: var(--ink-red); }
.tag.teal   { background: rgba(46,  196, 182, 0.1); color: #1aaa9d; }
.tag.gold   { background: rgba(255, 159, 28,  0.1); color: #cc7a00; }
.tag.purple { background: rgba(123, 47,  190, 0.1); color: var(--purple); }

.content-text h2 { margin-bottom: 1rem; }
.content-text p  { margin-bottom: 1.5rem; }

.feature-list { list-style: none; margin: 1.5rem 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.14);
  color: #1aaa9d;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== PRODUCT GRID (print-on items) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.product-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.product-item:hover {
  border-color: var(--ink-red);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.1);
}
.product-item .icon { font-size: 1.75rem; margin-bottom: 0.6rem; }
.product-item h4    { font-size: 0.88rem; color: var(--text); font-weight: 600; }

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .icon { font-size: 2.25rem; margin-bottom: 1rem; }
.value-card h4 { color: var(--text); margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.9rem; }

/* ===== TIMELINE / STORY ===== */
.story-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.story-year {
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: var(--white);
}
.story-year h2 { font-size: 4rem; font-weight: 900; color: var(--teal); margin-bottom: 0.25rem; }
.story-year p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }

/* ===== PRICE TABLE ===== */
.price-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.price-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text);
}
.price-table tr:nth-child(even) td { background: var(--light-bg); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(46, 196, 182, 0.05); }
.price-tag { font-weight: 700; color: var(--ink-red); }
.price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

.price-disclaimer {
  background: rgba(46, 196, 182, 0.08);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
}
.price-disclaimer p { color: var(--text); margin: 0; font-size: 0.92rem; }

.price-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.include-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.include-item .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.include-item h4 { font-size: 0.92rem; color: var(--text); margin-bottom: 0.2rem; }
.include-item p  { font-size: 0.82rem; margin: 0; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { color: var(--text); margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(46, 196, 182, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.2rem; font-weight: 500; }
.contact-item p  { color: var(--text); font-weight: 600; margin: 0; font-size: 0.95rem; }

.social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.social-link:hover { background: var(--ink-red); transform: translateY(-3px); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-card h3 { color: var(--text); margin-bottom: 1.75rem; font-size: 1.3rem; }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--light-bg);
  transition: border-color var(--transition), background var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
textarea { resize: vertical; min-height: 140px; }

.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; }

.success-message {
  text-align: center;
  padding: 3rem 2rem;
}
.success-message .check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.12);
  color: var(--teal);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.success-message h3 { color: var(--text); margin-bottom: 0.5rem; }
.success-message p  { color: var(--text-muted); }

/* ===== AREA MAP CALLOUT ===== */
.area-callout {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  text-align: center;
}
.area-callout h3 { color: var(--teal); margin-bottom: 0.5rem; }
.area-callout p  { color: rgba(255,255,255,0.65); margin: 0; font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 4.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  margin: 1rem 0 1.5rem;
  font-size: 0.88rem;
  line-height: 1.85;
}
.footer-social   { display: flex; gap: 0.6rem; }
.footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; margin: 0; }

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

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--navy);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open     { display: flex; }
  .nav-links a        { font-size: 1.2rem; }
  .nav-toggle         { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .content-block { grid-template-columns: 1fr; }
  .content-block.reverse .content-text { order: 0; }
  .content-block.reverse .content-img  { order: 0; }
  .story-block   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .price-includes { grid-template-columns: 1fr; }

  .hero-stats    { flex-direction: column; gap: 1.5rem; }
  .hero-buttons  { flex-direction: column; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ===== MINIMUM ORDER BANNER ===== */
.min-order-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: rgba(255,159,28,0.07);
  border: 1px solid rgba(255,159,28,0.3);
  border-radius: var(--radius);
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
}
.min-order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.min-order-icon { font-size: 1.8rem; flex-shrink: 0; }
.min-order-item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}
.min-order-item span {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}
.min-order-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.15);
}

/* ===== UNIFORM PROGRAM ===== */
.uniform-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 680px;
  margin: 2.5rem auto 1rem;
}
.uniform-plan {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.uniform-plan--featured { border-color: var(--teal); }
.plan-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.plan-discount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-freq {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: left;
  flex: 1;
}
.plan-features li {
  font-size: 0.875rem;
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.plan-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.uniform-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}
.uniform-note a { color: var(--ink-red); }

@media (max-width: 600px) {
  .min-order-banner { flex-direction: column; gap: 1.25rem; }
  .min-order-divider { width: 3rem; height: 1px; }
  .uniform-plans { grid-template-columns: 1fr; max-width: 360px; }
}
