/* ===== Athena Towing LLC — consolidated site ===== */
:root {
  --black: #0e1014;
  --charcoal: #16191f;
  --charcoal-2: #1f242c;
  --red: #d61f2b;
  --red-dark: #b1141f;
  --white: #ffffff;
  --gray-50: #f6f7f9;
  --gray-100: #eceef1;
  --gray-300: #c7ccd3;
  --gray-500: #7a818c;
  --gray-700: #444a53;
  --text: #1b1e24;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .22);
  --radius: 14px;
  --maxw: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .5px;
  text-transform: uppercase;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .78rem;
  color: var(--red);
  font-weight: 600;
}

.section { padding: 84px 0; }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--gray { background: var(--gray-50); }
.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 10px 0 14px; }
.section-head p { color: var(--gray-700); font-size: 1.05rem; }
.section--dark .section-head p { color: var(--gray-300); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px;
  font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 10px;
  border: 2px solid transparent; cursor: pointer; transition: .2s ease;
  white-space: nowrap;
}
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: #fff; color: var(--black); border-color: #fff; }
.btn-dark { background: var(--black); color: #fff; border-color: var(--black); }
.btn-dark:hover { background: var(--charcoal-2); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== Header ===== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .25s ease, box-shadow .25s ease;
  background: linear-gradient(to bottom, rgba(8,9,12,.65), rgba(8,9,12,0));
}
.header.scrolled { background: var(--black); box-shadow: 0 2px 20px rgba(0,0,0,.35); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand__badge {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
  background: #fff;
}
.brand__badge img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12); transform-origin: center;
  display: block;
}
/* Footer logo is slightly smaller */
.footer__brand .brand__badge { width: 56px; height: 56px; }
.brand__name { color: #fff; line-height: 1.05; }
.brand__name strong { font-family: "Oswald", sans-serif; font-size: 1.18rem; letter-spacing: 1px; text-transform: uppercase; display: block; }
.brand__name span { font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray-300); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: #f1f2f4; font-weight: 500; font-size: .96rem; transition: color .15s; }
.nav a:hover { color: var(--red); }
.header__call { display: flex; align-items: center; gap: 14px; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 3px; margin: 5px 0; transition: .25s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; padding-top: var(--header-h);
  background: linear-gradient(105deg, rgba(8,9,12,.93) 0%, rgba(10,12,16,.74) 45%, rgba(10,12,16,.35) 100%),
              url("../assets/img/hero.jpg") center/cover no-repeat;
}
.hero__inner {
  max-width: 1180px; padding: 40px 0;
  display: flex; align-items: center; gap: 60px;
}
.hero__text { flex: 1 1 auto; min-width: 0; max-width: 700px; }
.hero__logo-wrap {
  flex: 0 0 auto;
  width: clamp(150px, 16vw, 200px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,.55));
  display: block;
}
.hero__logo {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12); transform-origin: center;
  display: block;
}
.hero h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); margin: 16px 0 18px; }
.hero h1 .accent { color: var(--red); }
.hero__sub { font-size: 1.15rem; color: #e7e9ec; max-width: 600px; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: #eceef1; font-weight: 500; }
.chip svg { color: var(--red); flex-shrink: 0; }

/* ===== Services ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  overflow: hidden; transition: .25s ease; display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-card__body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.svc-card__body p { color: var(--gray-700); font-size: .96rem; flex: 1; }
.svc-card.is-feature { grid-column: span 3; flex-direction: row; }
.svc-card.is-feature .svc-card__img { flex: 1 1 50%; aspect-ratio: auto; }
.svc-card.is-feature .svc-card__body { flex: 1 1 50%; justify-content: center; padding: 40px; }
.svc-card.is-feature h3 { font-size: 1.9rem; }
.tag { display: inline-block; background: var(--red); color: #fff; font-family: "Oswald",sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: .72rem; padding: 4px 11px; border-radius: 30px; margin-bottom: 14px; width: fit-content; }

/* more services list */
.more-svc { margin-top: 34px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.more-svc div {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 10px; padding: 16px 18px;
  font-weight: 600; display: flex; align-items: center; gap: 10px; font-size: .96rem;
}
.more-svc svg { color: var(--red); flex-shrink: 0; }

/* ===== Why us / values ===== */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.value { text-align: center; }
.value__icon { width: 70px; height: 70px; border-radius: 50%; background: rgba(214,31,43,.12); color: var(--red); display: grid; place-items: center; margin: 0 auto 18px; }
.value h3 { font-size: 1.25rem; margin-bottom: 8px; }
.value p { color: var(--gray-300); font-size: .95rem; }
.guarantee-bar { margin-top: 56px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); }
.guarantee-bar span { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: 1rem; display: inline-flex; align-items: center; gap: 10px; }
.guarantee-bar svg { color: var(--red); }

/* ===== EV / Tesla split ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split__img { min-height: 420px; background-size: cover; background-position: center; }
.split__body { background: var(--charcoal); color: #fff; padding: 56px 50px; display: flex; flex-direction: column; justify-content: center; }
.split__body h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 14px 0 16px; }
.split__body p { color: var(--gray-300); margin-bottom: 14px; }
.split__body ul { list-style: none; margin: 6px 0 28px; }
.split__body li { padding: 7px 0 7px 30px; position: relative; color: #e7e9ec; }
.split__body li::before { content: ""; position: absolute; left: 0; top: 13px; width: 14px; height: 8px; border-left: 3px solid var(--red); border-bottom: 3px solid var(--red); transform: rotate(-45deg); }

/* ===== Process ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding: 36px 28px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.step__num { counter-increment: step; font-family: "Oswald",sans-serif; font-size: 3rem; color: var(--red); line-height: 1; }
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.3rem; margin: 10px 0 8px; }
.step p { color: var(--gray-700); font-size: .96rem; }

/* ===== Service area ===== */
.area { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.area__photo img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.area h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 10px 0 16px; }
.area p { color: var(--gray-700); margin-bottom: 22px; }
.area__towns { display: flex; flex-wrap: wrap; gap: 10px; }
.town { background: #fff; border: 1px solid var(--gray-100); border-radius: 30px; padding: 9px 18px; font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; }
.town svg { color: var(--red); }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--gray-100); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: "Oswald",sans-serif; text-transform: uppercase; letter-spacing: .5px; font-size: 1.06rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.7rem; color: var(--red); line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 22px; color: var(--gray-700); }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact__info h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin: 10px 0 18px; color: #fff; }
.contact__info > p { color: var(--gray-300); margin-bottom: 28px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.info-row__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--red); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.info-row strong { font-family: "Oswald",sans-serif; text-transform: uppercase; letter-spacing: 1px; display: block; color: #fff; font-size: 1.05rem; }
.info-row a, .info-row span { color: var(--gray-300); }
.info-row a:hover { color: var(--red); }

.form { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-lg); }
.form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form > p { color: var(--gray-700); font-size: .92rem; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-700); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--gray-300); border-radius: 9px;
  font: inherit; font-size: .96rem; background: var(--gray-50); transition: .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(214,31,43,.12); }
