/* ============================================================
   BOOSTED CLEAN – Main Stylesheet
   Primary: #ab0000 | Secondary: #0d0c0f | Third: #232225 | White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --red:       #ab0000;
  --red-dark:  #880000;
  --red-light: #cc1111;
  --dark:      #0d0c0f;
  --dark2:     #232225;
  --dark3:     #1a191c;
  --white:     #ffffff;
  --grey:      #aaaaaa;
  --light-bg:  #fefaf2;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
section { position: relative; }

/* ---------- Utility ---------- */
.text-red { color: var(--red); }
.bg-dark2 { background: var(--dark2); }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}
.section-title span { color: var(--red); }
.section-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--grey);
  max-width: 600px;
  margin-top: 15px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ---------- TOP BAR ---------- */
#topbar {
  background: rgba(13,12,15,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(171,0,0,0.2);
  z-index: 1050;
  position: relative;
}
#topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
}
.topbar-info { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey);
  font-family: var(--font-body);
}
.topbar-item i { color: var(--red); font-size: 14px; }
.topbar-item a { color: var(--grey); transition: color 0.2s; }
.topbar-item a:hover { color: var(--red); }
.topbar-socials { display: flex; align-items: center; gap: 12px; }
.topbar-socials a {
  width: 30px; height: 30px;
  background: rgba(171,0,0,0.15);
  border: 1px solid rgba(171,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  font-size: 13px;
  transition: var(--transition);
}
.topbar-socials a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ---------- NAVBAR ---------- */
#mainNav {
  background: rgba(13,12,15,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(171,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1040;
  transition: background 0.4s;
}
#mainNav.scrolled {
  background: rgba(13,12,15,0.77);
  border-bottom-color: rgba(171,0,0,0.4);
}
#mainNav .navbar-brand img { height: 100px; width: auto; }
#mainNav .navbar-nav .nav-link {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white) !important;
  padding: 8px 16px !important;
  transition: color 0.2s;
  position: relative;
}
#mainNav .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
}
#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-item.active .nav-link::after { transform: scaleX(1); }
#mainNav .navbar-nav .nav-link:hover { color: var(--red) !important; }

/* Dropdown */
.dropdown-menu {
  background: var(--dark2);
  border: 1px solid rgba(171,0,0,0.3);
  border-radius: 0;
  min-width: 200px;
  padding: 8px 0;
  margin-top: 0;
}
.dropdown-item {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey) !important;
  padding: 10px 20px;
  transition: var(--transition);
}
.dropdown-item:hover { background: rgba(171,0,0,0.15); color: var(--red) !important; }
.navbar-toggler { border-color: rgba(171,0,0,0.5); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28171,0,0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nav-book-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  font-family: var(--font-head) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
  border: 2px solid var(--red) !important;
  transition: var(--transition) !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.nav-book-btn:hover {
  background: transparent !important;
  color: var(--red) !important;
}
.nav-book-btn::after { display: none !important; }

/* ---------- HERO SLIDER ---------- */
#heroSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  min-height: 700px;
	margin-top: -90px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,12,15,0.72) 40%, rgba(13,12,15,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 15px;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 12px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s 0.4s, transform 0.6s 0.4s;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.6s, transform 0.6s 0.6s;
}
.hero-title span { color: var(--red); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.8s, transform 0.6s 0.8s;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 1s, transform 0.6s 1s;
}
.hero-slide.active .hero-tag,
.hero-slide.active .hero-title,
.hero-slide.active .hero-desc,
.hero-slide.active .hero-btns {
  opacity: 1;
  transform: none;
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 30px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--red); width: 50px; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(171,0,0,0.2);
  border: 1px solid rgba(171,0,0,0.4);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.hero-arrow:hover { background: var(--red); border-color: var(--red); }
.hero-arrow.prev { left: 30px; }
.hero-arrow.next { right: 30px; }

/* ---------- ABOUT ---------- */
#about { background: var(--dark); }
.about-imgs {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 85%;
  height: 360px;
  object-fit: cover;
  border: 3px solid rgba(171,0,0,0.3);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; left: 0;
  width: 60%;
  height: 260px;
  object-fit: cover;
  border: 3px solid var(--red);
  z-index: 2;
}
.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--red);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-family: var(--font-head);
  text-align: center;
  box-shadow: 0 0 0 8px rgba(171,0,0,0.2);
}
.about-badge .big-num { font-size: 32px; font-weight: 900; line-height: 1; }
.about-badge .small-txt { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.about-content { padding-left: 40px; }
.about-features { margin-top: 24px; }
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(171,0,0,0.1);
  border: 1px solid rgba(171,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}
.about-feature-item h6 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 2px;
}
.about-feature-item p { font-size: 14px; color: var(--grey); margin: 0; }

