/* =====================
   BRAND COLOURS
===================== */
:root {
  --primary: #252629;
  --secondary: #b0b0b0;
  --accent: #d61f26;
  --background: #f5f5f5;
  --card: #ffffff;
  --text: #222222;
}

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

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--background);
  color: var(--text);
}
html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  gap: 40px;
}

.logo {
  margin-right: 20px;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.navbar a:hover {
  color: var(--accent);
}

/* =====================
   HERO
===================== */
header {
  background: var(--primary);
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

header h2 {
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 25px;
}

header p {
  font-size: 18px;
  line-height: 1.6;
}

.trust-line {
  margin-top: 25px;
  font-weight: bold;
  color: white;
}

.hero-btn,
.book-btn {
  display: inline-block;
  background: var(--accent);
  color: white !important;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.hero-btn {
  margin-top: 25px;
}

.hero-btn:hover,
.book-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.hero-image {
  max-width: 700px;
  height: 650px;
  margin: 50px auto 0;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.whatsapp-btn {
  background: #25D366;
}

/* =====================
   INTRO OVERLAY
===================== */
.hero-image{
position: relative;
}

.hero-image img {
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  object-position: center top;
}

.intro-overlap {
  display: none;
}

.intro-card {
  position: absolute;
  left: 50%;
  top: 1%;
  width: min(1200px, 95%);
  max-width: 1000px;

  background: rgba(10, 20, 30, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  padding: 8px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  color: white;
  text-align: center;

  opacity: 0;
  transform: translate(-50%, -60px);
  transition: all 1.2s ease;
}

.hero-image.show-card .intro-card {
  opacity: 1;
  transform: translate(-50%, 0);
}

.intro-card h2 {
  font-size: 28px;
  margin-bottom: 4px;
  color: white;
}

.intro-card p {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
  max-width: 100%;
  margin: 0 auto 12px;
}

/* =====================
ABOUT SECTION
===================== */

.about-section {
padding: 120px 20px;
background: #fff;
}

.about-container {
max-width: 1200px;
margin: auto;

display: grid;
grid-template-columns: 500px 1fr;
gap: 70px;

align-items: start;
}

.about-left img {
width: 100%;
border-radius: 35px;
display: block;
box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-left h2 {
text-align: center;
font-size: 72px;
margin-top: 25px;
margin-bottom: 0;
color: var(--primary);
letter-spacing: 2px;
}

.about-right p {
font-size: 20px;
line-height: 1.8;
color: #444;
margin-bottom: 25px;
}

.about-bold {
font-weight: bold;
color: var(--primary) !important;
}

.about-stats {
max-width: 1200px;
margin: 70px auto 0;

display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}

.stat-card {
background: #f7f7f7;
padding: 35px 20px;
border-radius: 25px;
text-align: center;
box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.stat-card span {
display: block;
font-size: 42px;
margin-bottom: 15px;
}

.stat-card p {
margin: 0;
font-size: 18px;
font-weight: 600;
}

@media (max-width: 768px) {

.about-container {
grid-template-columns: 1fr;
}

.about-left h2 {
font-size: 48px;
}

.about-stats {
grid-template-columns: 1fr 1fr;
}

}
.action-section {
  padding: 120px 20px;
  text-align: center;
  background: #f5f5f7;
}

.action-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.action-text {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
}

.iphone-frame {
  width: 320px;
  margin: auto;
  padding: 12px;
  background: #111;
  border-radius: 50px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.iphone-frame video {
  width: 100%;
  display: block;
  border-radius: 38px;
}

.instagram-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 32px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s;
}

.instagram-btn:hover {
  transform: translateY(-3px);
}

/* =====================
   SECTIONS
===================== */
section {
  padding: 60px 20px;
}

/* =====================
   REVIEWS
===================== */
.reviews,
.reviews-full,
.reviews-section {
  background: #f6f7f9;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.reviews h1,
.reviews h2,
.reviews-full h1,
.reviews-full h2,
.reviews-section h1,
.reviews-section h2 {
  margin-bottom: 40px;
}

.review-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 80px;
  padding: 10px 0;
}

.review-row:last-child {
  margin-bottom: 0;
}

.review-track,
.reviews-track {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: max-content;
  animation: scrollReviews 45s linear infinite;
  will-change: transform;
}

.review-row.reverse .review-track,
.review-row.reverse .reviews-track {
  animation-direction: reverse;
}

.review {
  background: var(--card);
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  width: 420px;
  min-height: 260px;
  text-align: center;
  flex: 0 0 auto;
  white-space: normal;
  line-height: 1.6;
  transition: box-shadow 0.3s ease;
}

.photo-review {
  border-top: 4px solid var(--accent);
  min-height: 520px;
}

.photo-review img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  display: block;
  background: #e5e5e5;
}

.review:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.review p {
  margin: 10px 0;
}

.review span {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: var(--accent);
}

.stars {
  color: #f5c518;
  font-size: 18px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.review {
  display: flex;
  flex-direction: column;
}

.review p {
  flex-grow: 1;
}

.review span {
  margin-top: auto;
}

/* =====================
   CONTACT / ENQUIRY FORM
===================== */
.enquiry-section {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--background);
  padding: 80px 20px;
}

.enquiry-box {
  background: white;
  max-width: 650px;
  width: 100%;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  text-align: center;
  border-top: 5px solid var(--accent);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h2 {
  margin-bottom: 15px;
}

.form-step p {
  color: #666;
  line-height: 1.6;
}

.form-step button,
.next-btn {
  display: block;
  width: 100%;
  margin: 12px 0;
  padding: 15px;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.form-step button:hover,
.next-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: Arial, sans-serif;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.contact-btn {
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
}

.contact-btn:hover {
  background: var(--accent);
}


/* =====================
   PROGRESS BAR
===================== */
.progress-text {
  font-size: 14px;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e5e5;
  border-radius: 999px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 25%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* =====================
   ANIMATION
===================== */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .logo {
    margin-right: 0;
  }

  .hero-logo {
    max-width: 300px;
  }

  .reviews,
  .reviews-full,
  .reviews-section {
    padding: 70px 0;
  }

  .review-row {
    margin-bottom: 55px;
  }

  .review {
    width: 320px;
  }

  .photo-review {
    min-height: 500px;
  }

  .photo-review img {
    height: 220px;
  }

  .enquiry-box {
    padding: 30px 20px;
  }
}

/* SEE CHARLIE IN ACTION */

.action-section {
  padding: 120px 20px;
  text-align: center;
  background: #f5f5f7;
}

.action-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.action-text {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
}

.iphone-frame {
  width: 320px;
  margin: auto;
  padding: 12px;
  background: #111;
  border-radius: 50px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.iphone-frame video {
  width: 100%;
  display: block;
  border-radius: 38px;
}

.instagram-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 32px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s;
}

.instagram-btn:hover {
  transform: translateY(-3px);
}

/* SERVICE AREA PAGE */

.service-area-page {
  padding: 120px 20px;
  text-align: center;
  background: #fff;
}

.service-area-page h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #111;
}

.service-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #666;
}

.area-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.area-card {
  background: #f5f5f7;
  padding: 34px 20px;
  border-radius: 28px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.coverage-section {
  padding: 100px 20px;
  text-align: center;
  background: #f5f5f7;
}

.coverage-section h2,
.area-cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #111;
}

.coverage-section p,
.area-cta p {
  max-width: 700px;
  margin: 0 auto 25px;
  color: #666;
  line-height: 1.7;
}

.area-cta {
  padding: 100px 20px;
  text-align: center;
  background: #fff;
}

@media (max-width: 800px) {
  .area-grid {
    grid-template-columns: 1fr;
  }

  .service-area-page h1 {
    font-size: 3rem;
  }

  .coverage-section h2,
  .area-cta h2 {
    font-size: 2.3rem;
  }
}

/* =====================
   BEFORE & AFTER SLIDER
===================== */

.before-after-section {
  padding: 120px 20px;
  background: #fff;
  text-align: center;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 15px;
}

.before-after-section h2 {
  font-size: 3.4rem;
  margin: 0 0 20px;
  color: #111;
}

.before-after-text {
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #666;
}

.before-after-slider {
  position: relative;
  max-width: 1000px;
  height: 620px;
  margin: auto;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.16);
  background: #111;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.before-after-slider img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.before-after-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-img {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.after-img {
  z-index: 1;
}

.slider-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  z-index: 3;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: white;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.before-label,
.after-label {
  position: absolute;
  top: 25px;
  z-index: 4;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  color: #111;
}

.before-label {
  left: 25px;
}

.after-label {
  right: 25px;
}

@media (max-width: 768px) {
  .before-after-section h2 {
    font-size: 2.4rem;
  }

  .before-after-slider {
    height: 420px;
    border-radius: 28px;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 9999;
}

.floating-whatsapp span {
  color: white;
  font-size: 30px;
  line-height: 1;
}

/* =====================
   TRUST BOXES
===================== */

.about-stats {
  max-width: 1200px;
  margin: 70px auto 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  background: #f7f7f7;
  padding: 35px 20px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.stat-card span {
  display: block;
  font-size: 42px;
  margin-bottom: 15px;
}

.stat-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}


/* =====================
   ANIMATED STATS
===================== */

.animated-stats {
  max-width: 1200px;
  margin: 35px auto 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.counter-card {
  background: white;
  border-radius: 25px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-6px);
}

.counter-card h3 {
  font-size: 3rem;
  margin: 0;
  color: var(--primary);
  line-height: 1;
}

.counter-card p {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #666;
}


/* =====================
   MOBILE
===================== */

@media (max-width: 768px) {

  .about-stats,
  .animated-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-card h3 {
    font-size: 2.2rem;
  }

}

/* =====================
   LOCATION PAGE UPGRADE
===================== */

.location-hero {
  padding: 120px 20px 60px;
  background: #fff;
  text-align: center;
}

.location-hero h1 {
  max-width: 900px;
  margin: 0 auto 25px;
  font-size: 4rem;
  line-height: 1.1;
  color: #111;
}

.location-intro {
  max-width: 780px;
  margin: auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #666;
}

/* HOW IT WORKS */

.location-process {
  padding: 120px 20px;
  background: #f5f5f7;
  text-align: center;
}

.location-process h2,
.location-faqs h2,
.location-final-cta h2 {
  font-size: 3.2rem;
  margin: 0 0 20px;
  color: #111;
}

.process-intro {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
}

.process-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: white;
  border-radius: 30px;
  padding: 40px 24px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
}

.process-card span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.process-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  color: #111;
}

.process-card p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

/* FAQS */

.location-faqs {
  padding: 120px 20px;
  background: #fff;
  text-align: center;
}

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  padding: 26px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.7rem;
  color: var(--accent);
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
}

.faq-answer p {
  margin: 0 0 26px;
  color: #666;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* FINAL CTA */

.location-final-cta {
  padding: 50px 20px;
  background: #111;
  color: white;
  text-align: center;
}

.location-final-cta h2 {
  color: white;
}

.location-final-cta p {
  max-width: 680px;
  margin: 0 auto 35px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.location-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.whatsapp-cta {
  background: #25D366;
}

/* =====================
   SERVICES PAGE
===================== */

.services-hero {
  padding: 130px 20px 80px;
  background: #fff;
  text-align: center;
}

.services-hero h1 {
  max-width: 980px;
  margin: 0 auto 25px;
  font-size: 4rem;
  line-height: 1.08;
  color: #111;
}

.services-hero p {
  max-width: 820px;
  margin: auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #666;
}

.services-section,
.extras-section,
.protection-section {
  padding: 120px 20px;
  text-align: center;
}

.services-section {
  background: #f5f5f7;
}

.extras-section {
  background: #fff;
}

.protection-section {
  background: #f5f5f7;
}

.services-section h2,
.extras-section h2,
.protection-section h2,
.maintenance-section h2,
.services-final-cta h2 {
  font-size: 3.2rem;
  margin: 0 0 55px;
  color: #111;
}

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  padding: 34px 24px;
  border-radius: 30px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(0,0,0,0.07);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
}

.featured-service {
  border-top: 5px solid var(--accent);
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 1.45rem;
  color: #111;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card ul,
.maintenance-card ul {
  padding-left: 18px;
  margin: 0 0 26px;
  color: #444;
  line-height: 1.9;
}

.service-card li,
.maintenance-card li {
  margin-bottom: 4px;
}

.service-btn {
  margin-top: auto;
  display: inline-block;
  background: #111;
  color: white;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: 0.3s ease;
}

.service-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.extras-grid,
.protection-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  gap: 24px;
}

.extras-grid {
  grid-template-columns: repeat(5, 1fr);
}

.protection-grid {
  grid-template-columns: repeat(4, 1fr);
}

.extra-card,
.protection-card {
  background: #f5f5f7;
  border-radius: 28px;
  padding: 32px 22px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.protection-card {
  background: white;
}

.extra-card h3,
.protection-card h3 {
  margin: 0 0 12px;
  color: #111;
}

.extra-card p,
.protection-card p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

/* MAINTENANCE */

.maintenance-section {
  padding: 120px 20px;
  background: #fff;
}

.maintenance-card {
  max-width: 980px;
  margin: auto;
  background: #111;
  color: white;
  border-radius: 42px;
  padding: 70px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.maintenance-card h2 {
  color: white;
  margin-bottom: 25px;
}

.maintenance-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  font-size: 1.05rem;
}

.maintenance-card ul {
  color: rgba(255,255,255,0.9);
  margin-top: 25px;
}

/* SERVICES CTA */

.services-final-cta {
  padding: 120px 20px;
  background: #f5f5f7;
  text-align: center;
}

.services-final-cta p {
  max-width: 680px;
  margin: 0 auto 35px;
  color: #666;
  line-height: 1.8;
}

/* =====================
   FOOTER
===================== */
footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 20px 20px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-legal {
    margin-top: 16px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 8px;
    opacity: 0.8;
}

footer {
    -webkit-text-fill-color: white;
}

footer a[href^="tel"] {
    color: white !important;
    text-decoration: none !important;
}

footer p {
    color: white !important;
}

.footer-legal a:hover {
    opacity: 1;
}

.copyright {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 0.85rem;
    opacity: 0.75;
}

/* RESPONSIVE SERVICES */

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

  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .protection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .services-hero h1 {
    font-size: 2.7rem;
  }

  .services-section h2,
  .extras-section h2,
  .protection-section h2,
  .maintenance-section h2,
  .services-final-cta h2 {
    font-size: 2.3rem;
  }

  .services-grid,
  .extras-grid,
  .protection-grid {
    grid-template-columns: 1fr;
  }

  .maintenance-card {
    padding: 45px 28px;
    border-radius: 30px;
  }
}

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 850px;
  height: 520px;
  margin: 40px auto 0;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
}

.before-after-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-img {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.after-img {
  z-index: 1;
}

.slider-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
  z-index: 4;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}

.before-label,
.after-label {
  position: absolute;
  top: 20px;
  z-index: 7;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.before-label {
  left: 20px;
}

.after-label {
  right: 20px;
}

.transformation-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.transformation-tab {
  background: #1f1f1f;
  border: 1px solid #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.transformation-tab:hover {
  transform: translateY(-2px);
}

.transformation-tab.active {
  background: #fff;
  color: #111;
}

.service-options-section,
.standard-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-options-section p,
.service-options-section h2,
.standard-section p,
.standard-section h2,
.standard-section .section-label {
  text-align: center;
}

.service-options-section {
  padding-bottom: 40px;
}

.standard-section {
  padding-top: 20px;
}

.response-time {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 12px 0 24px;
}

.final-cta {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 20px 120px;
}

.cta-text {
  max-width: 650px;
  margin: 15px auto 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-pill {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.primary-btn,
.secondary-btn {
  background: #181818;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-pill:hover {
  transform: translateY(-2px);
}

.contact-trust-section {
  max-width: 800px;
  margin: 80px auto 60px;
  text-align: center;
  padding: 0 20px;
}

.contact-trust-box {
  max-width: 650px;
  margin: 25px auto 0;
  padding: 35px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-trust-box p {
  margin: 16px 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.footer-legal a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-legal a:hover {
    color: #c9a46c;
}

/* HOME FINAL CTA + FOOTER FIX */
.final-cta {
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 80px 20px 140px !important;
  text-align: center !important;
}

.final-cta .section-label,
.final-cta h2,
.final-cta .cta-text {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.final-cta .cta-text {
  max-width: 650px !important;
  margin: 15px auto 25px !important;
}

.final-cta .cta-buttons {
  display: flex !important;
  justify-content: center !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
}

.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-cta .cta-text {
  max-width: 650px;
  margin: 15px auto 25px;
}

.final-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-wrapper {
  flex: 1 0 auto;
  width: 100%
  }

  footer {
    flex-shrink: 0;
    margin-top: auto;
  }

  .mobile-menu,
.mobile-menu-icon {
    display: none;
}

/* =====================
   MOBILE NAVIGATION
===================== */

.mobile-menu-icon,
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {

  /* navbar styles here */

}

/* =====================
   MOBILE NAVIGATION
===================== */

@media (max-width: 768px) {

  .navbar {
    position: relative !important;
    padding: 16px 20px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
    gap: 0 !important;
  }

  .navbar > a,
  .navbar .book-btn {
    display: none !important;
  }

  .logo {
    margin-right: 0 !important;
  }

  .logo img {
    max-height: 42px !important;
  }

  .mobile-menu-icon {
    display: block !important;
    background: none !important;
    border: none !important;
    font-size: 30px !important;
    color: white !important;
    cursor: pointer !important;
  }

  .mobile-menu {
    display: none !important;
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
    background: #050505;
    width: 100%;
    z-index: 9998;
  }

  .mobile-menu.active {
    display: flex !important;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }

.mobile-enquire-btn {
    background: var(--accent);
    color: white !important;
    text-align: center;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .reviews-page,
  .reviews,
  .reviews-full,
  .reviews-section,
  .review-row {
    max-width: 100%;
    overflow-x: hidden;
  }

  .review-row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .review,
  .photo-review {
    width: calc(100% - 32px) !important;
    max-width: 360px !important;
  }
}

@media (max-width: 768px) {
  .intro-card {
    width: 76% !important;
    max-width: 76% !important;

    top: auto !important;
    bottom: 4% !important;

    padding: 18px 16px !important;
    border-radius: 22px !important;
  }

  .intro-card h2 {
    font-size: 1.65rem !important;
    line-height: 1.12 !important;
    margin-bottom: 10px !important;
  }

  .intro-card p {
    font-size: 0.7rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
  }
}

@media (max-width: 768px) {

  .intro-card {
    transform: translate(-50%, 60px) !important;
  }

  .hero-image.show-card .intro-card {
    transform: translate(-50%, 0) !important;
  }

  @media (max-width: 768px) {
  .process-grid,
  .how-it-works-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 18px;
    padding: 0 20px 18px;
    -webkit-overflow-scrolling: touch;
  }

  .process-card,
  .step-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
    min-height: 260px;
  }

  .process-grid::-webkit-scrollbar,
  .how-it-works-grid::-webkit-scrollbar {
    display: none;
  }
}
}
}

.process-dots {
  display: none;
}

@media (max-width: 768px) {
  .process-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 18px;
    padding: 0 20px 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .process-grid::-webkit-scrollbar {
    display: none;
  }

  .process-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .process-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .process-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    padding: 0;
  }

  .process-dot.active {
    width: 22px;
    border-radius: 999px;
    background: var(--accent);
  }
}

@media (max-width: 768px) {
  .stat-card {
    padding: 24px 14px;
  }

  .stat-card span {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .stat-card p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .footer-legal {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .footer-legal a {
    font-size: 0.7rem;
    margin: 0;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {

  .contact-submit-btn {
    background: var(--accent) !important;
    color: white !important;
    border-radius: 999px !important;
  }

  .contact-submit-btn:hover {
    background: var(--primary) !important;
  }

}