.field textarea { resize: vertical; min-height: 96px; }
.form .btn { width: 100%; justify-content: center; }
.consent { font-size: .72rem; color: var(--gray-500); margin-top: 16px; line-height: 1.5; }
.consent a { color: var(--red); text-decoration: underline; }

/* ===== Footer ===== */
.footer { background: var(--black); color: var(--gray-300); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { font-size: .93rem; max-width: 320px; }
.footer h4 { font-family: "Oswald",sans-serif; text-transform: uppercase; letter-spacing: 1px; color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; font-size: .93rem; }
.footer li a:hover { color: var(--red); }
.footer__bottom { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; color: var(--gray-500); }
.footer__bottom a { color: var(--gray-500); }
.footer__bottom a:hover { color: var(--red); }

/* ===== Mobile call bar ===== */
.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--red); padding: 11px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,.25); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff; font-family: "Oswald",sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-size: 1.15rem; font-weight: 600; }

/* ===== Nav dropdown ===== */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.nav__chev { transition: transform .2s ease; }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: -14px; min-width: 240px;
  background: var(--charcoal); border-radius: 10px; padding: 8px 0;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
  border: 1px solid rgba(255,255,255,.06);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown:hover .nav__chev,
.nav__dropdown.open .nav__chev { transform: rotate(180deg); }
.nav__dropdown-menu a {
  display: block; padding: 10px 18px; font-size: .92rem; color: #e7e9ec;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nav__dropdown-menu a:last-child { border-bottom: none; }
.nav__dropdown-menu a:hover { background: rgba(214,31,43,.15); color: #fff; }
.nav a[aria-current="page"] { color: var(--red); }

/* ===== Inner-page hero (shorter than home hero) ===== */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 80px) 0 70px;
  color: #fff;
  background: linear-gradient(105deg, rgba(8,9,12,.92) 0%, rgba(10,12,16,.78) 60%, rgba(10,12,16,.55) 100%),
              url("../assets/img/hero.jpg") center/cover no-repeat;
}
.page-hero__inner { max-width: 780px; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 14px 0 16px; }
.page-hero h1 .accent { color: var(--red); }
.page-hero p { font-size: 1.1rem; color: #e7e9ec; margin-bottom: 24px; max-width: 640px; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.breadcrumbs { font-size: .85rem; color: var(--gray-300); margin-bottom: 6px; }
.breadcrumbs a { color: var(--gray-300); }
.breadcrumbs a:hover { color: var(--red); }

/* ===== Service-page two-column ===== */
.svc-detail { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: start; }
.svc-detail__body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 18px 0 14px; }
.svc-detail__body h3 { font-size: 1.25rem; margin: 22px 0 8px; }
.svc-detail__body p { color: var(--gray-700); margin-bottom: 14px; }
.svc-detail__body ul { margin: 8px 0 18px 22px; color: var(--gray-700); }
.svc-detail__body li { margin-bottom: 6px; }
.svc-detail__side { position: sticky; top: calc(var(--header-h) + 20px); }
.svc-detail__photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 22px; }
.svc-detail__photo img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.svc-detail__card { background: var(--charcoal); color: #fff; border-radius: var(--radius); padding: 28px; }
.svc-detail__card h4 { font-family: "Oswald",sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 1.1rem; margin-bottom: 10px; }
.svc-detail__card p { color: var(--gray-300); font-size: .94rem; margin-bottom: 18px; }
.svc-detail__card .btn { width: 100%; justify-content: center; margin-bottom: 8px; }

/* Cross-sell related-services strip */
.related-svc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.related-svc a {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 12px; padding: 18px 20px;
  display: flex; align-items: center; gap: 10px; font-weight: 600; transition: .2s;
}
.related-svc a:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; color: var(--red); }
.related-svc svg { color: var(--red); flex-shrink: 0; }

