/* ═══════════════════════════════════════════════════════
   Witches & Cowboys – styles.css  |  Mobile First
   ═══════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  /* prevent iOS from expanding viewport due to off-screen elements */
}

body {
  font-family: 'Lato', sans-serif;
  color: #333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #EBEDED;
  height: auto;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  transition: padding .3s, box-shadow .3s;
}

#navbar.scrolled {
  padding: 10px 20px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .12);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 0 0;
  /* reduced top/bottom padding */
}

.logo-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #2d5a3d;
  border: 3px solid #c9a832;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform .4s ease;
}

.logo-circle:hover {
  transform: rotate(15deg);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span:first-child {
  font-family: 'Lato', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  color: #2d5a3d;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.logo-text span:last-child {
  font-family: 'Lato', sans-serif;
  font-size: .6rem;
  font-weight: 400;
  color: #666;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Desktop links – hidden mobile */
.nav-links {
  display: none;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: #444;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-bottom: 3px;
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a832;
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2d5a3d;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ── Hamburger ── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  z-index: 1100;
  transition: background .2s;
}

.hamburger:hover {
  background: rgba(45, 90, 61, .08);
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #2d5a3d;
  transform-origin: center;
  transition: transform .35s ease, opacity .25s ease, width .3s ease;
}

.hamburger span:nth-child(1) {
  width: 22px;
}

.hamburger span:nth-child(2) {
  width: 16px;
}

.hamburger span:nth-child(3) {
  width: 22px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* ── Mobile drawer ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  overflow: hidden;
  /* prevent off-screen panel from expanding iOS viewport width */
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .35s ease;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(80vw, 300px);
  height: 100%;
  background: #EBEDED;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -4px 0 30px rgba(0, 0, 0, .15);
  overflow-y: auto;
}

.mobile-menu.open {
  pointer-events: all;
}

.mobile-menu.open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu.open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: #2d5a3d;
  flex-shrink: 0;
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
}

.mobile-logo-img {
  height: 36px;
  width: auto;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}

.mobile-menu__close:hover {
  background: rgba(255, 255, 255, .15);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #333;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-left: 3px solid transparent;
  transition: all .2s;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a.active {
  background: #f5faf6;
  color: #2d5a3d;
  border-left-color: #c9a832;
}

.nav-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.mobile-menu__footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #2d5a3d;
}

.mobile-menu__cta {
  display: block;
  margin-top: 16px;
  background: #2d5a3d;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .3s;
}

.mobile-menu__cta:hover {
  background: #c9a832;
  color: #222;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  /* make hero slightly shorter so badge overlapping area is visible without scrolling */
  min-height: calc(100svh - 90px);
  background-image: url('images/1Witches-and-cowboys-logo.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  /* iOS Safari does not support background-attachment: fixed — use scroll as safe default */
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 70px;
  position: relative;
  /* allow badge to overlap into next section */
  overflow: visible;
}

/* Parallax only on devices that support hover (desktops) — safely excludes iOS/Android */


.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .04) 50%, transparent 70%);
  animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(100%);
  }
}

.hero-bg-lines {
  display: none;
}

@keyframes bg-drift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 40px 40px;
  }
}

/* removed building graphic from hero */
.hero-house {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 70%;
  background: linear-gradient(180deg, transparent 0%, rgba(100, 160, 120, .1) 40%, rgba(50, 100, 70, .15) 100%);
  clip-path: polygon(8% 100%, 8% 55%, 25% 30%, 42% 55%, 42% 42%, 55% 22%, 68% 42%, 68% 55%, 100% 55%, 100% 100%);
  animation: house-glow 4s ease-in-out infinite;
}

@keyframes house-glow {

  0%,
  100% {
    opacity: .5;
  }

  50% {
    opacity: .9;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  text-align: center;
}

.hero-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.63rem, 7.2vw, 3.61rem); /* Reduced by 10% */
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s .2s ease forwards;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-family: 'Lato', sans-serif;
  font-size: 1.46rem;
  font-weight: 400;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .5s ease forwards;
}

.location-pin {
  color: #fff;
  display: inline-flex;
  align-items: center;
  animation: pin-bounce 2s ease-in-out infinite;
}

.location-pin svg {
  width: 1.1em;
  height: 1.1em;
}

