/* =======================
   GLOBAL RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #1b1b1b; /* Apple-style graphite */
  color: #e6e6e6;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth transitions */
a, button, input {
  transition: all 0.25s ease;
}

/* =======================
   NAVBAR (Apple Clean)
======================= */
.nav {
  width: 100%;
  height: 72px;
  padding: 0 40px;

  /* DARK GLASS NAVBAR */
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  border-bottom: 1px solid rgba(255,255,255,0.06);

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: fixed;
  top: 0;
  z-index: 1000;

  /* Premium Apple-style floating look */
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Left brand area */
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.3));
}

.brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fafafa;
}

/* Center links */
.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  color: #e4e4e4;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: #00e676; /* Tactical accent */
}

/* Right button */
.call-btn {
  background: #00e676;
  padding: 10px 20px;
  border-radius: 8px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.call-btn:hover {
  background: #42ff9e;
}

/* =======================
   HERO SECTION
======================= */
.hero {
  padding-top: 120px; /* offset for fixed navbar */
  height: 92vh;
  background: linear-gradient(to bottom right, #242424, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
}

.hero p {
  color: #bbbbbb;
  margin-bottom: 28px;
  font-size: 1.1rem;
}

/* Hero buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  margin: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn.primary {
  background: #00e676;
  color: #000;
}

.btn.primary:hover {
  background: #4bffb1;
}

.btn.outline {
  border: 2px solid #00e676;
  color: #00e676;
}

.btn.outline:hover {
  background: #00e676;
  color: #000;
}

/* =======================
   REVIEWS
======================= */
.reviews {
  padding: 90px 20px;
  text-align: center;
}

.reviews h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.carousel {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLoop 28s linear infinite;
}

.review-card {
  width: 300px;
  border-radius: 12px;
  background: #2a2a2a;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(0,230,118,0.35);
}

@keyframes scrollLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =======================
   SERVICES GRID
======================= */
.services {
  padding: 100px 40px;
  text-align: center;
}

.services h2 {
  color: #ffffff;
  font-size: 2.3rem;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #262626;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.service-card h3 {
  color: #00e676;
  margin-bottom: 10px;
}

.service-card p {
  color: #cfcfcf;
  font-size: 0.9rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(0,230,118,0.25);
}

/* =======================
   ZIP CHECKER
======================= */
.zipcode {
  padding: 90px 20px;
  text-align: center;
}

.zipcode h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 14px;
}

.zipcode p {
  color: #cfcfcf;
  margin-bottom: 25px;
}

.zip-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.zip-box input {
  width: 70%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #2a2a2a;
  color: #ffffff;
}

.zip-box button {
  padding: 14px 24px;
  background: #00e676;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
}

.zip-box button:hover {
  background: #4bffb1;
}

/* =======================
   QUOTE FORM
======================= */
.contact {
  padding: 100px 20px;
  text-align: center;
}

.contact h2 {
  color: #ffffff;
  margin-bottom: 40px;
}

form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input, textarea {
  padding: 14px;
  border-radius: 10px;
  background: #2b2b2b;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  resize: none;
}

button[type="submit"] {
  padding: 14px;
  border-radius: 10px;
  background: #00e676;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #42ff9e;
}

.hero {
  padding-top: 120px;
  height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: 
      linear-gradient(to bottom right, rgba(28, 28, 28, 0.75), rgba(20, 20, 20, 0.85)),
      url("images/background.png") center/cover no-repeat;

  /* Soft Apple blur style */
  backdrop-filter: blur(4px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);  /* softens edges behind content */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.zip-message {
  margin-top: 10px;
  font-size: 0.95rem;
}

.zip-ok {
  color: #39d98a;
}

.zip-warning {
  color: #f2c14f;
}

.zip-error {
  color: #ff6b6b;
}


/* =======================
   FOOTER
======================= */
.footer {
  padding: 40px 20px;
  background: #1a1a1a;
  text-align: center;
  color: #888;
}

/* BOOKING MODAL */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.booking-window {
  width: 420px;
  height: 600px;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.booking-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #1a1a1a;
  border-bottom: 1px solid #333;
  color: #39d98a;
  font-weight: 600;
}

.chat-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.close-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bot-msg, .user-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.bot-msg {
  background: #222;
  align-self: flex-start;
}

.user-msg {
  background: #39d98a;
  color: #000;
  align-self: flex-end;
}

.chat-input-area {
  padding: 16px;
  border-top: 1px solid #333;
  background: #1a1a1a;
}

.chat-btn {
  padding: 12px;
  width: 100%;
  background: #39d98a;
  border: none;
  border-radius: 10px;
  color: #000;
  font-weight: 700;
  margin-top: 8px;
  cursor: pointer;
}

.option-btn {
  background: #262626;
  border: 1px solid #333;
  color: #eee;
  border-radius: 10px;
  padding: 10px;
  margin-top: 6px;
  width: 100%;
  cursor: pointer;
}

.option-btn:hover {
  background: #333;
}

input.chat-input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #222;
  border: 1px solid #333;
  color: #fff;
}

.booking-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e6e6e6;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.booking-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: #ffffff;
}

