:root {
  --bg: #f7f8fb;
  --surface: #fff;
  --surface-soft: #f1f4f8;
  --text: #0c111d;
  --muted: #677084;
  --line: #e5e8ee;
  --dark: #0c111d;
  --accent: #7cbf2a;
  --accent-2: #4d9f1a;
  --green: #95bf47;
  --shadow: 0 25px 80px rgba(12, 17, 29, 0.12);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(44px, 6.4vw, 74px);
}
h2 {
  font-size: clamp(32px, 4.6vw, 50px);
}
h3 {
  font-size: 20px;
}
p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: auto;
}

.section {
  padding: 84px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef6e0;
  color: #4d7f16;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Gradient highlight used on key headline words */
.grad-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
/*   color: transparent; */
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: 18px;
}
.section-head p {
  font-size: 17px;
  margin-top: 18px;
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s ease;
  position: relative;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 36px rgba(124, 191, 42, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #95d52f;
}
.btn-light {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(247, 248, 251, 0.84);
  border-bottom: 1px solid rgba(229, 232, 238, 0.78);
}
.nav {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope";
  font-weight: 800;
  font-size: 20px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 25px rgba(124, 191, 42, 0.25);
}
.logo img {
  display: block;
  max-height: 60px;
  width: auto;
}
.custom-logo-link {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: #4c5568;
  font-weight: 700;
}
.nav-links a:hover {
  color: var(--accent);
}

/* Mobile menu toggle (hamburger) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
}
.nav-toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
}
.nav-toggle span:before,
.nav-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    opacity 0.25s ease;
}
.nav-toggle span:before {
  top: -6px;
}
.nav-toggle span:after {
  top: 6px;
}
.nav-toggle.is-active span {
  background: transparent;
}
.nav-toggle.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle.is-active span:after {
  top: 0;
  transform: rotate(-45deg);
}

/* =====================================================
       Hero
    ===================================================== */
.hero {
  position: relative;
  padding: 88px 0 46px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 84% 14%,
      rgba(149, 191, 71, 0.18),
      transparent 26%
    ),
    radial-gradient(circle at 8% 10%, rgba(76, 175, 80, 0.12), transparent 22%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 17, 29, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 17, 29, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero p {
  font-size: 18px;
  max-width: 560px;
  margin-top: 22px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  transition: 0.2s ease;
}
.hero-link:hover {
  color: var(--accent);
  gap: 12px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  transform: unset !important;
}
.hero-image-card {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(12, 17, 29, 0.16);
  border: 1px solid var(--line);
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trusted-by logo strip, folded into the hero (Client Logos CPT) */
.hero-logos {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.hero-logos-label {
  display: block;
  text-align: center;
  font-size: 11.5px;
  font-weight: 800;
  color: #7a8496;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.logos-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: logosMarquee 42s linear infinite;
}
.logos-wrap:hover .logos-track {
  animation-play-state: paused;
}
@keyframes logosMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logo-item {
  flex: none;
  height: 54px;
  display: flex;
  align-items: center;
}
.logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: 0.25s ease;
}

/* Scroll-down cue */
.scroll-cue {
  position: relative;
  margin: 40px auto 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--muted);
  animation: scrollCueBounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollCueBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logos-track {
    animation: none;
  }
  .scroll-cue {
    animation: none;
  }
}

/* =====================================================
       Shared 2x3 icon-card grid (Services + Why Choose Us)
    ===================================================== */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.grid-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
}
.grid-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.grid-card:after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: #eef6e0;
}
.grid-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #eef6e0;
  color: var(--accent);
  margin-bottom: 22px;
  font-size: 20px;
  position: relative;
  z-index: 2;
}
.grid-card h3 {
  font-size: 18px;
  position: relative;
  z-index: 2;
}
.grid-card p {
  font-size: 14px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

/* =====================================================
       Portfolio showcase (single large stage, CPT-driven)
    ===================================================== */
.showcase {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
}
.showcase-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: clamp(260px, 42vw, 520px);
  border-radius: 28px;
  overflow: hidden;
  background: #0c111d;
  box-shadow: var(--shadow);
}
.showcase-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.showcase-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.showcase-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}
.showcase-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px;
  background: linear-gradient(to top, rgba(12, 17, 29, 0.85), transparent);
}
.showcase-caption h3 {
  color: #fff;
  font-size: 19px;
}
.showcase-caption p {
  color: #d7dbe6;
  font-size: 13px;
  margin-top: 6px;
}
.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  color: var(--text);
  transition: 0.2s ease;
  z-index: 5;
}
.showcase-nav:hover {
  background: var(--accent);
  color: #fff;
}
.showcase-prev {
  left: 16px;
}
.showcase-next {
  right: 16px;
}
.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.showcase-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.2s ease;
}
.showcase-dot.is-active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

/* =====================================================
       Video testimonials (NEW)
    ===================================================== */
