/* ============================================================
   ANYTIME INC. — Main Stylesheet
   anytime.css
   Applies to: index.html, about.html, services.html, contact.html
   Fonts loaded via Google Fonts in each page <head>
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --orange:      #FF6B00;
  --orange-glow: rgba(255, 107, 0, 0.2);
  --black:       #1A1A1A;
  --dark:        #222222;
  --dark2:       #2E2E2E;
  --dark3:       #3A3A3A;
  --white:       #FFFFFF;
  --light:       #F5F5F5;
  --light2:      #EBEBEB;
  --light3:      #E0E0E0;
  --text:        #1A1A1A;
  --text-muted:  #555555;
  --grey:        #777777;
  --border:      #DDDDDD;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
}


/* ============================================================
   EMERGENCY BAR
   ============================================================ */
.emergency-bar {
  background: var(--orange);
  text-align: center;
  padding: 10px 20px;
  animation: pulse-bar 3s ease-in-out infinite;
}
@keyframes pulse-bar {
  0%, 100% { background: #FF6B00; }
  50%       { background: #FF8C00; }
}
.emergency-bar a {
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.emergency-bar a:hover {
  text-decoration: underline;
}


/* ============================================================
   NAV
   ============================================================ */
nav {
  background: var(--black);
  border-bottom: 3px solid var(--orange);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 30px rgba(255, 107, 0, 0.15);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span {
  color: var(--orange);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--black) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  font-weight: 900 !important;
  box-shadow: 0 0 20px var(--orange-glow);
  transition: box-shadow 0.2s, transform 0.15s;
}
.nav-cta:hover {
  box-shadow: 0 0 40px var(--orange-glow) !important;
  transform: translateY(-1px);
  color: var(--black) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background: url('../images/high_voltage.jpg') center / cover no-repeat;
	filter: brightness(0.45);
	transform: scale(1.05);
	animation: slow-zoom 18s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.13); }
}
.hero h1 {
  color: var(--white);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-slash {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--black);
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 1100px;
  animation: fade-up 0.9s ease both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  animation: fade-up 0.9s 0.1s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fade-up 0.9s 0.2s ease both;
}
.hero h1 .line-orange {
  color: var(--orange);
  display: block;
  text-shadow: 0 0 60px var(--orange-glow);
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #cccccc;
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.65;
  animation: fade-up 0.9s 0.3s ease both;
}
.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 46px;
  animation: fade-up 0.9s 0.4s ease both;
}
.badge {
 background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 107, 0, 0.6);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
}
.hero-cta .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-cta .btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  animation: fade-up 0.9s 0.5s ease both;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 44px;
  border-radius: 2px;
  box-shadow: 0 0 40px var(--orange-glow), 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover::after {
  transform: translateX(100%);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 80px var(--orange-glow), 0 12px 40px rgba(0, 0, 0, 0.5);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 36px;
  border: 2px solid var(--text);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}


/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--light2);
  border-bottom: 3px solid var(--orange);
  border-top: 1px solid var(--border);
  padding: 28px 40px;
}
.trust-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  text-align: center;
  font-family: var(--font-display);
}
.t-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.t-label {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}


/* ============================================================
   SECTION BASE
   ============================================================ */
section {
  padding: 90px 40px;
}
.section-inner {
  max-width: 1200px;
  margin: auto;
}
.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text);
}
.section-title span {
  color: var(--orange);
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: var(--light);
  padding: 48px 36px;
  border-top: 3px solid transparent;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: background 0.25s, border-top-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  background: var(--white);
  border-top-color: var(--orange);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.service-list {
  list-style: none;
}
.service-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0 4px 16px;
  position: relative;
}
.service-list li::before {
  content: '▸';
  color: var(--orange);
  position: absolute;
  left: 0;
}


/* ============================================================
   PHONE BAND
   ============================================================ */
.phone-band {
  background: var(--orange);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.phone-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.06) 20px,
    rgba(0, 0, 0, 0.06) 40px
  );
}
.phone-band-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
}
.phone-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 10px;
}
.phone-band p {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 30px;
  font-weight: 600;
}
.phone-number-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--black);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 4px;
  text-decoration: none;
  padding: 20px 50px;
  border-radius: 2px;
  transition: transform 0.15s;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.phone-number-link:hover {
  transform: scale(1.03);
}


/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section {
  background: var(--light2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 60px;
}
.why-image-block {
  position: relative;
}
.why-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.why-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--light3);
  border: 2px dashed var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--grey);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.why-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 24px;
  line-height: 1.2;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 8px 30px var(--orange-glow);
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-point-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.why-point-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text);
}
.why-point-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}


/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  background: var(--white);
  border-top: 3px solid var(--orange);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
}
.area-pill {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.area-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--white);
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--light2);
  border-top: 1px solid var(--border);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: 'ANYTIME';
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22vw;
  color: rgba(255, 107, 0, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--text);
}
.final-cta h2 span {
  color: var(--orange);
}
.final-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 44px;
  line-height: 1.7;
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 3px solid var(--orange);
  padding: 50px 40px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--white);
}
.footer-brand-name span {
  color: var(--orange);
}
.footer-tagline {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 2px;
  transition: opacity 0.2s;
}
.footer-phone:hover {
  opacity: 0.8;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-bottom {
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid #3a3a3a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: #888888;
  font-size: 0.82rem;
  letter-spacing: 1px;
}
.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}


/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .areas-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 3px solid var(--orange);
    padding: 20px;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li   { width: 100%; }
  .nav-links a    { display: block; padding: 14px 0; border-bottom: 1px solid #555555; font-size: 1.2rem; }
  .nav-cta        { margin-top: 14px; text-align: center; }
  .nav-toggle     { display: flex; }

  section { padding: 60px 20px; }

  .services-grid      { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr; gap: 50px; }
  .why-image-badge    { right: 0; bottom: -10px; }
  .areas-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-inner       { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .trust-divider      { display: none; }
  .phone-number-link  { font-size: 1.8rem; padding: 16px 30px; }
}


/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .btn-primary {
    font-size: 1.2rem;
    padding: 16px 28px;
    width: 100%;
    justify-content: center;
  }
  .btn-secondary {
    font-size: 1rem;
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }
  .phone-number-link {
    font-size: 1.5rem;
    padding: 14px 20px;
    width: 100%;
    justify-content: center;
  }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
