* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #014421;
  --secondary: #1b1b1b;
  --tertiary: #09ab57;
  --white: #ffffff;
  --border: #b3b3b3;
  --border-light: #d3d3d3;
  --light-gray: #717171;
  --dark-gray: #484848;
  --alt-section-bg: #f8f8f8;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--secondary);
  background: var(--white);
}

/* Shared / Utility Classes */
h1,
h2,
h3,
h4,
.btn-primary,
.service-number,
.service-label span,
.footer-social .social-links a {
  font-family: "Josefin Sans", sans-serif;
}

.card-clipped,
.process-card,
.testimonial-card {
  padding: 30px 50px;
  flex-shrink: 0;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  clip-path: polygon(0 15%, 10% 0, 100% 0, 100% 85%, 88% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

p {
  margin-bottom: 1rem;
}

.card-clipped p:last-child,
.process-card p:last-child,
.testimonial-card p:last-child {
  margin-bottom: 0;
}
.slider-track-shared,
.challenges-track,
.services-track,
.process-track,
.testimonial-track,
.brand-promise-track,
.why-choose-track {
  transition: transform 0.5s ease;
}

/* Header / Navigation */
.top-promo-bar {
  background-color: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  transition: transform 0.3s ease, height 0.3s ease, padding 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: hidden;
  min-height: 52px;
}

.top-promo-bar p {
  margin: 0;
}

.top-promo-bar .container {
  max-width: 1260px;
  padding: 0 20px;
  margin: 0 auto;
}

.top-promo-bar.hidden {
  height: 0;
  padding: 0;
  transform: translateY(-100%);
}

header {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1001;
  transition: top 0.3s ease;
  overflow: visible; /* Changed from hidden to allow nav-links to show */
}

nav {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-container {
  flex-shrink: 0;
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tertiary);
  text-decoration: none;
  font-weight: 600;
  font-size: 28px;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.header-phone:hover {
  opacity: 0.8;
}

.header-phone svg {
  width: 36px;
  height: 36px;
  fill: var(--tertiary);
  animation: ring 2s ease-in-out infinite;
  transform-origin: center;
}

.header-phone span {
  border: 1px solid var(--tertiary);
  padding: 4px 8px;
  border-radius: 4px;
}

.nav-middle {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.phone-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid var(--secondary);
  line-height: 1.2;
  transition: color 0.3s, border-color 0.3s;
}

.phone-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-cta {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover, .btn-cta.filled {
  background-color: var(--primary);
  color: var(--white);
}

.btn-cta.filled:hover {
  background-color: var(--tertiary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}




/* Contact & WhatsApp Buttons */
.mobile-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2000;
}

.contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  transition: background 0.3s;
}

.contact-btn svg {
  fill: currentColor;
}

.phone-btn {
  background-color: var(--primary);
}

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

.phone-btn:active, .whatsapp-btn:active {
  opacity: 0.9;
}

.desktop-whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  transition: transform 0.3s, box-shadow 0.3s;
  color: var(--white);
}

.desktop-whatsapp-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.desktop-whatsapp-btn svg {
  fill: currentColor;
}


/* Utility / Section Defaults */
section {
  padding: 80px 40px;
}

section.alt {
  background-color: var(--alt-section-bg);
}

.sub-title {
  color: var(--primary);
  font-style: italic;
  font-weight: 700;
}

.btn-primary {
  padding: 18px 40px;
  border: none;
  border-radius: 60px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary.btn-sm {
  padding: 12px 20px;
  font-size: 14px;
}

.btn-primary span {
  font-size: 20px;
}

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

/* Hero Section */
.hero {
  background-image: url("images/hero-backdrop2.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: left;
  position: relative;
  min-height: calc(100vh - 90px - 52px); /* Adjusted for top promo bar and header */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-weight: 700;
  font-size: 46px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 25px;
  max-width: 720px;
}

.hero p {
  margin-bottom: 35px;
  max-width: 720px;
}

.hero .btn-primary {
  margin-bottom: 20px;
}

.hero .booking-trust {
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 0 40px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  font-size: 14px;
}

.scroll-indicator::after {
  content: "↓";
  display: block;
  margin-top: 5px;
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes ring {
  0% {
    transform: rotate(0) scale(1);
  }
  5% {
    transform: rotate(15deg) scale(1.1);
  }
  10% {
    transform: rotate(-15deg) scale(1.1);
  }
  15% {
    transform: rotate(15deg) scale(1.1);
  }
  20% {
    transform: rotate(-15deg) scale(1.1);
  }
  25% {
    transform: rotate(15deg) scale(1.1);
  }
  30% {
    transform: rotate(-15deg) scale(1.1);
  }
  35% {
    transform: rotate(0) scale(1);
  }
  100% {
    transform: rotate(0) scale(1);
  }
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-intro h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}

.section-intro p {
  color: #4c4d46;
  line-height: 1.7;
}

.section-header {
  text-align: left;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 80px;
}

.section-header h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  flex: 1;
  min-width: 40%;
}

.section-header h2 span {
  display: block;
  color: var(--primary);
}

.section-header p {
  color: var(--secondary);
  line-height: 30px;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
}

/* Challenges Section */
.challenges-slider {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.challenges-track {
  display: flex;
}

.challenge-card {
  width: 400px;
  height: 413px;
  padding: 40px;
  flex-shrink: 0;
  background-image: url("images/corner-card-tr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.challenge-card:nth-child(even) {
  background-image: url("images/corner-card-bl.svg");
}

.challenge-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
}

.challenge-icon svg {
  width: 100%;
  height: auto;
}

.challenge-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--secondary);
  font-weight: 700;
}

.challenge-card p {
  font-size: 14px;
  line-height: 1.6;
}

.challenge-card p:first-of-type {
  margin-bottom: 10px;
}

.challenge-card p.sub {
  color: #666;
  font-style: italic;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-nav {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s;
}

.slider-nav:hover {
  background: var(--primary);
}

.slider-nav:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.slider-progress {
  flex: 0 0 200px;
  height: 3px;
  background: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
}

.slider-progress-bar {
  height: 100%;
  background: var(--tertiary);
  width: 25%;
  transition: width 0.3s;
}

/* Services Section */
.services {
  background: var(--white);
}

.services-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -40px;
}

.services-track {
  display: flex;
  height: 520px;
  border-top: 1px solid #c5c5c5;
  border-bottom: 1px solid #c5c5c5;
}

.service-card {
  position: relative;
  background: var(--white);
  overflow: hidden;
  border-left: 1px solid #c5c5c5;
  border-right: 1px solid #c5c5c5;
  flex-shrink: 0;
  /* To fit 8 inactive + 1 active card */
  width: calc((100% - 465px) / 8);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-card.active {
  width: 465px;
  cursor: default;
  border-radius: 20px;
}

/* Remove border from previous sibling of .active card */
.service-card.prev {
  border-right: none;
}

/* Remove border from next sibling of .active card */
.service-card.active + .service-card {
  border-left: none;
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
}

.service-card:not(.active) .service-image {
  opacity: 0.3;
  background-repeat: no-repeat;
  background-position: 120px center;
}

.service-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 465px;
  height: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  color: var(--white);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
}

.service-card.active .service-content {
  opacity: 1;
  visibility: visible;
}

.service-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tertiary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: auto;
}

.service-content h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--white);
  font-weight: 700;
}

