/* ============================================================
   L.A. RECYCLING — style.css
   ============================================================ */

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

:root {
  --blue:        #002b66;
  --blue-mid:    #003b8f;
  --blue-light:  #0057d9;
  --green:       #079b37;
  --green-dark:  #047a2c;
  --green-pale:  #e4f6e9;
  --white:       #ffffff;
  --light:       #f4f8fb;
  --dark:        #071a3d;
  --gray:        #5c6b82;
  --border:      #dce5ef;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.07);
  --shadow-hover:0 20px 45px rgba(0,0,0,0.14);
  --radius:      16px;
  --font:        'Barlow', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a { color: inherit; }

/* ============================================================
   GOOGLE FONT IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;900&family=Barlow+Condensed:wght@700;900&display=swap');

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: linear-gradient(90deg, #001f4f, var(--blue-mid));
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.navbar {
  max-width: 1450px;
  margin: 0 auto;
  min-height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 4px;
}

.brand-name {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--white);
}

.brand-tagline {
  color: #31d456;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 4px 8px;
  margin-left: auto;
  line-height: 1;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

/* LANGUAGE SWITCH */
.language-switch {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 7px 10px;
  border-radius: 7px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* NAV ACTIONS */
.nav-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nav-btn {
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 9px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-btn.green { background: var(--green); }
.nav-btn.green:hover { background: var(--green-dark); transform: translateY(-2px); }

.nav-btn.outline { border: 1.5px solid rgba(255,255,255,0.7); }
.nav-btn.outline:hover { background: white; color: var(--blue); transform: translateY(-2px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 26px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px) scale(1.02); }

.btn-green {
  background: var(--green);
  color: white;
  box-shadow: 0 8px 20px rgba(7,155,55,0.22);
}
.btn-green:hover { background: var(--green-dark); box-shadow: 0 12px 28px rgba(7,155,55,0.3); }

.btn-white {
  background: white;
  color: var(--blue-light);
  border: 2px solid var(--blue-light);
}
.btn-white:hover { background: var(--blue-light); color: white; }

.btn.full { width: 100%; text-align: center; margin-top: 12px; }

/* ============================================================
   HERO (HOMEPAGE)
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  background-image: url("./images/hero-bottles.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.94) 0%,
    rgba(255,255,255,0.80) 38%,
    rgba(255,255,255,0.12) 72%,
    rgba(255,255,255,0.02) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: clamp(24px, 5vw, 80px);
  padding: 40px 0;
}

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 16px;
}

.hero h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(46px, 5.5vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h2 span { color: var(--green); }

.hero h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  background: var(--green);
  margin-top: 20px;
  border-radius: 999px;
}

.hero-text {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.feature {
  min-width: 195px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature h3 {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.feature p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.4;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 340px;
  background-image: url("./images/hero-bottles.jpg");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.90) 42%,
    rgba(255,255,255,0.25) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: clamp(24px, 5vw, 80px);
}

.page-hero-content h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(40px, 5vw, 58px);
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.page-hero-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--green);
  margin-top: 16px;
  border-radius: 999px;
}

.page-hero-content p {
  font-size: 19px;
  max-width: 580px;
  line-height: 1.6;
  color: var(--dark);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(30px, 3vw, 40px);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.title-line {
  width: 48px;
  height: 4px;
  background: var(--green);
  margin: 14px auto 0;
  border-radius: 999px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  padding: 100px 50px;
  background: linear-gradient(to bottom, #eef3f8, #f7fafc);
}

.steps {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  min-height: 170px;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 20px;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hover); }

.circle-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.circle-icon.blue { background: #e5eefc; }

.step-number {
  position: absolute;
  top: 28px;
  left: 84px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 6px 16px rgba(7,155,55,0.3);
}

.blue-num { background: var(--blue-light); }

.step-card h3 {
  grid-column: 2;
  grid-row: 1;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.step-card p {
  grid-column: 2;
  grid-row: 2;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}

.arrow { color: #8fa0b5; font-size: 42px; }

/* ============================================================
   MATERIALS SECTION
   ============================================================ */
.materials-section {
  padding: 90px 50px;
  background: linear-gradient(to bottom, #ffffff, #f7fafc);
}

.materials-grid {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.material-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.material-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.material-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.material-card:hover img { transform: scale(1.06); }

.card-body { padding: 18px; flex: 1; }

.card-body h3 {
  color: var(--blue);
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  min-height: 52px;
  line-height: 1.3;
}

.price {
  color: var(--green);
  font-size: 21px;
  font-weight: 900;
  margin: 12px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.card-body p { font-size: 13px; line-height: 1.5; color: var(--gray); }

.section-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  padding: 55px 50px;
  background: white;
}

.why-box {
  max-width: 1250px;
  margin: auto;
  background: linear-gradient(110deg, #001f4f, var(--blue-mid));
  color: white;
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  box-shadow: 0 18px 50px rgba(0,43,102,0.22);
  transition: transform 0.25s ease;
}

.why-box:hover { transform: translateY(-4px); }

.why-box h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.why-box > div > p { margin-top: 12px; line-height: 1.6; opacity: 0.9; }

.why-item {
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.22);
  padding-left: 24px;
}

.why-item span { font-size: 44px; }

.why-item h3 {
  margin-top: 10px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
  font-size: 16px;
}

.why-item p { margin-top: 8px; opacity: 0.85; font-size: 14px; line-height: 1.5; }

/* ============================================================
   INFO SECTION (HOMEPAGE)
   ============================================================ */
.info-section {
  padding: 65px 50px;
  background: linear-gradient(to bottom, #eef3f8, #ffffff);
}

.info-section-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
}

.info-card,
.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.info-card h2,
.contact-card h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-size: 26px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  color: var(--dark);
}

.hours-grid h3 {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.hours-grid p { font-size: 15px; margin-bottom: 6px; }

.contact-card {
  background: linear-gradient(135deg, #001f4f, var(--blue-mid));
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.contact-card h2 { color: white; }
.contact-card p { opacity: 0.9; font-size: 16px; }

/* ============================================================
   PRICES PAGE
   ============================================================ */
.prices-section {
  padding: 85px 50px;
  background: var(--light);
}

.prices-grid {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.price-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.price-card:hover img { transform: scale(1.05); }

.price-card-body { padding: 26px; }

.price-card-body h3 {
  color: var(--blue);
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.25;
}

.big-price {
  color: var(--green);
  font-size: 48px;
  font-weight: 900;
  margin-top: 16px;
  letter-spacing: -1.5px;
  line-height: 1;
}

.per-pound {
  display: inline-block;
  font-weight: 700;
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.examples { border-top: 1px solid var(--border); padding-top: 14px; }

.examples h4 {
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.examples p { color: var(--gray); font-size: 14px; }

.price-disclaimer {
  margin: 38px auto 0;
  max-width: 500px;
  text-align: center;
  background: white;
  border: 1px solid var(--border);
  padding: 18px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */
.locations-section {
  padding: 85px 50px;
  background: linear-gradient(to bottom, #ffffff, #f7fafc);
}

.location-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.location-card {
  background: white;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.location-card h3 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.info-row span {
  width: 50px;
  height: 50px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-row h4 {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-row p { font-size: 15px; line-height: 1.6; }

.info-row a { color: var(--blue-light); text-decoration: none; font-weight: 600; }
.info-row a:hover { text-decoration: underline; }

.location-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  min-height: 480px;
}

.map-card iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }

/* WHY VISIT */
.why-visit {
  padding: 85px 50px;
  background: var(--light);
}

.visit-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.visit-card {
  background: white;
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.visit-icon { font-size: 44px; margin-bottom: 14px; }

.visit-card h3 {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 17px;
}

.visit-card p { color: var(--gray); font-size: 15px; line-height: 1.55; }

/* ============================================================
   PROMOTIONS PAGE
   ============================================================ */
.promo-section {
  padding: 85px 50px;
  background: var(--light);
}

.promo-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.featured-promo {
  background: white;
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-promo:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.featured-promo h3 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.featured-promo > p { color: var(--gray); font-size: 15px; line-height: 1.6; }

.promo-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.promo-info { display: grid; gap: 20px; }

.promo-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.promo-icon { font-size: 36px; margin-bottom: 10px; }

.promo-info-card h3 {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 15px;
}

.promo-info-card p { color: var(--gray); font-size: 14px; line-height: 1.55; }

.mini-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.mini-link:hover { transform: translateX(5px); }

/* FORM STYLES */
.promo-form,
.contact-form { margin-top: 22px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}

.promo-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 4px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  font-size: 15px;
  font-family: var(--font);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fafcff;
}

.promo-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(0,87,217,0.1);
  background: white;
}

.promo-form input { margin-bottom: 14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-section {
  padding: 85px 50px;
  background: var(--light);
}

.contact-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info-card,
.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover,
.contact-form-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.contact-info-card h3,
.contact-form-card h3 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-row h4 {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-row p { font-size: 15px; line-height: 1.6; }

.contact-row a { color: var(--blue-light); text-decoration: none; font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.bottom-cta {
  padding: 70px 50px;
  background: white;
}

.bottom-cta-box {
  max-width: 1050px;
  margin: auto;
  text-align: center;
  background: linear-gradient(110deg, #001f4f, var(--blue-mid));
  color: white;
  border-radius: 20px;
  padding: 52px;
  box-shadow: 0 18px 50px rgba(0,43,102,0.22);
  transition: transform 0.25s ease;
}

.bottom-cta-box:hover { transform: translateY(-4px); }

.bottom-cta-box h2 {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.15;
}

.bottom-cta-box p { opacity: 0.9; font-size: 17px; }

.bottom-buttons {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue);
  color: white;
  padding: 70px 5%;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 44px;
}

.footer img {
  width: 80px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}

.footer h3 {
  color: #31d456;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
}

.footer a:hover { color: #31d456; transform: translateX(4px); }

.footer address { font-style: normal; }
.footer address p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 6px; }

.copyright {
  background: #001430;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 16px;
  font-size: 13px;
  margin-top: 40px;
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.floating-call-btn { display: none; }

@media (max-width: 768px) {
  .floating-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 9999;
    background: var(--green);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    letter-spacing: 0.5px;
  }

  body { padding-bottom: 78px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(7,155,55,0.5);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .nav-actions { display: none; }

  .materials-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-features { flex-wrap: wrap; }

  .why-box {
    grid-template-columns: 1fr 1fr;
  }

  .why-item {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.22);
    padding-left: 0;
    padding-top: 24px;
  }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .navbar { padding: 0 16px; }

  .brand img { width: 52px; height: 52px; }
  .brand-name { font-size: 20px; }
  .brand-tagline { display: none; }

  .menu-btn { display: block; }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #001f4f, var(--blue-mid));
    flex-direction: column;
    align-items: center;
    padding: 28px;
    display: none;
    box-shadow: 0 16px 32px rgba(0,0,0,0.2);
    z-index: 999;
  }

  .nav-links.active { display: flex; }

  .hero {
    min-height: auto;
    padding: 70px 24px 100px;
  }

  .hero-overlay,
  .page-hero-overlay {
    background: rgba(255,255,255,0.91);
  }

  .hero-content,
  .page-hero-content { margin-left: 0; }

  .hero h2 { font-size: 42px; }
  .page-hero-content h2 { font-size: 38px; }

  .hero-text,
  .page-hero-content p { font-size: 17px; }

  .hero-buttons,
  .bottom-buttons,
  .location-buttons { flex-direction: column; }

  .btn { width: 100%; text-align: center; }

  .feature { min-width: 100%; }

  .how-section,
  .materials-section,
  .prices-section,
  .locations-section,
  .promo-section,
  .contact-page-section,
  .why-visit,
  .why-section,
  .bottom-cta,
  .info-section { padding: 60px 24px; }

  .steps,
  .materials-grid,
  .prices-grid,
  .location-layout,
  .contact-layout,
  .promo-grid,
  .visit-grid,
  .why-box,
  .info-section-inner,
  .hours-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .arrow { display: none; }

  .material-card img { height: 210px; }
  .price-card img { height: 200px; }

  .map-card,
  .map-card iframe { min-height: 340px; }

  .why-box { padding: 32px 24px; }
  .bottom-cta-box { padding: 36px 24px; }
  .footer-grid { margin-bottom: 30px; }
}

/* ============================================================
   RESPONSIVE — 520px
   ============================================================ */
@media (max-width: 520px) {
  .brand-name { font-size: 18px; }
  .hero h2 { font-size: 34px; }
  .page-hero-content h2 { font-size: 32px; }
  .eyebrow { font-size: 13px; }

  .step-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .circle-icon { grid-column: auto; grid-row: auto; margin-bottom: 12px; }
  .step-card h3,
  .step-card p { grid-column: auto; grid-row: auto; }
  .step-number { top: 18px; left: calc(50% + 22px); }

  .card-body h3 { min-height: auto; }

  .lang-btn { padding: 6px 8px; font-size: 11px; }
}