/* Feature boxes row */
.feature-boxes { background: var(--dark3); border-top: 1px solid rgba(171,0,0,0.15); }
.feature-box {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(171,0,0,0.1);
  transition: var(--transition);
}
.feature-box:last-child { border-right: none; }
.feature-box:hover { background: rgba(171,0,0,0.05); }
.feature-box-icon {
  width: 70px;
  height: 70px;
  background: rgba(171,0,0,0.1);
  border: 1px solid rgba(171,0,0,0.3);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--red);
  transition: var(--transition);
}
.feature-box:hover .feature-box-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.feature-box h5 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-box p { font-size: 14px; color: var(--grey); margin: 0; }

/* ---------- SERVICES HEADING ---------- */
.services-section-header {
  /*background: var(--dark2);*/
  border-top: 3px solid var(--red);
  padding: 20px 0;
}
.service-tab-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-tab-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 38px;
  background: var(--red);
}

/* ---------- PACKAGE CARDS ---------- */
.pkg-card {
  background: var(--dark2);
  border: 1px solid rgba(171,0,0,0.15);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(171,0,0,0.2);
}
.pkg-card.featured {
  border-color: var(--red);
  position: relative;
}
.pkg-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
}
.pkg-icon {
  width: 70px;
  height: 70px;
  background: rgba(171,0,0,0.1);
  border: 1px solid rgba(171,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--red);
  margin: 30px auto 16px;
  transition: var(--transition);
}
.pkg-card:hover .pkg-icon,
.pkg-card.featured .pkg-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.pkg-card-top {
  padding: 0 24px 16px;
  text-align: center;
}
.pkg-tier {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0px;
}
.pkg-name {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.pkg-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.pkg-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }
.pkg-desc { font-size: 16px; color: var(--grey); margin-bottom: 16px; line-height: 1.7; }
.pkg-list { flex: 1; }
.pkg-list li {
  font-size: 16px;
  color: var(--grey);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list li i { color: var(--red); font-size: 13px; flex-shrink: 0; }
.pkg-cta { padding: 20px 24px; }
.pkg-cta .btn-primary { width: 100%; text-align: center; }

/* ---------- PAINT CORRECTION & CERAMIC ---------- */
.fullbg-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.fullbg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,12,15,0.88);
}
.fullbg-section .container { position: relative; z-index: 2; }
.benefit-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(171,0,0,0.15);
  transition: var(--transition);
}
.benefit-item:hover { border-color: rgba(171,0,0,0.5); background: rgba(171,0,0,0.05); }
.benefit-item i { color: var(--red); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.benefit-item h6 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3px;
}
.benefit-item p { font-size: 15px; color: var(--grey); margin: 0; }
.process-steps { margin-top: 30px; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--red);
}
.step-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: rgba(171,0,0,1);
  line-height: 1;
  min-width: 44px;
}
.process-step h6 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.process-step p { font-size: 16px; color: var(--grey); margin: 0; }