@keyframes pin-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* entry animation for hero badge */
@keyframes badge-entry {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.6);
  }

  60% {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.hero-badge {
  position: absolute;
  /* move badge down so half overlaps hero and about */
  bottom: -90px;
  /* half of the 180px height */
  left: 50%;
  transform: translateX(-50%);
  /* ensure it floats above following sections */
  z-index: 999;
  pointer-events: none;
  /* fixed dimensions requested by user */
  width: 180px;
  height: 180px;
  /* allow img to overflow the badge container */
  overflow: visible;
  /* start hidden until animation fires */
  opacity: 0;
  /* animate entry when page loads */
  animation: badge-entry 1s ease-out forwards;
  animation-delay: 1s;
}

.hero-badge img {
  width: clamp(190px, 38vw, 350px);
  height: auto;
  display: block;
  /* ensure full opacity so background color doesn't darken the image */
  opacity: 1;
  border-radius: 50%;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .35));
  /* scaled up 20% to make seal more prominent */
  transform: scale(1.2);
  transform-origin: center;
}

@keyframes badge-pulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(201, 168, 50, .5), 0 0 0 0 rgba(201, 168, 50, .3);
  }

  50% {
    box-shadow: 0 8px 40px rgba(201, 168, 50, .7), 0 0 0 8px rgba(201, 168, 50, .1);
  }
}

@keyframes badge-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

.badge-line1 {
  font-family: 'Lato', sans-serif;
  font-size: .48rem;
  font-weight: 800;
  color: #2d3a1a;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.3;
}

.badge-star {
  font-size: .75rem;
  color: #2d3a1a;
  margin: 3px 0;
}

.badge-line2 {
  font-family: 'Lato', sans-serif;
  font-size: .48rem;
  font-weight: 800;
  color: #2d3a1a;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 3;
  animation: fadeIn 1s 1.2s ease forwards;
  opacity: 0;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, .4);
  border-bottom: 2px solid rgba(255, 255, 255, .4);
  transform: rotate(45deg);
  animation: arrow-pulse 1.5s ease-in-out infinite;
}

@keyframes arrow-pulse {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: .4;
  }

  50% {
    transform: rotate(45deg) translateY(4px);
    opacity: 1;
  }
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-section {
  background: #ecedef;
  /* extra top padding so badge doesn't cover content */
  padding: 140px 24px 50px;
  text-align: center;
}

.about-headline {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.69rem, 6.5vw, 2.6rem);
  /* roughly 30% larger */
  font-weight: 700;
  color: #81B743;
  line-height: 1.25;
  max-width: 1100px;
  margin: 0 auto 24px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.about-body {
  max-width: 820px;
  margin: 0 auto 14px;
  font-size: 1.2rem;
  color: #09090A;
  line-height: 1.48;
  font-weight: 800;
}

.about-body-1 {
  max-width: 820px;
  margin: 0 auto 14px;
  font-size: 1rem;
  color: #09090A;
  line-height: 1.85;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px 20px;
  margin-top: 60px;
}

.pillar-item {
  position: relative;
  padding: 45px 16px 28px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease, background-color .3s ease;
  border-radius: 20px;
  z-index: 1;
}

.pillar-item::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-color: inherit;
  border-radius: 50%;
  z-index: -1;
}

/* alternating grey backgrounds for each pillar */
.pillars .pillar-item:nth-child(1) {
  background-color: #B1B9AE;
}

.pillars .pillar-item:nth-child(2) {
  background-color: #A09E9E;
}

.pillars .pillar-item:nth-child(3) {
  background-color: #666465;
}

.pillars .pillar-item:nth-child(4) {
  background-color: #2C2C2C;
}

.pillar-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.pillar-item:hover {
  /* subtle hover state without full background change */
  background-color: inherit;
}

.pillar-icon-wrap {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  z-index: 5;
  transition: transform .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

.pillar-item:hover .pillar-icon-wrap {
  transform: translateX(-50%) translateY(-5px);
}

.pillar-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.pillar-item p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════
   GREEN BANNER
═══════════════════════════════════════ */
.green-banner {
  background: #ecedef;
  padding: 22px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #81b743;
}

.green-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04), transparent);
  animation: sweep 3s ease-in-out infinite;
}