/* ===== CTA band ===== */
.cta-band__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 12px 0 14px; color: #fff; }
.cta-band p { color: var(--gray-300); font-size: 1.05rem; margin-bottom: 26px; }
.cta-band__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ===== Form states ===== */
.form-status { padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: .94rem; }
.form-status--success { background: #ecf8ed; color: #18651e; border: 1px solid #b6e0ba; }
.form-status--error   { background: #fdecec; color: #8e1818; border: 1px solid #f3b8b8; }
.field--invalid input, .field--invalid textarea { border-color: var(--red); background: #fff7f7; }
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); gap: 34px 26px; }
  .more-svc { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .split, .area, .contact { grid-template-columns: 1fr; }
  .split__img { min-height: 280px; }
  .area__photo { order: -1; }
}
@media (max-width: 860px) {
  /* Hero stacks: text first, logo below — keeps focus on H1 above the fold */
  .hero__inner { flex-direction: column; gap: 28px; align-items: flex-start; }
  .hero__logo-wrap { width: 140px; align-self: flex-start; }
  .nav, .header__call .btn { display: none; }
  .hamburger { display: block; }
  .header__call { display: none; }
  .header.scrolled, .header { background: var(--black); }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--charcoal); padding: 8px 0; box-shadow: var(--shadow-lg);
  }
  .nav.open a { padding: 15px 24px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .callbar { display: block; }
  body { padding-bottom: 62px; }
  .section { padding: 60px 0; }
  .steps { grid-template-columns: 1fr; }
  .svc-card.is-feature { flex-direction: column; }
  .svc-card.is-feature .svc-card__img { aspect-ratio: 16/10; }
  .svc-card.is-feature .svc-card__body { padding: 28px; }
}
@media (max-width: 540px) {
  .svc-grid, .more-svc, .values, .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .brand__name span { display: none; }
  .hero { min-height: 92vh; }
}

/* Service-detail responsive */
@media (max-width: 980px) {
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail__side { position: static; }
  .related-svc { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .related-svc { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--header-h) + 50px) 0 50px; }
}

/* Mobile nav dropdown — show as expandable section */
@media (max-width: 860px) {
  .nav.open .nav__dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; padding-left: 14px; border: none;
    border-radius: 0;
  }
  .nav.open .nav__dropdown-menu a { padding: 12px 24px; }
}
