* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --jacfran-green: #005B3A;
  --jacfran-black: #000000;
  --jacfran-white: #FFFFFF;
  --border-gray: #e7e7e7;
  --text-soft: #4a4a4a;
  --soft-bg: #f7f7f7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #000000;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  color: var(--text-soft);
  line-height: 1.8;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* NAVBAR */
.topbar {
  background: rgba(0, 0, 0, 0.96);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.topbar.scrolled {
  background: rgba(8, 8, 8, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.nav-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: var(--jacfran-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-mobile-cta {
  display: none;
}

.translate-btn {
  background-color: var(--jacfran-green);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 24px rgba(0, 91, 58, 0.22);
}

.translate-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.mobile-menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* SECTIONS */
.section {
  padding: 84px 0;
  scroll-margin-top: 96px;
}

.section-light {
  background-color: #ffffff;
}

.section-soft {
  background-color: #ffffff;
}

.section-soft-richer {
  background:
    radial-gradient(circle at top left, rgba(0, 91, 58, 0.045), transparent 26%),
    linear-gradient(180deg, #f7f7f7 0%, #f1f1f1 100%);
}

.section-with-accent {
  position: relative;
}

.section-with-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 91, 58, 0.2) 50%, transparent 100%);
}

.section-elevated {
  background:
    radial-gradient(circle at top left, rgba(0, 91, 58, 0.05), transparent 30%),
    linear-gradient(180deg, #f7f7f7 0%, #f2f2f2 100%);
}

.section-dark-band {
  background:
    radial-gradient(circle at top right, rgba(0, 91, 58, 0.11), transparent 28%),
    linear-gradient(180deg, #080808 0%, #000000 100%);
}

/* TITLES */
.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-kicker {
  color: var(--jacfran-green);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  color: var(--jacfran-green);
  font-size: 2.75rem;
  line-height: 1.08;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 720px;
  color: var(--text-soft);
}

.section-heading-on-dark .section-title,
.section-title-on-dark {
  color: #ffffff;
}

.section-heading-on-dark .section-subtitle,
.section-subtitle-on-dark {
  color: rgba(255, 255, 255, 0.78);
}

/* HERO */
.video-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 700px;
  overflow: hidden;
  background-color: #000000;
  padding: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-bottom {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.76) 22%,
      rgba(0, 0, 0, 0.44) 48%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0.08) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.18) 100%);
  z-index: 1;
}

.hero-copy {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: min(980px, 88%);
  text-align: center;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title {
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 20px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 24px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-primary-btn,
.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-primary-btn {
  background: var(--jacfran-green);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 91, 58, 0.28);
}

.hero-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 91, 58, 0.34);
}

.hero-secondary-btn {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-secondary-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.28);
}

.review-slider {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  width: min(900px, 80%);
  text-align: center;
  padding: 0 20px;
}

.review-content {
  color: #ffffff;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.review-content.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

#review-text {
  color: rgba(255, 255, 255, 0.96);
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto 12px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.review-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

#review-stars {
  color: #f4d35e;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

#review-author {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.review-arrow span {
  font-size: 1.65rem;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
}

.review-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%) scale(1.06);
}

.review-arrow-left {
  left: 20px;
}

.review-arrow-right {
  right: 20px;
}

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.about-left,
.about-right {
  display: flex;
  flex-direction: column;
}

.about-left {
  position: sticky;
  top: 102px;
  align-self: start;
}

.about-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid var(--border-gray);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.08);
}

.about-description {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #111111;
  margin-bottom: 18px;
}

.about-description-secondary {
  color: var(--text-soft);
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 18px;
}

.about-value-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 20px 18px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
}

.about-value-card h3 {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.3;
  margin-top: 0;
}

.about-value-card p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.94rem;
}

.about-highlight {
  margin-top: 2px;
  color: var(--jacfran-green);
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.06em;
}

/* PACKAGES */
.packages-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 30px;
  align-items: start;
}

.vehicle-selector {
  background-color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 24px;
  position: sticky;
  top: 102px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vehicle-selector h3 {
  font-size: 1.08rem;
  margin-bottom: 16px;
  text-align: center;
  color: #000000;
}

.vehicle-preview-frame {
  width: 100%;
  height: 224px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-gray);
  background: #f2f2f2;
}

.vehicle-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.vehicle-preview-image.is-changing {
  opacity: 0;
  transform: scale(1.04);
}