/* ---------- SELLING PROCESS ---------- */
#process { background: var(--white); }
#process .section-title { color: var(--dark); }
#process .section-tag { color: var(--red); }
#process .section-desc { color: #555; }
.process-card {
  background: var(--light-bg);
  border: 1px solid #e8e0d0;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.process-card:hover { border-color: var(--red); box-shadow: 0 10px 30px rgba(171,0,0,0.1); transform: translateY(-4px); }
.process-card-num {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.process-card h5 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 14px;
}
.process-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 16px;
}
.process-card p { font-size: 14px; color: #666; margin: 0; }
.process-cta-area {
  margin-top: 50px;
  text-align: center;
  padding: 40px;
  background: var(--dark);
  color: var(--white);
}
.process-cta-area h4 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.process-cta-area p { color: var(--grey); font-size: 16px; margin-bottom: 20px; }
.process-cta-area .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.process-cta-area .phone-link:hover { color: var(--white); }

/* ---------- REVIEWS ---------- */
#reviews { background: var(--dark3); }
.reviews-slider-wrap { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.5s ease; }
.review-slide { flex: 0 0 50%; padding: 0 12px; }
.review-card {
  background: var(--dark2);
  border: 1px solid rgba(171,0,0,0.15);
  padding: 28px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.review-card:hover { border-color: rgba(171,0,0,0.5); }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: rgba(171,0,0,0.1);
  line-height: 1;
}
.review-stars { color: #ffbc00; font-size: 14px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--grey); line-height: 1.8; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author-info h6 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.review-author-info span { font-size: 12px; color: var(--grey); }
.google-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--grey); }
.google-badge i { color: #4285f4; }
.review-nav-btns { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.review-nav-btn {
  width: 44px; height: 44px;
  background: rgba(171,0,0,0.1);
  border: 1px solid rgba(171,0,0,0.3);
  color: var(--white);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.review-nav-btn:hover { background: var(--red); border-color: var(--red); }

/* ---------- GALLERY ---------- */
#gallery { background: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(171,0,0,0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 28px;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
#lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
#lightbox-close:hover { opacity: 1; color: var(--red); }
#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 20px;
}
#lightbox-prev { left: 10px; }
#lightbox-next { right: 10px; }
#lightbox-prev:hover, #lightbox-next:hover { opacity: 1; color: var(--red); }

/* ---------- CONTACT ---------- */
#contact { background: var(--dark2); }
.contact-info-card {
  background: var(--dark);
  border: 1px solid rgba(171,0,0,0.2);
  overflow: hidden;
  height: 100%;
}
.contact-img-wrap { position: relative; }
.contact-img-wrap img { width: 100%; height: 280px; object-fit: cover; }
.contact-details { padding: 30px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-detail-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(171,0,0,0.1);
  border: 1px solid rgba(171,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail-item h6 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2px;
}
.contact-detail-item p, .contact-detail-item a {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
  line-height: 1.6;
}
.contact-detail-item a:hover { color: var(--red); }
.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.area-tag {
  font-size: 12px;
  background: rgba(171,0,0,0.1);
  border: 1px solid rgba(171,0,0,0.25);
  color: var(--grey);
  padding: 3px 10px;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--dark);
  border: 1px solid rgba(171,0,0,0.2);
  padding: 40px;
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 0;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  background: var(--dark2);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(171,0,0,0.15);
}
.contact-form-wrap .form-control::placeholder { color: rgba(255,255,255,0.3); }
.contact-form-wrap .form-select option { background: var(--dark2); }
.contact-form-wrap label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.consent-label { font-size: 13px; color: var(--grey); }
.consent-check { accent-color: var(--red); width: 16px; height: 16px; }
.recaptcha-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 10px;
}
.recaptcha-placeholder i { color: var(--red); }

/* ---------- FOOTER ---------- */
#footer {
  background: var(--dark);
  border-top: 1px solid rgba(171,0,0,0.2);
}
.footer-top { padding: 60px 0 40px; }
.footer-logo img { height: 170px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--grey); line-height: 1.8; margin-bottom: 16px; }
.footer-license {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  padding: 8px 16px;
  background: rgba(171,0,0,0.05);
  border-left: 3px solid var(--red);
  display: inline-block;
}
.footer-heading {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--red); font-size: 16px; }
.footer-links a:hover { color: var(--red); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--grey);
}
.footer-contact-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: var(--grey); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--red); }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(171,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  font-size: 15px;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}
.footer-bottom a { color: var(--red); }
.footer-bottom img {
	display: inline-block;
}
/* ---------- BACK TO TOP ---------- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
#backToTop.visible { opacity: 1; transform: none; }
#backToTop:hover { background: var(--red-dark); }

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199px) {
#mainNav .navbar-brand img {
    height: 70px;
    width: auto;
}	
	#heroSlider {
    margin-top: -50px;
}
}
@media (max-width: 991px) {
  .about-content { padding-left: 0; margin-top: 30px; }
  .about-imgs { height: 350px; }
  .review-slide { flex: 0 0 100%; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-list-grid { grid-template-columns: 1fr; }
  .feature-box { border-right: none; border-bottom: 1px solid rgba(171,0,0,0.1); }
  .topbar-info { display: none; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-arrow { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 24px; }
  .about-imgs { height: 280px; }
  .about-img-main { height: 220px; }
  .about-img-secondary { height: 170px; }
  .about-badge { width: 80px; height: 80px; }
  .about-badge .big-num { font-size: 22px; }
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  #topbar { display: none; }
	#mainNav .navbar-brand img {
    height: 50px;
    width: auto;
}	
}

/* Dropdown hover for desktop */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu { display: block; }
}

/* ---------- PACKAGE PRICING ---------- */
.pkg-pricing {
  padding: 16px 24px 4px;
  border-top: 1px solid rgba(171,0,0,0.15);
}
.pkg-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pkg-price-line:last-child { border-bottom: none; }
.pkg-price-line.pkg-price-single { justify-content: center; gap: 16px; }
.pkg-price-label { font-size: 16px; color: var(--grey); }
.pkg-price-value {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}
.pkg-price-single .pkg-price-value { font-size: 26px; color: var(--red); }
.pkg-card.featured .pkg-price-value { color: var(--red); }
.pkg-price-strike {
  font-size: 13px;
  font-weight: 400;
  color: rgba(170,170,170,0.45);
  text-decoration: line-through;
  margin-right: 5px;
}
.pkg-list-heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  margin-top: 4px;
}
.pkg-note {
  font-size: 12px;
  color: rgba(170,170,170,0.55);
  font-style: italic;
  margin-top: 8px;
  line-height: 1.5;
}

/* xs: 1 package per row */
@media (max-width: 575px) {
  [class*="col-lg-"][class*="col-md-6"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