@keyframes sweep {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.green-banner p {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  color: #81b743;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  max-width: 80%;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-section {
  background: #b2b9ae;
  padding: 50px 24px;
  text-align: center;
}

.section-title {
  font-family: 'Lato', sans-serif;
  font-size: 1.54rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 36px;
}

.service-card {
  background: transparent;
  border-radius: 6px;
  text-align: left;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .6s ease, transform .6s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.service-card-body {
  padding: 20px;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-height: 350px;
}

.service-card-body h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1;
}

.service-card-body p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.36;
  text-align: center;
  font-weight: 600;
}

.btn-check-rates {
  display: inline-block;
  background: #ecedee;
  color: #09090a;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 36px;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.btn-check-rates::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(160, 25, 25, 0.15), transparent);
  transition: left .4s ease;
}

.btn-check-rates:hover {
  box-shadow: inset 7px 3px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-check-rates:hover::before {
  left: 100%;
}

/* ═══════════════════════════════════════
   TEAM / GUARANTEE
═══════════════════════════════════════ */
.team-section {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background-image: url('images/cowboys-and-witches-team.webp');
  background-size: cover;
  display: flex;
  align-items: flex-end;
  background-position: 25%;
}

.team-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(90, 153, 112, .25), transparent), radial-gradient(ellipse 40% 60% at 70% 40%, rgba(45, 90, 61, .4), transparent);
  animation: team-pulse 5s ease-in-out infinite;
}

@keyframes team-pulse {

  0%,
  100% {
    opacity: .7;
  }

  50% {
    opacity: 1;
  }
}

.truck-silhouette {
  position: absolute;
  left: 4%;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.truck-wrap {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}

.truck-wrap.visible {
  opacity: 1;
  transform: translateX(0);
}

.truck {
  font-size: 3.5rem;
  animation: truck-idle 3s ease-in-out infinite;
}

@keyframes truck-idle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.guarantee-badge {
  position: absolute;
  right: 20px;
  top: 24px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background-image: url('images/100gua.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 5;
}

@keyframes spin-badge {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 10px 40px rgba(201, 168, 50, .6);
  }

  50% {
    box-shadow: 0 10px 60px rgba(201, 168, 50, .9), 0 0 0 8px rgba(201, 168, 50, .15);
  }

}

.team-bottom-bar {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 46px 20px;
}

.team-bottom-bar h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: clamp(1.28rem, 5.47vw, 2.34rem);
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

/* ═══════════════════════════════════════
   PROMO
═══════════════════════════════════════ */
.promo-section {
  background: #fff;
  padding: 50px 24px;
  text-align: center;
}

.promo-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.2rem, 5vw, 2rem);
  font-weight: 800;
  color: #81b743;
  line-height: 1.25;
  margin-bottom: 20px;
}

.promo-section p {
  max-width: 820px;
  margin: 0 auto 14px;
  font-size: 1rem;
  color: #09090A;
  line-height: 1.85;
}

.btn-imin {
  display: inline-block;
  margin-top: 28px;
  background: #81b743;
  color: #ecedee;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .1em;
  padding: 14px 36px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.btn-imin::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transition: left .4s ease;
}

