/* =============================================
   INTEGRITY AUTO SALON — MAINTENANCE PAGE CSS
   ============================================= */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --red:      #F3220D;
  --red-dark: #c41a08;
  --dark:     #0d0d0d;
  --dark-2:   #141414;
  --dark-3:   #1e1e1e;
  --dark-4:   #2a2a2a;
  --gray:     #888888;
  --light:    #f4f4f4;
  --white:    #ffffff;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ---- Utility ---- */
.text-red { color: var(--red) !important; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}
.section-eyebrow.light { color: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.section-sub {
  color: var(--gray);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
}

.btn-primary-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary-red:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-red {
  display: inline-block;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 28px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   MAINTENANCE BAR
   ============================================= */
.maintenance-bar {
  background: var(--dark-2);
  border-bottom: 1px solid #2a2a2a;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #cccccc;
  font-family: var(--font-body);
  position: relative;
  z-index: 100;
}

.maintenance-dot {
  width: 8px;
  height: 8px;
  background: #f0c419;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.maintenance-call {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.maintenance-call:hover { background: var(--red-dark); color: var(--white); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: url('old-landing-page/image/lp1.jpg') center center / cover no-repeat;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.80) 50%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

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

.hero-row { min-height: 85vh; padding-top: 60px; padding-bottom: 60px; }

/* Hero Left */
.hero-left { padding-right: 40px; }

.hero-logo {
  width: 220px;
  max-width: 60%;
  margin-bottom: 30px;
  display: block;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 30px;
}

/* Phone CTA */
.phone-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 4px;
  transition: all 0.25s;
  margin-bottom: 30px;
}
.phone-cta-btn:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243,34,13,0.35);
}
.phone-icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.phone-text { display: flex; flex-direction: column; }
.phone-text small { font-size: 11px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }
.phone-text strong { font-size: 20px; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.5px; }

/* Trust Row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.trust-item i {
  color: var(--red);
  font-size: 15px;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* Service Areas */
.hero-areas {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.hero-areas i {
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

/* =============================================
   LEAD FORM CARD
   ============================================= */
.lead-form-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.form-card-header {
  background: var(--dark-3);
  padding: 22px 28px;
  border-bottom: 3px solid var(--red);
}
.form-card-header h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 4px;
}
.form-card-header p {
  color: var(--gray);
  font-size: 13px;
  margin: 0;
}

.form-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Form Fields */
.field-group {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 14px;
  color: var(--gray);
  font-size: 14px;
  z-index: 2;
  pointer-events: none;
}

.custom-input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid #e0e0e0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #222;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.custom-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(243,34,13,0.1);
  background: #fff;
}
.custom-input::placeholder { color: #aaa; }

.custom-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Dark variant (for CTA section) */
.field-group.dark .field-icon { color: #888; }
.custom-input.dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.custom-input.dark:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(243,34,13,0.15);
  background: rgba(255,255,255,0.12);
}
.custom-input.dark::placeholder { color: rgba(255,255,255,0.4); }
.custom-input.dark option { background: var(--dark-3); color: var(--white); }

.form-submit-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 15px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.25s;
  margin-top: 4px;
}
.form-submit-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243,34,13,0.4);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--red);
  padding: 28px 0;
}

.stat-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s, transform 0.5s;
}
.stat-item.visible { opacity: 1; transform: none; }
.stat-item:nth-child(1) { transition-delay: 0s; }
.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.2s; }

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* Divider between stats on desktop */
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.3);
}
@media(max-width:576px) {
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 16px; margin-top: 8px; }
  .stats-bar { padding: 20px 0; }
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: var(--dark-2);
  padding: 90px 0;
}

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

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 32px 24px 28px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible {
  opacity: 1;
  transform: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(243,34,13,0.15);
}

.service-img-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(243,34,13,0.12);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--red);
}

.service-card h4 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   INTEGRITY ADVANTAGE
   ============================================= */
.advantage-section {
  background: var(--dark);
  padding: 90px 0;
}

.advantage-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.advantage-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s, transform 0.5s;
}
.advantage-item.visible { opacity: 1; transform: none; }
.advantage-item:nth-child(1) { transition-delay: 0s; }
.advantage-item:nth-child(2) { transition-delay: 0.1s; }
.advantage-item:nth-child(3) { transition-delay: 0.2s; }
.advantage-item:nth-child(4) { transition-delay: 0.3s; }

.adv-icon {
  width: 48px;
  height: 48px;
  background: rgba(243,34,13,0.12);
  border: 1px solid rgba(243,34,13,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
  flex-shrink: 0;
}

.advantage-item h5 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 6px;
}
.advantage-item p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--dark-2);
  padding: 90px 0;
}

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 28px;
  height: 100%;
  transition: transform 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.testimonial-card.visible { opacity: 1; transform: none; }
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243,34,13,0.3);
}

.stars {
  color: #f0c419;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-head);
  font-weight: 600;
}
.reviewer span {
  font-size: 12px;
  color: var(--gray);
}

.yelp-badge {
  font-size: 11px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}
.yelp-badge i { color: #d32323; font-size: 14px; }

/* =============================================
   BOTTOM CTA SECTION
   ============================================= */
.cta-section {
  background: url('old-landing-page/image/lp3.jpg') center center / cover no-repeat;
  position: relative;
  padding: 100px 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1;
}
.cta-content { position: relative; z-index: 2; }

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-desc {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 4px;
  transition: all 0.25s;
  letter-spacing: 0.5px;
}
.cta-phone-btn:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(243,34,13,0.4);
}

.cta-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 36px;
  backdrop-filter: blur(8px);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  width: 160px;
  opacity: 0.85;
}

.footer-text {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
}

.footer-link {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--red); }

.footer-phone {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--red); }

/* =============================================
   FLOATING CALL BUTTON (Mobile)
   ============================================= */
.float-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(243,34,13,0.5);
  animation: pulse-call 2s infinite;
}
@keyframes pulse-call {
  0%   { box-shadow: 0 6px 20px rgba(243,34,13,0.5); }
  50%  { box-shadow: 0 6px 30px rgba(243,34,13,0.8); }
  100% { box-shadow: 0 6px 20px rgba(243,34,13,0.5); }
}
.float-call-btn:hover { background: var(--red-dark); color: var(--white); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .hero-left { padding-right: 0; }
  .hero-row { padding-top: 40px; padding-bottom: 50px; }
  .hero { min-height: auto; }
  .advantage-img { max-height: 380px; margin-bottom: 0; }
  .lead-form-card { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 767px) {
  .hero-logo { width: 180px; }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .trust-divider { display: none; }
  .cta-form-card { padding: 24px 16px; }
  .btn-primary-red, .btn-outline-red { font-size: 15px; padding: 10px 20px; }
  .advantage-section .row.g-5 { gap: 30px; }
}

@media (max-width: 480px) {
  .maintenance-bar { font-size: 12px; gap: 8px; }
  .maintenance-bar span { text-align: center; }
  .phone-text strong { font-size: 17px; }
  .form-card-body { padding: 18px 16px 22px; }
  .form-card-header { padding: 18px 16px; }
  .section-title { font-size: 28px; }
  .services-section, .advantage-section, .testimonials-section, .cta-section { padding: 60px 0; }
}
