/* ================= RESET ================= */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #000;
  color: #fff;
}

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

/* ================= SHELL ================= */
.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at bottom right, rgba(255,0,0,.08), transparent 30%),
    linear-gradient(180deg, #030303 0%, #000 100%);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 560px;
  background: url("images/hero.png") right center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px 120px;
}

.hero-left {
  width: min(46%, 620px);
  margin-left: -60px;
  margin-top: -30px;
}

.hero-logo {
  display: block;
  max-width: 500px;
  width: 100%;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.55));
}

.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 3.2rem;
  margin: -10px 0 10px;
}

.hero-locations {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  padding-left: 22px;
  position: relative;
}

.hero-locations::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #ff2a2a;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,0,0,0.6);
}

.hero-contact-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================= NAV ================= */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 20px;
}

.top-nav {
  position: relative;
  z-index: 3;
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px 36px 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex: 1;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  letter-spacing: .05em;
}

/* ================= BUTTONS ================= */
.cta-btn {
  background: linear-gradient(135deg, #ff2a2a, #b80000);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.6);
}

/* ================= SERVICES ================= */
.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -60px;
  padding: 0 36px;
  z-index: 3;
  position: relative;
}

.service-card {
  background: linear-gradient(145deg, #0f0f0f, #050505);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.9),
    0 0 25px rgba(255,0,0,0.25);
}

.service-icon {
  width: 80px;
  margin-bottom: 12px;
}

.service-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ff2a2a;
  margin: 8px auto 0;
}

/* ================= TITLES ================= */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* left + right lines */
.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff2a2a);
}

.section-title::after {
  background: linear-gradient(to left, transparent, #ff2a2a);
}

/* red ampersand */
.section-title span {
  color: #ff2a2a;
}
/* ================= GRID ================= */
.gallery-pricing-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
}

/* ================= BEFORE/AFTER ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ba-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(255,0,0,0.6);
}

.ba-container {
  height: 260px;
  position: relative;
}

.ba-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= PRICING ================= */
.pricing-panel {
  padding: 24px;
  border-radius: 16px;
  background: #111;
}

.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.price-card.featured {
  border: 2px solid #ff2a2a;
  box-shadow:
    0 0 20px rgba(255,0,0,0.4),
    0 0 40px rgba(255,0,0,0.15);
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff2a2a;
}

.price-card ul {
  padding-left: 18px;
  margin: 0;
  color: #ccc;
}

.add-ons {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #aaa;
}

/* ================= FOOTER ================= */
.footer {
  text-align: center;
  padding: 30px 0;
}

/* ================= STICKY BUTTON ================= */
.sticky-text-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff2a2a, #b80000);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255,0,0,0.4);
  z-index: 999;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 10px 25px rgba(255,0,0,0.4); }
  50% { box-shadow: 0 15px 35px rgba(255,0,0,0.7); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .services-row { grid-template-columns: repeat(2,1fr); }
  .gallery-pricing-row { grid-template-columns: 1fr; }
  .bottom-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-title::before,
  .section-title::after {
    width: 40px;
  }
}

@media (min-width: 768px) {
  .sticky-text-btn { display: none; }
}


/* slider line */
.ba-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  z-index: 5;
}

/* slider handle */
.ba-slider::after {
  content: "›";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  background: white;
  color: black;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(255,0,0,0.6);
}

/* BEFORE image (bottom layer) */
.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* AFTER image wrapper (clipped) */
.ba-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* 👈 THIS is what creates the split */
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

/* AFTER image */
.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-labels {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 6; /* 👈 THIS FIXES IT */
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  pointer-events: none;
}

.before-label {
  position: absolute;
  left: 12px;
  color: #fff;
}

.after-label {
  position: absolute;
  right: 12px;
  color: #fff;
}

.add-ons {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.add-ons h4 {
  margin: 0 0 8px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #ff2a2a;
}

.add-ons ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.85rem;
  color: #ccc;
}

.addons-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #aaa;
}

.contact-reviews {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* CONTACT */
.contact-card {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 24px;
}

.contact-highlight {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.cta-btn.large {
  padding: 14px 22px;
  font-size: 1rem;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 22px;
  border-radius: 8px;
  color: #fff;
}

.contact-note {
  font-size: 0.85rem;
  color: #aaa;
}

/* REVIEWS */
.reviews-card {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 24px;
}

.review {
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #ccc;
}

.review p {
  margin: 6px 0 0;
}

.reviews-link {
  font-size: 0.85rem;
  color: #ff2a2a;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-reviews {
    grid-template-columns: 1fr;
  }
}