.btn-imin:hover {
  box-shadow: inset 7px 3px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-imin:hover::before {
  left: 100%;
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.photo-gallery-section {
  background: #fff;
  padding: 50px 24px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-featured {
  width: 100%;
  height: clamp(300px, 80vh, 800px);
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.gallery-featured img {
  width: 70%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  margin: 0 auto;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
  transform: scale(1.02);
}

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

  .gallery-featured {
    height: 30vh;
  }

  .gallery-featured img {
    object-fit: contain;
  }
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section {
  background: #b2b9ae;
  padding: 50px 24px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info-row {
  margin-bottom: 25px;
  font-size: 1.48rem;
  color: #fff;
  line-height: 1.7;
}

.contact-business-name {
  font-weight: 900;
}

.contact-phone-link {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-phone-link:hover {
  color: #81b743;
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(221, 221, 221, 0.6);
}

.contact-info-row strong {
  display: block;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-logo-bottom {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2d5a3d;
  border: 3px solid #c9a832;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  font-size: 1.6rem;
  transition: transform .4s ease;
}

.contact-logo-bottom:hover {
  transform: rotate(20deg);
}

.contact-form-wrap h2 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.form-row {
  margin-bottom: 12px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #d5d0c8;
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  color: #333;
  outline: none;
  border-radius: 20px;
  transition: border-color .3s, box-shadow .3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #2d5a3d;
  box-shadow: 0 0 0 3px rgba(45, 90, 61, .1);
}

.form-row textarea {
  height: 110px;
  resize: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

.form-submit-btn {
  display: block;
  margin-left: auto;
  border: none;
  background: #81b743;
  color: #ecedee;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .1em;
  padding: 14px 36px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transition: left .4s ease;
}

.form-submit-btn:hover {
  box-shadow: inset 7px 3px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.form-submit-btn:hover::before {
  left: 100%;
}

.form-submit-btn.sent {
  background: #4caf50;
  color: #fff;
  box-shadow: none;
}

.contact-bottom-logo {
  text-align: center;
  margin-top: 44px;
}

.contact-logo-img {
  max-width: 140px;
  height: auto;
  display: inline-block;
  animation: badge-float 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #666565;
  padding: 5px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-terms a {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-terms a:hover {
  opacity: 0.8;
}

.footer-contact-bar {
  background: #b2b9ae;
  padding: 30px 24px;
  color: #fff;
}

.footer-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-socials {
  display: flex;
  gap: 25px;
}

.footer-socials a {
  color: #fff;
  font-size: 1.8rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.footer-phone-main a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.3s ease;
}

.footer-phone-main a:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .footer-contact-inner {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
}

.footer-social-old {
  display: flex;
  gap: 12px;
}

.footer-phone {
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ═══════════════════════════════════════
   GLOBAL ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.pillar-item:nth-child(1) {
  transition-delay: .05s;
}

.pillar-item:nth-child(2) {
  transition-delay: .15s;
}

.pillar-item:nth-child(3) {
  transition-delay: .25s;
}

.pillar-item:nth-child(4) {
  transition-delay: .35s;
}

.service-card:nth-child(1) {
  transition-delay: .05s;
}

.service-card:nth-child(2) {
  transition-delay: .15s;
}

.service-card:nth-child(3) {
  transition-delay: .25s;
}

/* badge smaller on handset & tablet */
@media (max-width:639px) {
  .hero-badge {
    width: 126px;
    height: 126px;
    bottom: -63px;
  }

  .about-section {
    padding-top: 113px;
    /* 50 + 63 */
  }
}

/* ═══════════════════════════════════════
   MOBILE-ONLY  < 640px
═══════════════════════════════════════ */
@media (max-width: 639px) {
  .team-section {
    background-position: 25%;
  }
}

/* ═══════════════════════════════════════
   TABLET  ≥ 640px
═══════════════════════════════════════ */
@media (min-width:640px) {
  .hero {
    padding: 120px 40px 80px;
  }

  .hero-badge {
    width: 180px;
    height: 180px;
    /* position unchanged, remains centered */
  }

  .hero-badge .badge-line1,
  .hero-badge .badge-line2 {
    font-size: .52rem;
  }

  .services-section,
  .promo-section,
  .contact-section {
    padding: 60px 40px;
  }

  /* preserve large top padding for about so badge doesn't overlap */
  .about-section {
    padding: 140px 40px 50px;
  }

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

  .green-banner {
    padding: 24px 40px;
  }

  .green-banner p {
    font-size: 2rem;
  }

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



  footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 28px 40px;
  }
}

/* ═══════════════════════════════════════
   DESKTOP  ≥ 1024px
═══════════════════════════════════════ */
@media (min-width:1024px) {
  #navbar {
    padding: 5px 40px;
    height: auto;
    min-height: 115px;
  }

  #navbar.scrolled {
    padding: 0px 40px;
  }

  .logo-circle {
    width: 95px;
    height: 95px;
  }

  .logo-text span:first-child {
    font-size: .69rem;
  }

  .logo-text span:last-child {
    font-size: .69rem;
  }

  .nav-links a {
    font-size: .81rem;
  }

  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .hero {
    padding: 140px 60px 90px;
  }

  .hero-house {
    width: 65%;
    height: 90%;
  }

  .hero-badge {
    width: 180px;
    height: 180px;
    /* position unchanged, remains centered */
  }

  .hero-badge .badge-line1,
  .hero-badge .badge-line2 {
    font-size: .55rem;
  }

  .hero-badge .badge-star {
    font-size: .9rem;
  }

  .scroll-down {
    bottom: 30px;
  }

  .scroll-arrow {
    width: 24px;
    height: 24px;
  }

  /* keep same large top padding even on desktop */
  .about-section {
    padding: 140px 60px 50px;
  }

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

  .green-banner {
    padding: 26px 60px;
  }

  .green-banner p {
    font-size: 2rem;
  }

  .services-section {
    padding: 70px 60px;
  }

  .section-title {
    font-size: 1.76rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .service-img-box {
    height: 200px;
  }

  .team-section {
    min-height: 580px;
  }

  .truck {
    font-size: 5rem;
  }

  .truck-silhouette {
    gap: 20px;
    left: 5%;
  }

  .guarantee-badge {
    width: 350px;
    height: 350px;
    right: 80px;
    top: 70px;
  }

  .g-pct {
    font-size: 2rem;
  }

  .g-word {
    font-size: .55rem;
  }

  .people-row {
    gap: 6px;
  }

  .person {
    font-size: 1.8rem;
  }

  .team-bottom-bar {
    padding: 22px 60px;
  }

  .promo-section {
    padding: 70px 60px;
  }



  .contact-section {
    padding: 70px 60px;
  }

  .contact-inner {
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
  }

  footer {
    padding: 30px 60px;
  }
}

/* ═══════════════════════════════════════
   REGISTRATION PAGE (Mobile-First)
   ═══════════════════════════════════════ */
.registration-hero {
  position: relative;
  width: 100%;
  height: 350px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/cowboys-and-witches-team.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px;
  margin-top: 108px;
  /* Offset for fixed navbar */
}

.registration-hero h1 {
  font-size: clamp(1.8125rem, 5vw, 3.3125rem); /* Reduced by 3px */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.community-section {
  padding: 60px 24px;
  background: #fdfdfb;
}

.community-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.community-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #09090a;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.community-header p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile first: 1 col */
  gap: 24px;
  max-width: 900px;
  /* Centered narrow container for cleaner 2-column look */
  margin: 0 auto;
}

.community-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.community-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.community-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.community-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.community-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 2;
}

.community-card h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  transition: transform 0.4s ease;
}

/* Hover effects */
.community-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.community-card:hover img {
  transform: scale(1.1);
}

.community-card:hover::before {
  opacity: 1;
  background: linear-gradient(to top, rgba(129, 183, 67, 0.9) 0%, rgba(0, 0, 0, 0) 80%);
}

/* Responsive Queries */
@media (min-width: 768px) {
  .registration-hero {
    height: 400px;
  }

  .community-section {
    padding: 100px 24px;
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablet/desktop */
    gap: 32px;
  }

  .form-submit-btn.large {
    width: auto;
    padding: 18px 60px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════
   PROPERTY REGISTRATION FORM
   ═══════════════════════════════════════ */
.registration-hero.mini {
  height: 250px;
}

.property-reg-main {
  padding: 60px 24px;
  background: #fdfdfb;
}

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

.form-section {
  border: 1px solid #e0ddd7;
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 40px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.form-section-title {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #2d5a3d;
  letter-spacing: 0.1em;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0eee9;
  margin-bottom: 25px;
  display: block;
}

.form-section-subtitle {
  font-size: 0.95rem;
  font-weight: 800;
  color: #c9a832;
  margin: 10px 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-width {
    grid-column: span 2;
  }
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #666;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  background: #f9f8f6;
  border: 1px solid #e0ddd7;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #81b743;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(129, 183, 67, 0.1);
}

.radio-group-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.radio-item,
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #444;
  padding: 12px 16px;
  background: #f9f8f6;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  user-select: none;
}

.radio-item:hover,
.checkbox-item:hover {
  background: #f0f4eb;
  border-color: rgba(129, 183, 67, 0.2);
}

.radio-item input,
.checkbox-item input {
  accent-color: #81b743;
  width: 18px;
  height: 18px;
  margin: 0;
}

.field-desc {
  font-weight: 800;
  font-size: 0.8rem;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.resident-toggle-wrap {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed #e0ddd7;
}

.btn-secondary-outline {
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #81b743;
  color: #81b743;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: #81b743;
  color: #fff;
}

.service-sub-fields {
  margin-top: 15px;
  padding: 20px;
  background: #fcfcfc;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.days-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-actions {
  text-align: right;
  padding-top: 20px;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════
   RATES PAGE STYLES
═══════════════════════════════════════ */
.rates-hero {
  background-color: #b2b9ae;
  color: #fff;
  padding: 180px 24px 80px;
  text-align: center;
}

.rates-hero-title {
  font-size: clamp(2.0125rem, 5vw, 3.3125rem); /* Reduced by 3px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 20px;
  color: #fff;
}

.rates-hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.4;
}

.rates-hero-desc {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.9;
}

.rates-section {
  padding: 80px 24px;
  background: #fff;
  scroll-margin-top: 20px;
}

.rates-section:nth-of-type(even) {
  background: #f5faf6;
}

.rates-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 900px) {
  .rates-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .rates-container.reverse {
    flex-direction: row-reverse;
  }

  .rates-content,
  .rates-image-wrap {
    flex: 1;
  }
}

.rates-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rates-section-title {
  font-size: 2rem;
  color: #81B743;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.rates-table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.rates-table th {
  background: #b2b9ae;
  color: #fff;
  padding: 16px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.rates-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  color: #444;
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rates-table tr:hover td {
  background: #fdfdfd;
}

.rates-disclaimer {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}

.btn-book {
  display: inline-block;
  background: #81b743;
  color: #ecedee;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .1em;
  padding: 14px 36px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
}

.btn-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transition: left .4s ease;
}

.btn-book:hover {
  box-shadow: inset 7px 3px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-book:hover::before {
  left: 100%;
}

.video-guide-section {
  text-align: center;
  padding: 100px 24px;
  background: #b2b9ae;
  color: #fff;
  scroll-margin-top: 130px;
}

.video-guide-title {
  font-size: 2.3125rem; /* Reduced by 3px */
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.video-guide-desc {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.video-card h4 {
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  min-height: 3.5rem;
  /* Ensures titles take the same space (approx 2 lines) */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.3;
}

.video-card .video-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.video-card:hover .video-wrapper {
  transform: scale(1.03);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════
   TERMS & CONDITIONS PAGE
═══════════════════════════════════════ */
.terms-main {
  padding: 60px 24px;
  background: #fdfdfd;
}

.terms-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.06);
}

.terms-inner-header {
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 2px solid #2d5a3d;
  padding-bottom: 30px;
}

.terms-inner-header h2 {
  font-size: 2rem;
  color: #2d5a3d;
  margin-bottom: 10px;
}

.effective-date {
  font-weight: 700;
  color: #777;
  margin-bottom: 20px;
}

.welcome-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h3 {
  font-size: 1.6rem;
  color: #2d5a3d;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.terms-section h4 {
  font-size: 1.2rem;
  color: #333;
  margin: 25px 0 10px;
}

.terms-section h5 {
  font-size: 1.1rem;
  color: #2d5a3d;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terms-section p,
.terms-section li {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.terms-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.terms-section ul ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

.status-box,
.important-note,
.note-box,
.penalty-box {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #c9a832;
}

.status-box h4 {
  margin-top: 0;
  color: #2d5a3d;
}

.important-note {
  border-left-color: #d9534f;
  background: #fffafa;
}

.contact-info-block {
  background: #f5faf6;
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
}

.contact-info-block p {
  margin-bottom: 5px;
}

.contact-info-block a {
  color: #2d5a3d;
  text-decoration: underline;
}

.terms-inner-footer {
  margin-top: 80px;
  text-align: center;
  padding: 50px 30px;
  background: #f8faf5;
  border-radius: 20px;
  border: 2px dashed #81b743;
  box-shadow: 0 15px 40px rgba(129, 183, 67, 0.08);
  transition: transform 0.3s ease;
}

.terms-inner-footer:hover {
  transform: translateY(-5px);
}

.terms-inner-footer p {
  margin: 0;
  font-weight: 900;
  color: #2d5a3d;
  font-size: clamp(1.4rem, 4vw, 2.22rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .terms-container {
    padding: 30px 20px;
  }

  .terms-inner-header h2 {
    font-size: 1.5rem;
  }

  .terms-section h3 {
    font-size: 1.3rem;
  }
}