/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Abhaya Libre', serif;
  font-size: 1.35rem;
  line-height: 1.75;
  color: black;
  background: transparent;
  overflow-x: hidden;
}
body, p, li, ul, div, section, h2, h3 {
  font-size: 1.35rem !important;
  line-height: 1.75 !important;
}

/* === Navbar === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(80, 80, 80, 0.3);
  padding: 0.6rem 1.2rem;
  z-index: 1000;
}
.brand {
  font-size: 1.35rem;
}
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}
.nav-btn {
  padding: 0.4rem 1rem;
  background: #00bcd4;
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: normal;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  background: #00a5bc;
  transform: scale(1.03);
}
.nav-btn:active {
  transform: scale(0.96);
}

/* === Hero Section === */
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -100;
  pointer-events: none;
}
.hero-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 2.8rem;
  color: black;
}
.pre-heading {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* === CTA Buttons === */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #00bcd4;
  color: black;
  padding: 0.9rem 2rem;
  font-weight: normal;
  text-decoration: none;
  border-radius: 30px;
  margin: 1rem auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  max-width: fit-content;
}
.cta-button img {
  height: 1.2rem;
}
.cta-button:hover {
  background: #00a0b5;
  transform: scale(1.05);
}
.cta-button:active {
  transform: scale(0.96);
}

/* === Floating WhatsApp === */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}
.floating-whatsapp img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}
/* === VSL Section === */
.vsl-section {
  padding: 3rem 1rem;
  text-align: center;
}
.vsl-container {
  max-width: 800px;
  margin: 0 auto;
}
.vsl-video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.vsl-or {
  margin-top: 0.5rem;
  font-style: italic;
}
.vsl-address {
  margin-top: 0.3rem;
}

/* === Work Photos === */
.work-photos {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 1rem;
}
.work-photos img {
  width: 28%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

/* === About Section === */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem 1rem;
  gap: 2rem;
}
.about-text {
  flex: 1 1 45%;
}
.about-text h2 {
  font-size: 2.2rem !important;
  font-weight: 600;
  text-align: center;
}
.before-after-gallery {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.before-after-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

/* === Services Section === */
.services-section {
  position: relative;
  padding: 3rem 1rem;
  text-align: center;
}
.blob-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
}
.blob-bg {
  max-width: 600px;
  opacity: 0.4;
}
.services-section h2 {
  font-size: 2.2rem !important;
  font-weight: 600;
  text-align: center;
}
.services-section ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.services-section li {
  margin-bottom: 0.6rem;
}

/* === Buy Section === */
.buy-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  align-items: center;
  justify-content: center;
}
.buy-text {
  flex: 1 1 45%;
  padding-left: 1rem;
}
.buy-text h2 {
  font-size: 2.2rem !important;
  font-weight: 600;
  text-align: center;
}
.buy-text h3 {
  margin: 1rem 0 0.5rem;
}
.buy-image {
  flex: 1 1 40%;
  text-align: center;
}
.buy-image img {
  width: 65%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.buy-image img:hover {
  transform: scale(1.08);
}
/* === Testimonials Section === */
.testimonials-section {
  padding: 3rem 1rem;
  text-align: center;
}
.testimonials-section h2 {
  font-size: 2.2rem !important;
  font-weight: 600;
  text-align: center;
}
.carousel-frame {
  background: rgba(80, 80, 80, 0.3);
  border: 1px solid black;
  padding: 1rem;
  border-radius: 8px;
  height: 240px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 2rem;
  animation: scrollX 45s linear infinite;
}
.review {
  flex: 0 0 30%;
  font-size: 1.35rem;
  line-height: 1.7;
}
.review span {
  display: block;
  font-weight: bold;
  margin-top: 0.5rem;
}

/* === Location Section === */
.location-section {
  text-align: center;
  padding: 3rem 1rem;
}
.location-map {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
}

/* === FAQ Section === */
.faq-section {
  background: rgba(80, 80, 80, 0.3);
  padding: 3rem 1rem;
  margin-bottom: 3rem;
}
.faq-section h2 {
  font-size: 2.2rem !important;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}
.faq details {
  margin-bottom: 1rem;
  background: #fefefe;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  border: 1px solid #aaa;
  cursor: pointer;
}
.faq summary {
  font-weight: bold;
  cursor: pointer;
}
.faq p {
  margin-top: 0.5rem;
}

/* === Footer Section === */
.footer-section {
  background: rgba(80, 80, 80, 0.3);
  padding: 2rem 1rem;
  text-align: center;
  border-top: 2px solid black;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer-logo {
  height: 60px;
}
.footer-right a {
  margin: 0 0.5rem;
}
.footer-right img {
  height: 24px;
  width: 24px;
}
.footer-section hr {
  margin: 1.5rem auto;
  width: 100%;
  max-width: 800px;
  border: none;
  border-top: 1px solid black;
}
.footer-section p {
  font-weight: bold;
}

/* === Animations === */
.fade-in,
.fade-up,
.slide-in,
.fade-in-side,
.carousel-track {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.visible {
  opacity: 1;
  transform: none;
}
@keyframes scrollX {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* === Tablet Only === */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-video source {
    content: url("media/hero-tablet.mp4");
  }
}

/* === Mobile Landscape === */
@media (max-width: 767px) and (orientation: landscape) {
  .hero-video source {
    content: url("media/hero-placeholder.mp4");
  }
}

/* === Mobile Portrait === */
@media (max-width: 767px) and (orientation: portrait) {
  .hero-video source {
    content: url("media/hero-mobile.mp4");
  }

  .blob-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .blob-bg {
    width: 100%;
    max-width: 400px;
    opacity: 0.4;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(80, 80, 80, 0.3);
    padding: 1rem;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-btn {
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .work-photos {
    flex-direction: column;
    align-items: center;
  }

  .work-photos img {
    width: 100%;
    height: 160px;
  }

  .before-after-gallery img {
    height: 140px;
  }

  .buy-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .buy-text {
    padding: 0 1rem;
  }

  .buy-image img {
    width: 75%;
    margin-top: 1rem;
  }

  .carousel-track {
    gap: 1rem; /* reduced gap for mobile only */
    animation: scrollX 25s linear infinite;
  }

  .cta-button {
    display: block;
    width: fit-content;
    margin: 1.5rem auto;
  }

  .footer-section {
    margin-bottom: 0;
  }
}