select.chat-input {
  appearance: none;
  background: #222;
  color: #fff;
  border: 1px solid #333;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* Clean stack for date/time inputs */
.chat-input-area input.chat-input,
.chat-input-area select.chat-input {
  margin-bottom: 12px; 
  padding: 14px;
  font-size: 0.95rem;
  border-radius: 12px;
}

/* Prevent blocking/overlap */
.chat-input-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Better looking confirm button */
.chat-btn {
  margin-top: 6px;
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
}

.admin-link {
  position: fixed;
  bottom: 12px;
  right: 15px;
  font-size: 11px;
  opacity: 0.35;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
  z-index: 9999;
}

.admin-link:hover {
  opacity: 1;
}
/* =========================================
   MOBILE RESPONSIVE + NAV MENU (CLEAN)
   ========================================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav {
    padding: 0 20px;
    height: 64px;
    justify-content: space-between;
  }

  .desktop-menu {
    display: none !important;
  }

  .brand {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .call-btn {
    display: none; /* hide desktop call button */
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 140px 20px 80px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
  }

  /* REVIEWS */
  .carousel-track {
    gap: 20px;
  }

  .review-card {
    width: 240px;
  }

  /* SERVICES */
  .services {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* ZIP CHECKER */
  .zip-box {
    flex-direction: column;
    max-width: 100%;
  }

  .zip-box input,
  .zip-box button {
    width: 100%;
  }

  /* CONTACT FORM */
  form {
    width: 100%;
    padding: 0 10px;
  }

  input,
  textarea {
    font-size: 1rem;
    padding: 14px;
  }

  button[type="submit"] {
    padding: 16px;
    font-size: 1.05rem;
  }

  /* BOOKING MODAL */
  .booking-window {
    width: 92%;
    height: 75%;
    border-radius: 14px;
  }

  .chat-body {
    padding: 12px;
  }

  .chat-btn,
  .option-btn,
  .chat-input {
    font-size: 0.95rem;
  }

  /* FOOTER */
  .footer {
    padding: 32px 10px;
    font-size: 0.85rem;
  }
}


/* =========================================
   HAMBURGER MENU (GLOBAL)
   ========================================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 99999;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}

/* =========================================
   MOBILE SLIDE MENU
   ========================================= */
.mobile-menu {
  position: fixed;
  right: -260px;
  top: 0;
  height: 100vh;
  width: 260px;
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(6px);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: right 0.35s ease;
  z-index: 9999;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.15rem;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.call-mobile {
  margin-top: 20px;
  background: #00e06d;
  color: #000 !important;
  padding: 16px;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
}

/* HAMBURGER (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* MOBILE SLIDE MENU */
.mobile-menu {
  position: fixed;
  right: -260px;
  top: 0;
  width: 260px;
  height: 100vh;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(8px);
  padding: 90px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.3s ease;
  z-index: 9998;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  color: white;
  font-size: 1.2rem;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.call-mobile {
  margin-top: 20px;
  background: #00e06d;
  color: #000 !important;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  /* hide desktop menu on mobile */
  .nav-menu {
    display: none;
  }

  /* hide desktop call button on mobile */
  .call-btn {
    display: none;
  }

  /* show hamburger */
  .hamburger {
    display: flex;
  }
}