.service-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--white);
}

.service-content .read-more {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  transition: color 0.3s;
}

.service-content .read-more:hover {
  color: var(--tertiary);
}

.service-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 520px;
  text-align: left;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  padding-left: 20px;
}

.service-card.active .service-label {
  opacity: 0;
  visibility: hidden;
}

.service-label span {
  font-size: 18px;
  font-weight: 400;
  color: #737373;
  white-space: nowrap;
}

.service-label .service-number {
  background: var(--white);
  color: var(--secondary);
  position: absolute;
  top: -75%;
  left: calc(100% - 80px);
  transform: translateY(50%) rotate(90deg);
  border: 1px solid #737373;
}

.service-card.active .service-label .service-number {
  left: -40px;
}

.services-controls {
  display: none;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--tertiary);
}

/* Process Section */
.process {
  background: var(--white);
}

.process-main {
  display: flex;
  gap: 60px;
}

.process-main > div {
  flex: 1;
}

.process-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 110px;
  align-self: start;
}

.process-description .section-header {
  margin: 0;
}

.process-description span {
  color: var(--tertiary) !important;
  text-transform: none;
  display: inline !important;
}

.process-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: process-step;
}

.process-controls {
  display: none;
}

.process-card h3 {
  color: var(--tertiary);
  counter-increment: process-step;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0%;
}

