/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background: #0b1220;
  color: #e5e7eb;
}

/* =========================
   TRUST STRIP
========================= */
.trust-strip {
  text-align: center;
  color: #cbd5e1;
  font-size: 14px;
  margin: 20px 0;
}

/* =========================
   NAVIGATION
========================= */
nav {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  background: rgba(11,18,32,0.9);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav img {
  height: 55px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

nav a,
.nav-links a,
nav a.book-btn {
  padding: 8px 14px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none;
  color: white;
}

.book-btn {
  background: linear-gradient(135deg, #38bdf8, #2563eb) !important;
  color: white !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: 0.3s ease !important;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37,99,235,0.3);
}

.brand-title {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-title::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #38bdf8;
  border-radius: 50%;
  margin-left: 8px;
  box-shadow: 0 0 10px #38bdf8;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 10%;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* darker base */
  
  /* 🔥 blur effect */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

/* show overlay */
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  background: rgba(10, 15, 25, 0.45);
}

/* sliding menu */
#navLinks {
  transition: transform 0.35s ease;
    z-index: 999;
}

/* mobile hidden state */
@media(max-width:768px){
  #navLinks {
    position: fixed;
    top: 60px;
    right: 20px;
    width: 220px;
    background: #111827;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);

    transform: translateX(120%);
    transition: transform 0.35s ease;
  }

  #navLinks.active {
    transform: translateX(0);
  }
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  transition: 0.3s ease;
}

.burger.active {
  transform: rotate(90deg);
}

@media(max-width:768px){
  .burger { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #111827;
    padding: 15px;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .nav-links.active { display: flex; }
}

/* =========================
   HERO SECTION
========================= */
.hero {
  padding: 110px 10%;
  text-align: center;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  word-break: keep-all;
}

.hero-text span {
  display: inline-block;
  margin: 0 5px;
}

.hero-text .btn {
  margin-top: 18px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 340px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   BUTTONS
========================= */
.btn,
a.btn,
button.btn {
  background: linear-gradient(135deg, #38bdf8, #2563eb) !important;
  color: white !important;
  padding: 12px 20px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-block !important;
  border: none !important;
  cursor: pointer !important;
  transition: 0.3s ease;
}

.btn:hover,
a.btn:hover,
button.btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(37,99,235,0.3) !important;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 100px 10%;
  text-align: center;
}

section:nth-of-type(odd) {
  background-color: #0b1220;
}

section:nth-of-type(even) {
  background-color: #111827;
}

h3 {
  margin-bottom: 45px;
  font-size: 2rem;
  text-align: center;
}

/* =========================
   GRID (SERVICES & REVIEWS)
========================= */
.grid,
.review-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.card,
.review-card,
.contact-card {
  background: #1f2937;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(56,189,248,0.3);
  width: 280px;
  max-width: 100%;
  text-align: center;
  transition: 0.3s;
}

.card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(56,189,248,0.5);
  border-color: #38bdf8;
}

.card i,
.review-card .stars {
  color: #38bdf8;
  font-size: 28px;
  margin-bottom: 10px;
}

/* =========================
   EMERGENCY JUMP START
========================= */
.emergency-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.emergency-wrap .card {
  max-width: 280px;
  width: 100%;
}

/* =========================
   SLIDER
========================= */
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  gap: 12px;
}

.img-box {
  position: relative;
  flex: 1;
  background: #111827;
  border-radius: 12px;
  overflow: hidden;
}

.img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #111827 25%,
    #1f2937 50%,
    #111827 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  z-index: 1;
}

/* hide shimmer when image loads */
.img-box.loaded::before {
  display: none;
}

.img-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.img-box img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  z-index: 2;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =========================
   ARROWS
========================= */
.prev,.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 10;
}

.prev { left: 15px; }
.next { right: 15px; }

/* =========================
   CONTACT
========================= */
.contact-card {
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(145deg, #111827, #1f2937);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(56,189,248,0.35);
  text-align: center;
  position: relative;
  overflow: hidden;

  /* subtle glow */
  box-shadow: 0 0 40px rgba(56,189,248,0.08);
}

/* top glow line (premium feel) */
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #38bdf8, #2563eb, #38bdf8);
  box-shadow: 0 0 20px rgba(56,189,248,0.4);
}

/* TITLE (if you have one) */
.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #e5e7eb;
}

/* EMAIL BUTTON (RAC STYLE PRIMARY ACTION) */
.email-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  padding: 14px 16px;

  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(37,99,235,0.25);
  transition: 0.25s ease;

  white-space: nowrap;
  box-sizing: border-box;
}

/* hover like RAC button */
.email-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37,99,235,0.35);
}

/* optional icon support */
.email-button::before {
  content: "✉";
  font-size: 16px;
}

/* =========================
   CONTACT NOTE
========================= */
.contact-note {
  margin-top: 15px;
  font-size: 13px;
  color: #94a3b8;
}

/* =========================
   MAP
========================= */
iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 12px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0b1220;
  color: #cbd5e1;
  margin-top: 60px;
  padding: 50px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   FOOTER TEXT
========================= */
.footer h3,
.footer h4 {
  color: #e5e7eb;
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin: 6px 0;
  font-size: 14px;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #64748b;
}

/* =========================
   MOBILE FIXES
========================= */
@media(max-width:768px){

  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  h3 { font-size: 1.4rem; }
  p { font-size: 14px; }

  .hero, .section { padding: 30px 15px; }

  .hero-content {
    flex-direction: column;
    gap: 20px;
  }

  .hero-text {
    text-align: center;
  }

  /* FIX: prevent overflow + push TRUST to new line */
  .hero-text h2 {
    font-size: 1.6rem;
    white-space: normal;
  }

  .hero-text h2 span:last-child {
    display: block;
  }

  .grid,
  .review-grid {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .review-card {
    width: 280px;
  }

  .hero-image {
    justify-content: center;
    order: 2;
  }

  .slide {
    flex-direction: column;
  }
}

@media(max-width:480px){
  h2 { font-size: 1.4rem; }

  .card,
  .review-card,
  .contact-card {
    width: 95%;
  }

  .img-box img {
    height: 180px;
  }
}

/* =========================
   PRICING SECTION
========================= */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: linear-gradient(145deg, #111827, #1f2937);
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 18px;
  padding: 30px;
  width: 260px;
  text-align: center;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(56,189,248,0.35);
  border-color: #38bdf8;
}

.price-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.price-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e5e7eb;
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 10px;
}

.price span {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 400;
}

.price-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* highlight cards (emergency services) */
.price-card.highlight {
  border: 1px solid rgba(239,68,68,0.4);
  box-shadow: 0 0 25px rgba(239,68,68,0.08);
}

.price-card.highlight:hover {
  box-shadow: 0 0 35px rgba(239,68,68,0.25);
  border-color: #ef4444;
}

/* mobile */
@media(max-width:768px){
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    width: 90%;
  }
}