/* ===================================================
   SYDNEY LCT TOWING — STYLESHEET
   Mobile-first, responsive
   Breakpoints: 375px (base) | 768px (tablet) | 1280px (desktop)
=================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --blue:       #5BB8F5;
  --blue-dark:  #3a9fe0;
  --charcoal:   #1C1C1E;
  --charcoal-2: #2a2a2d;
  --white:      #FFFFFF;
  --light-bg:   #F4F6F8;
  --text:       #1C1C1E;
  --text-muted: #6b7280;
  --border:     #e5e7eb;

  --font-head:  'Anton', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);

  --header-h:   70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- SECTION BASE ---------- */
.section {
  padding: 72px 0;
}

.section.bg-light {
  background: var(--light-bg);
}

.section.bg-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-header--light h2 {
  color: var(--white);
}

.section-header--light p {
  color: rgba(255,255,255,0.65);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--charcoal);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91,184,245,0.4);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.15rem;
  border-radius: var(--radius);
}

/* ===========================================
   HEADER
=========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 1px;
  align-items: center;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.header-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.header-cta i {
  font-size: 0.95rem;
}

.header-cta--whatsapp {
  background: #25D366;
  color: var(--white);
}

.header-cta--whatsapp:hover {
  background: #1ebe5d;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.header-nav a:hover {
  opacity: 1;
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hide text on very small screens — show icon only */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-phone {
    display: none;
  }
  .header-cta {
    padding: 10px 14px;
  }
}

/* ===========================================
   HERO
=========================================== */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

/* Subtle animated background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(91, 184, 245, 0.03) 40px,
    rgba(91, 184, 245, 0.03) 41px
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(91,184,245,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(91,184,245,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,30,0.97) 0%, rgba(28,28,30,0.88) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 860px;
  margin: 40px auto 0;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(91, 184, 245, 0.35);
}

.hero-photo:hover {
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(91, 184, 245, 0.7);
}

@media (max-width: 599px) {
  .hero-photos {
    gap: 8px;
  }
  .hero-photo {
    border-radius: 8px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,184,245,0.15);
  border: 1px solid rgba(91,184,245,0.35);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 20px;
}

.hl-1, .hl-2 {
  display: block;
}

@media (max-width: 599px) {
  .hl-1 {
    font-size: 1.75rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .hl-2 {
    font-size: 2.9rem;
    letter-spacing: 2px;
  }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.cta-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  color: var(--blue);
  font-size: 0.95rem;
}

/* ===========================================
   SERVICES
=========================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(91,184,245,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--blue);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 599px) {
  .services-grid {
    gap: 10px;
  }
  .service-card {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .service-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    margin-bottom: 0;
  }
  .service-icon i {
    font-size: 1rem;
  }
  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .service-card p {
    display: none;
  }
}

/* ===========================================
   WHY CHOOSE US
=========================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  text-align: center;
  padding: 16px;
}

.why-icon {
  width: 68px;
  height: 68px;
  background: rgba(91,184,245,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon i {
  font-size: 1.6rem;
  color: var(--blue);
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* ===========================================
   COVERAGE AREA
=========================================== */
.suburbs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.suburb-tag {
  background: var(--white);
  border: 1.5px solid var(--blue);
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.suburb-tag:hover {
  background: var(--blue);
  color: var(--charcoal);
}

.coverage-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 8px;
}

/* ===========================================
   REVIEWS
=========================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--charcoal);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.review-stars i {
  color: #f59e0b;
  font-size: 0.95rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 16px;
  font-style: italic;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
}

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

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}

.reviews-link:hover {
  gap: 12px;
}

/* ===========================================
   ABOUT
=========================================== */
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-inner {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
}

.about-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 380px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-text .btn {
  margin-top: 8px;
}

/* ===========================================
   FINAL CTA STRIP
=========================================== */
.cta-strip {
  background: var(--blue);
  padding: 80px 0;
}

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

.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.cta-inner p {
  color: rgba(28,28,30,0.72);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-phone {
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--charcoal);
  letter-spacing: 1px;
}

/* ===========================================
   FOOTER
=========================================== */
.site-footer {
  background: var(--charcoal-2);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  height: 44px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.7;
}

.footer-abn {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-top: 4px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col ul li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.75;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col p a {
  color: var(--blue);
  transition: color 0.2s;
}

.footer-col p a:hover {
  color: var(--white);
}

.footer-col i {
  color: var(--blue);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ===========================================
   UTILITIES
=========================================== */
@media (max-width: 767px) {
  .section {
    padding: 56px 0;
  }
  .section-header {
    margin-bottom: 36px;
  }
}