.process-card h3:before {
  content: counter(process-step, decimal-leading-zero);
  display: block;
  width: 47px;
  height: 47px;
  text-align: center;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 47px;
  letter-spacing: 0%;
  color: var(--secondary);
  margin-bottom: 30px;
}

.process-card p:first-of-type {
  color: var(--dark-gray);
  font-style: italic;
}

/* Brand Promise Section */
.brand-promise {
  background: var(--white);
}

.brand-promise-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.brand-promise-controls {
  display: none;
}

.promise-card {
  padding: 45px;
  background: var(--alt-section-bg);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.promise-card h3 {
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0%;
}

.promise-card p {
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--dark-gray);
}

.promise-card p:first-of-type {
  font-style: italic;
}

/* Testimonial Section */
.testimonial {
  background: var(--white);
}

.testimonial-main {
  display: flex;
  gap: 100px;
}

.testimonial-main > div {
  flex: 1;
}

.testimonial-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 35%;
}

.testimonial-description .section-header {
  margin: 0;
}

.testimonial-description span {
  color: var(--tertiary) !important;
  text-transform: none;
  display: inline !important;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 480px;
  overflow: hidden;
  counter-reset: process-step;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
}

.testimonial-card {
  width: 100%;
  min-width: 500px;
}

.testimonial-card h3 {
  color: var(--tertiary);
  counter-increment: process-step;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0%;
}

.testimonial-card q {
  font-style: Italic;
  font-size: 25px;
  line-height: 33px;
  letter-spacing: 0%;
  color: var(--dark-gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-gray);
}

/* For real image */
.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* For only name initials */
.testimonial-author .author-initials {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--tertiary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.testimonial-author .author-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-content .slider-controls {
  margin-top: 0;
}

/* Stats Section */
.stats .container {
  max-width: 1320px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-item h3 {
  font-style: Bold;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0%;
  font-weight: 700;
  color: var(--tertiary);
}

.stat-item p {
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
}

/* Why Choose Us Section */
.why-choose {
  background: var(--white);
}

.why-choose-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.why-choose-controls {
  display: none;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background: var(--white);
  border-radius: 30px;
  border: 1px solid var(--border-light);
}

.feature-card:last-child {
  border: none;
  justify-content: center;
}
.feature-card:last-child p.sub {
  color: var(--primary);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  font-style: Bold;
}

.feature-card p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-gray);
}

.feature-card p.sub {
  color: var(--tertiary);
  font-weight: 600;
}

/* Communities Section */
.communities .section-header p {
  margin-bottom: 20px;
}
.communities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.community-card {
  position: relative;
  height: 525px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}

.community-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-card:hover img {
  transform: scale(1.2);
  transition: transform 0.3s ease-in-out;
}

.community-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 30px 20px;
  color: var(--white);
}

.community-overlay h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.community-overlay p {
  font-size: 14px;
  line-height: 25px;
}

.communities-footer {
  display: flex;
  justify-content: space-between;
}

/* Booking Section */
.booking {
  background: var(--white);
}