.vehicle-buttons-group {
  display: grid;
  gap: 12px;
}

.vehicle-btn {
  width: 100%;
  border: 1px solid var(--border-gray);
  background-color: #ffffff;
  color: #000000;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.vehicle-btn:hover {
  border-color: var(--jacfran-green);
  color: var(--jacfran-green);
}

.vehicle-btn.active {
  background-color: var(--jacfran-green);
  border-color: var(--jacfran-green);
  color: #ffffff;
}

.packages-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  padding: 30px 28px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  background: linear-gradient(90deg, rgba(0, 91, 58, 0.85) 0%, rgba(0, 91, 58, 0.15) 100%);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 91, 58, 0.18);
}

.featured-card {
  border-color: rgba(0, 91, 58, 0.22);
  box-shadow: 0 18px 42px rgba(0, 91, 58, 0.14);
}

.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--jacfran-green);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 91, 58, 0.2);
  z-index: 4;
  white-space: nowrap;
}

.package-card-top {
  margin-bottom: 18px;
}

.package-eyebrow {
  text-align: center;
  color: var(--jacfran-green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.78rem;
  line-height: 1.16;
  margin-bottom: 10px;
  text-align: center;
  color: #000000;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-duration {
  color: #0d0d0d;
  opacity: 0.75;
  font-size: 0.92rem;
  text-align: center;
}

.package-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 22px;
  border: 1px solid var(--border-gray);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 18px 18px 0;
  border-top: 1px solid #efefef;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.65;
  text-align: left;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--jacfran-green);
}

.package-includes-note {
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid #efefef;
  color: #111111;
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
}

.more-info-btn {
  background: none;
  border: none;
  color: var(--jacfran-green);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  text-align: center;
}

.more-info-btn:hover {
  text-decoration: underline;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--jacfran-green);
  margin: auto 0 18px;
  line-height: 1;
  text-align: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.package-price.price-changing {
  opacity: 0.3;
  transform: translateY(4px);
}

.package-btn,
.primary-btn {
  width: 100%;
  border: none;
  background-color: var(--jacfran-green);
  color: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 14px 28px rgba(0, 91, 58, 0.18);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.package-btn:hover,
.primary-btn:hover {
  transform: translateY(-3px);
}

/* GREEN DIVIDER ONLY */
.brand-marquee-section.brand-divider-only {
  background-color: var(--jacfran-green);
  height: 8px;
  min-height: 8px;
  padding: 0;
  border: none;
}

.brand-marquee,
.brand-marquee-track,
.brand-logo-item {
  display: none;
}

/* EXTRAS */
.extras-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.extra-section-intro {
  margin-bottom: 24px;
}

.extra-section-note {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.extras-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.extra-service-card {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 20px;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.extra-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background: linear-gradient(90deg, var(--jacfran-green) 0%, rgba(0, 91, 58, 0.18) 100%);
}

.extra-service-card h3 {
  min-height: 58px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.35;
}

.extra-service-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.extra-more-btn {
  margin-top: auto;
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.extra-more-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: start;
}

.contact-copy-block {
  padding-right: 10px;
}

.contact-main-title {
  margin-bottom: 16px;
}

.contact-intro {
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: 28px;
  line-height: 1.8;
}

.contact-trust-points {
  display: grid;
  gap: 16px;
}

.contact-trust-item {
  background-color: rgba(255, 255, 255, 0.76);
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-trust-item h3 {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 8px;
}

.contact-trust-item p {
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
}

.form-group {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 700;
  color: #000000;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #ffffff;
  color: #000000;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--jacfran-green);
  box-shadow: 0 0 0 4px rgba(0, 91, 58, 0.10);
}

.form-group textarea {
  min-height: 140px;
}

/* FAQ */
.faq-section {
  background:
    radial-gradient(circle at top left, rgba(0, 91, 58, 0.05), transparent 28%),
    linear-gradient(180deg, #f5f5f5 0%, #efefef 100%);
}

.faq-kicker {
  color: var(--jacfran-green);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 980px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.faq-question-label {
  color: #000000;
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 700;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--jacfran-green);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 26px 24px;
  color: var(--text-soft);
  line-height: 1.8;
  margin: 0;
}

/* FINAL CTA */
.final-cta-section {
  background:
    radial-gradient(circle at top left, rgba(0, 91, 58, 0.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
  padding-top: 34px;
  padding-bottom: 28px;
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 91, 58, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(135deg, #0d0d0d 0%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 56px 42px;
  text-align: center;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.16);
}

.final-cta-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 91, 58, 0.16) 0%, rgba(0, 91, 58, 0) 72%);
  pointer-events: none;
}

.final-cta-glow-left {
  top: -90px;
  left: -80px;
}

.final-cta-glow-right {
  right: -90px;
  bottom: -120px;
}

.final-cta-kicker {
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.final-cta-title {
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 880px;
  margin: 0 auto 16px;
}

.final-cta-text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 800px;
  margin: 0 auto 26px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.final-cta-btn,
.final-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.final-cta-btn {
  background-color: var(--jacfran-green);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 91, 58, 0.22);
}

.final-cta-btn:hover {
  transform: translateY(-3px);
}

.final-cta-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.final-cta-btn-outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.24);
}

/* FOOTER */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
  padding: 52px 0 34px;
}