.video-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-frame {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  background: #0c111d;
  box-shadow: var(--shadow);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-mute-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(12, 17, 29, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 12.5px;
  transition: 0.2s ease;
}
.video-mute-btn:hover {
  background: var(--accent);
}
.video-frame.is-unmuted .video-mute-btn {
  background: var(--accent);
}
.video-meta {
  text-align: center;
}
.video-meta strong {
  display: block;
  font-size: 13px;
}
.video-meta span {
  font-size: 11.5px;
  color: var(--muted);
}

.testimonial-subhead {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8496;
  margin: 60px 0 -6px;
}

/* =====================================================
       Testimonials (existing text-based CPT — restyled compact
       so it reads as a secondary row under the video cards)
    ===================================================== */
.testimonial-carousel {
  position: relative;
  margin-top: 40px;
}
.testimonial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: 2px;
  padding: 6px 6px 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar {
  display: none;
}
.testimonial-carousel--compact .testimonial-card {
  width: 280px;
  padding: 20px;
  border-radius: 16px;
}
.testimonial-card {
  flex: none;
  scroll-snap-align: start;
  width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(12, 17, 29, 0.16);
}
.testimonial-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 16px;
}
.testimonial-carousel--compact .testimonial-stars {
  font-size: 13px;
}
.testimonial-card h3 {
  font-size: 17px;
  margin-top: 14px;
}
.testimonial-carousel--compact .testimonial-card h3 {
  font-size: 14.5px;
  margin-top: 10px;
}
.testimonial-text {
  font-size: 14px;
  color: #374151;
  margin-top: 12px;
  line-height: 1.6;
  flex: 1;
}
.testimonial-carousel--compact .testimonial-text {
  font-size: 12.5px;
  margin-top: 8px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-person {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-carousel--compact .testimonial-person {
  margin-top: 14px;
  padding-top: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.testimonial-carousel--compact .testimonial-avatar {
  width: 32px;
  height: 32px;
}
.testimonial-person strong {
  font-size: 13px;
  display: block;
}
.testimonial-carousel--compact .testimonial-person strong {
  font-size: 12px;
}
.testimonial-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.testimonial-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s ease;
}
.testimonial-nav button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.testimonial-nav button:active {
  transform: scale(0.94);
}

/* =====================================================
       Process
    ===================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.process-num {
  font-family: "Manrope";
  font-weight: 800;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.process-card h3 {
  margin-top: 16px;
}
.process-card p {
  font-size: 14px;
  margin-top: 10px;
}

/* =====================================================
       Trust badges strip
    ===================================================== */
.trust-strip-section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 44px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
}
.trust-item i {
  color: var(--accent);
  font-size: 15px;
}

/* =====================================================
       Contact form
    ===================================================== */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  background: var(--surface-soft);
  color: var(--text);
  outline: none;
  transition: 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.pill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-options label {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  cursor: pointer;
  background: var(--surface-soft);
}
.pill-options input {
  display: none;
}
.pill-options input:checked + span {
  color: #fff;
}
.pill-options label:has(input:checked) {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.booking-form .btn {
  margin-top: 6px;
  justify-content: center;
  width: 100%;
}
.booking-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* =====================================================
       Final CTA
    ===================================================== */
.final-cta {
  padding: 70px 0 100px;
}
.final-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 40px;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(124, 191, 42, 0.16),
      transparent 60%
    ),
    var(--surface-soft);
  border: 1px solid var(--line);
}
.final-cta-inner p {
  margin-top: 16px;
  font-size: 17px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-inner .btn {
  margin-top: 30px;
}
.final-cta-note {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* =====================================================
       Footer
    ===================================================== */
footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

/* =====================================================
       Scroll progress bar (top of viewport)
    ===================================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =====================================================
       Sticky floating CTA (appears after hero on scroll)
    ===================================================== */
#floating-cta {
  position: fixed;
  right: 22px;
  bottom: -100px;
  z-index: 998;
  opacity: 0;
  transition:
    bottom 0.4s ease,
    opacity 0.4s ease;
  box-shadow: 0 18px 40px rgba(12, 17, 29, 0.28);
}
#floating-cta.is-visible {
  bottom: 22px;
  opacity: 1;
}
@media (max-width: 720px) {
  #floating-cta {
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    justify-content: center;
    bottom: -100px;
  }
  #floating-cta.is-visible {
    bottom: 16px;
  }
}

/* =====================================================
       Honeypot (spam-trap) field — hidden from real users
    ===================================================== */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  #scroll-progress,
  #floating-cta {
    transition: none;
  }
}

.nav-links-cta {
  display: none;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 240px;
    margin: 0 auto;
  }
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .video-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .video-row::-webkit-scrollbar {
    display: none;
  }
  .video-card {
    flex: none;
    width: 180px;
    scroll-snap-align: start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta-desktop {
    display: none;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(12, 17, 29, 0.1);
    padding: 10px 20px 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.3s ease,
      opacity 0.25s ease,
      padding 0.3s ease;
  }
  .nav-links.is-open {
    max-height: 70vh;
    opacity: 1;
  }
  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links-cta {
    display: inline-flex;
    margin-top: 14px;
    width: 100%;
  }
  .nav .btn {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }
  .hero {
    padding-top: 56px;
  }
  .hero-grid {
    gap: 34px;
  }
  .grid-6 {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-form {
    padding: 24px;
  }
  .showcase-nav {
    width: 40px;
    height: 40px;
  }
  .showcase-caption {
    padding: 18px 20px;
  }
  .final-cta-inner {
    padding: 44px 24px;
  }
  .footer-row {
    flex-direction: column;
    align-items: center;
  }
}
/* =========================================================
   PACKAGES / PRICING
========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 30px;
  transition: 0.28s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 25px 80px rgba(124, 191, 42, 0.18);
  transform: scale(1.03);
  z-index: 2;
}
.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(124, 191, 42, 0.35);
  white-space: nowrap;
}

.pricing-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 22px;
}
.pricing-head h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pricing-price {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin-top: 12px;
  letter-spacing: -0.02em;
}

.pricing-includes {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li i {
  color: var(--accent);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }
}