.booking-content {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.booking-image-card {
  position: relative;
  background: linear-gradient(135deg, #012b17, #02502b);
  border-radius: 30px;
  overflow: hidden;
  clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 12% 100%, 0 85%);
  min-height: 420px;
  display: flex;
  flex: 1;
  align-items: stretch;
}

.booking-image-card::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  pointer-events: none;
}

.booking-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form-card {
  flex: 1;
  background: var(--white);
  border-radius: 32px;
  padding: 50px;
  border: 1px solid var(--border);
}

.booking-form-card h3 {
  font-size: 28px;
  line-height: 1.4;
  color: var(--secondary);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.booking-offer-subtext {
  color: #5b6353;
  margin-bottom: 30px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-group label {
  font-weight: 600;
  color: var(--secondary);
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1, 68, 33, 0.12);
}

.booking-form textarea {
  min-height: 110px;
  resize: vertical;
}

.consent-checkbox {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.consent-checkbox input {
  width: 24px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  margin: 0;
}

.alert {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Footer */
.site-footer {
  background: #101010;
  color: var(--white);
}

.site-footer p {
  color: #d5d5d5;
  line-height: 1.7;
}

.site-footer .footer-content {
  display: grid;
  padding: 70px 40px 0;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.site-footer ul li {
  color: #f5f5f5;
}

.footer-brand {
  max-width: 320px;
}

.footer-section {
  max-width: 260px;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.site-footer h4 {
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer li {
  font-size: 15px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.site-footer a:hover {
  opacity: 0.7;
}

.footer-social .social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.footer-social .social-links a {
  font-size: 26px;
  font-weight: 600;
}

.footer-bottom {
  background: #09ab57;
  text-align: center;
  margin-top: 70px;
  padding: 18px 20px;
  color: var(--white);
  font-size: 14px;
}

.footer-bottom p {
  color: var(--white);
}

.footer-bottom a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: underline;
}

/* Service Modal */
.service-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.service-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.service-modal-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  margin: 5vh auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-modal-close:hover {
  background: var(--tertiary);
  transform: rotate(90deg);
}

.service-modal-close svg {
  color: var(--secondary);
}

.service-modal-close:hover svg {
  color: var(--white);
}

.service-modal-image {
  grid-column: 1;
  position: relative;
  overflow: hidden;
  background: var(--alt-section-bg);
}

.service-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal-body {
  grid-column: 2;
  padding: 40px 20px;
  max-height: 90vh;
  overflow-y: auto;
}

.service-modal-header {
  margin-bottom: 30px;
}

.service-modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-modal-header p {
  color: var(--light-gray);
  font-size: 14px;
  line-height: 1.6;
}

.service-modal-details {
  margin-bottom: 30px;
}

.service-modal-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-modal-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-modal-details li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.6;
}

.service-modal-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--tertiary);
  font-weight: 700;
  font-size: 18px;
}

.service-modal-cta {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.service-modal-cta p {
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-modal-cta .btn-primary {
  padding: 15px 30px;
  font-size: 16px;
}

@media (max-width: 1259px) {
  nav {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .hero-video {
    display: none;
  }
}

/* Mobile responsive for services */
@media (max-width: 968px) {
  .header-phone {
    display: flex;
    font-size: 16px;
    gap: 5px;
  }
  .header-phone svg {
    width: 24px;
    height: 24px;
  }
  .header-phone span {
    padding: 2px 5px;
  }
  .btn-cta {
    display: none;
  }
  
  .mobile-contact-bar {
    display: flex;
  }

  .desktop-whatsapp-btn {
    display: none;
  }
  
  /* Ensure content isn't covered by bottom bar */
  body {
    padding-bottom: 60px;
  }
  .btn-primary {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    padding: 12px 30px;
  }
  .hero-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }
  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--white);
  }
  .hero-content p {
    font-size: 14px;
    color: var(--white);
    max-width: 100%;
  }
  .services-slider {
    overflow: hidden;
    margin: 0;
  }

  .services-track {
    height: auto;
  }

  .service-card {
    width: 100% !important;
    min-width: 100%;
    height: 500px;
  }

  .service-card.active {
    width: 100% !important;
  }

  .service-content {
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 40px 30px;
  }

  .service-label {
    display: none;
  }

  .services-controls,
  .process-controls,
  .brand-promise-controls,
  .why-choose-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }

  .communities-footer {
    flex-direction: column;
    gap: 20px;
  }

  .communities-footer .sub-title {
    text-align: center;
  }

  .communities-footer .btn-primary {
    width: 100%;
  }

  .service-modal-content {
    grid-template-columns: 1fr;
    max-height: 85vh;
    width: 95%;
    overflow: auto;
  }

  .service-modal-image {
    grid-column: 1;
    min-height: 250px;
    max-height: 40vh;
  }

  .service-modal-body {
    grid-column: 1;
    padding: 30px 25px;
    max-height: none;
  }

  .service-modal-header h2 {
    font-size: 22px;
  }

  .service-modal-close {
    top: 15px;
    right: 15px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; /* Relative to header */
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    gap: 15px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 60px 20px 80px;
    background-image: linear-gradient(
        5deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.2) 80%,
        transparent 100%
      ),
      url(images/hero-backdrop.webp);
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero h1 br, .hero p br {
    display: none;
  }

  section {
    padding: 60px 20px;
  }
  
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  .section-header {
    flex-direction: column;
    gap: 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-intro h2 {
    font-size: 32px;
  }

  .process-content {
    overflow: hidden;
  }

  .process-track {
    flex-direction: row;
    gap: 0;
  }

  .process-card {
    padding: 20px 40px;
    width: 100%;
    min-width: 100%;
  }

  .process-card h3:before {
    margin-bottom: 20px;
  }

  .brand-promise-content {
    overflow: hidden;
  }

  .brand-promise-track {
    display: flex;
    grid-template-columns: none;
    gap: 0;
  }

  .brand-promise-track .promise-card {
    width: 100%;
    min-width: 100%;
  }

  .why-choose-content {
    overflow: hidden;
  }

  .why-choose-track {
    display: flex;
    grid-template-columns: none;
    gap: 0;
  }

  .why-choose-track .feature-card {
    width: 100%;
    min-width: 100%;
  }

  .booking-content {
    flex-direction: column;
    gap: 30px;
  }

  .booking-image-card {
    order: 2;
    min-height: 420px;
    clip-path: polygon(0 0, 95% 0, 100% 12%, 100% 100%, 15% 100%, 0 88%);
  }

  .booking-form-card {
    order: 1;
    padding: 35px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .challenge-card {
    width: 100%;
    min-width: 100%;
  }

  .communities-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
  }
  .communities-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .community-card {
    scroll-snap-align: center;
  }

  .process-main,
  .testimonial-main {
    flex-direction: column;
    gap: 40px;
  }

  .process-description {
    position: static;
    align-self: auto;
  }

  .testimonial-description {
    max-width: 100%;
  }

  .testimonial-content {
    max-height: none;
  }

  .testimonial-card {
    min-width: calc(100vw - 60px);
    padding: 40px 30px 20px 30px;
  }

  .testimonial-card q {
    font-size: 20px;
    line-height: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }

  .stats-title {
    font-size: 28px;
  }

  .stats-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .section-header h2 {
    font-size: 24px;
  }

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

  .stats-title {
    font-size: 24px;
  }

  .service-card {
    min-width: 100%;
  }

  .testimonial-card {
    min-width: 280px;
    padding: 30px 20px 15px 20px;
  }

  .testimonial-card q {
    font-size: 18px;
    line-height: 26px;
  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
  }

  .booking-form-card {
    padding: 30px;
  }

  .site-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
    text-align: center;
  }
  .site-footer .footer-content > div {
    max-width: 100%;
    margin: 0 auto;
  }
  .site-footer .footer-content .footer-navigation {
    display: none;
  }
  .footer-social .social-links {
    justify-content: center;
  }
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--tertiary);
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5px;
}