.footer-brand {
  max-width: 460px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links h4 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 18px 20px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

/* MODALS */
.info-modal,
.extra-info-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.info-modal.active,
.extra-info-modal.active {
  display: flex;
}

.info-modal-backdrop,
.extra-info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.info-modal-content,
.extra-info-modal-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.98) 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.16);
  overflow-x: hidden;
}

.info-modal-content::before,
.extra-info-modal-content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--jacfran-green) 0%, rgba(0, 91, 58, 0.18) 100%);
}

.info-modal-header,
.extra-info-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 26px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.info-modal-header h3,
.extra-info-modal-header h3 {
  font-size: 1.8rem;
  line-height: 1.15;
  color: #000000;
  letter-spacing: -0.02em;
}

.info-modal-close,
.extra-info-modal-close {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
  color: #000000;
  font-size: 1.3rem;
  cursor: pointer;
}

.info-modal-body,
.extra-info-modal-body {
  padding: 24px 26px 28px;
  display: grid;
  gap: 14px;
}

.info-modal-body p,
.extra-info-modal-body p {
  color: var(--text-soft);
  line-height: 1.8;
}

.info-modal-body strong,
.extra-info-modal-body strong {
  color: #000000;
}

.info-modal-content ul,
.extra-info-modal-content ul {
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.info-modal-content li,
.extra-info-modal-content li {
  color: var(--text-soft);
  line-height: 1.75;
}

.info-modal-body .package-image,
.extra-info-modal-body .package-image {
  height: 240px;
  border-radius: 20px;
  margin-bottom: 6px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-container {
    min-height: 84px;
    padding: 14px 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 5%;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(8, 8, 8, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .nav-menu.nav-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    padding: 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    border: none !important;
    border-radius: 16px;
    background: var(--jacfran-green);
    color: #ffffff !important;
    min-height: 52px;
    padding: 14px 18px !important;
    box-shadow: 0 14px 28px rgba(0, 91, 58, 0.20);
  }

  .video-hero {
    min-height: 660px;
  }

  .hero-copy {
    top: 44%;
  }

  .hero-title {
    font-size: 2.9rem;
  }

  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-left {
    position: static;
    top: auto;
  }

  .about-image {
    height: 420px;
  }

  .about-value-grid {
    grid-template-columns: 1fr;
  }

  .packages-layout {
    grid-template-columns: 1fr;
  }

  .packages-cards {
    grid-template-columns: 1fr;
  }

  .extras-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy-block {
    padding-right: 0;
  }

  .contact-form {
    padding: 26px;
  }
}

@media (max-width: 768px) {
  .video-hero {
    min-height: 620px;
  }

  .hero-copy {
    width: 90%;
    top: 44%;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    min-width: 100%;
  }

  #review-text {
    font-size: 1.35rem;
  }

  .review-slider {
    width: 86%;
    bottom: 14px;
  }

  .service-card {
    padding: 22px 20px;
  }

  .package-image {
    height: 220px;
  }

  .extra-service-image {
    height: 190px;
  }

  .faq-question {
    padding: 20px 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }

  .final-cta-card {
    padding: 40px 22px;
    border-radius: 26px;
  }

  .final-cta-title {
    font-size: 2.1rem;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-btn,
  .final-cta-btn-outline {
    min-width: 100%;
  }

  .info-modal-header h3,
  .extra-info-modal-header h3 {
    font-size: 1.45rem;
  }

  .info-modal-body .package-image,
  .extra-info-modal-body .package-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .extras-services-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 320px;
  }

  .faq-question-label {
    font-size: 1rem;
  }
}