@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');

@font-face {
  font-family: 'PrimarySerif';
  src: url('./assets/fonts/fonnts.com-Ivy-Presto-Display-Light.otf') format('opentype');
}

:root {
  --color-brand-dark: #382A1D;
  /* Warm dark brown */
  --color-brand-light: #5A4C3F;
  /* Lighter warm brown */
  --color-accent-gold: #EBB62D;
  /* Yellow/Gold CTA */
  --color-accent-gold-hover: #DDA41C;
  --color-bg-base: #F9F6F0;
  /* Warm Creme off-white */
  --color-text-main: #382A1D;
  --color-text-muted: #7B7268;
  --color-gray-placeholder: #E5E7EB;
  /* Solid gray placeholder */

  --font-serif: 'PrimarySerif', Georgia, serif;
  --font-sans: 'Open Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

html,
body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--color-brand-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  box-sizing: border-box !important;
}

/* =========================================
   Buttons
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-accent-gold);
  color: var(--color-brand-dark);
}

.btn-primary:hover {
  background-color: var(--color-accent-gold-hover);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-brand-dark);
  color: var(--color-brand-dark);
}

.btn-outline:hover {
  background-color: var(--color-brand-dark);
  color: white;
}

/* =========================================
   Navigation
========================================= */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 10;
  color: white;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: none;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links li a {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.9;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-links li a:hover {
  opacity: 1;
  color: var(--color-accent-gold);
}

.nav-cta {
  background: white;
  color: var(--color-brand-dark);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
}

.nav-cta:hover {
  background: var(--color-accent-gold);
}

/* =========================================
   Hero Section
========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-brand-dark);
  background-image: url('./assets/images/baground_utama.png');
  background-size: cover;
  background-position: top center;
  color: white;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.hero-stats span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* =========================================
   Client/Logo Strip
========================================= */
.logo-strip {
  background: white;
  padding: 3.5rem 6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3.5rem;
  width: 100%;
  box-sizing: border-box;
}

.logo-strip img {
  height: 36px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.logo-strip img:hover {
  opacity: 1;
  transform: scale(1.07);
}

/* =========================================
   Features Section
========================================= */

/* Animasi keyframe */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

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

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

.features {
  padding: 6rem 0 5rem;
  background-color: var(--color-bg-base);
}

/* Header: 2 kolom — judul kiri, deskripsi kanan */
.features-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
}

/* Judul 3 baris serif italic — efek tangga bertahap */
.features-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 3.5rem;
  line-height: 1.2;
  color: #563F2D;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  max-width: 650px;
}

/* Efek tangga: setiap baris makin ke kanan */
.title-line {
  display: block;
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  white-space: nowrap;
}

.title-line.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staircase indent — baris 1 kiri, baris 2 tengah, baris 3 kanan */
.title-line:nth-child(1) {
  padding-left: 0;
  transition-delay: 0s;
}

.title-line:nth-child(2) {
  padding-left: 5.5rem;
  transition-delay: 0.2s;
}

.title-line:nth-child(3) {
  padding-left: 10rem;
  transition-delay: 0.4s;
}

/* Paragraf deskripsi kanan */
.features-desc {
  flex: 0 0 300px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #4A4A4A;
  line-height: 1.85;
  padding-top: 0.25rem;
  align-self: center;
}

/* Grid 4 kolom + 3 separator eksplisit */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr 2px 1fr;
  gap: 0;
  align-items: center;
  padding-top: 1rem;
}

/* Garis pemisah emas — fix width & height, tidak dipengaruhi konten */
.feature-sep {
  width: 2px;
  height: 80px;
  background-color: #FFBC00;
  justify-self: center;
  align-self: center;
}

.feature-item {
  text-align: center;
  padding: 1.5rem 2rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* nth-child: 1,3,5,7 adalah feature-item (skip separator di 2,4,6) */
.feature-item:nth-child(1) { transition-delay: 0.05s; }
.feature-item:nth-child(3) { transition-delay: 0.15s; }
.feature-item:nth-child(5) { transition-delay: 0.25s; }
.feature-item:nth-child(7) { transition-delay: 0.35s; }

.feature-item h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.35;
  color: #563F2D;
  margin-bottom: 1.25rem;
}

.feature-item p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #4A4A4A;
  line-height: 1.8;
}

/* =========================================
   Packages Section — Horizontal Scroll Carousel
========================================= */
.packages {
  padding: 5rem 0 0;
  background-color: #FDFBFC;
  text-align: center;
}

.packages-header {
  margin-bottom: 1rem;
}

.packages-header h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-brand-dark);
  margin-bottom: 0.75rem;
}

.packages-header h2 em {
  font-style: italic;
}

.packages-header p {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* Scroll wrapper */
.packages-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: -3rem;
}

/* Arrow buttons */
.pkg-arrow {
  position: absolute;
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid #E0D8D0;
  color: #563F2D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.pkg-arrow:hover {
  background: #563F2D;
  color: white;
  border-color: #563F2D;
  box-shadow: 0 8px 20px rgba(86,63,45,0.3);
  transform: scale(1.1);
}

.pkg-arrow-left {
  left: 12px;
}

.pkg-arrow-right {
  right: 12px;
}

.packages-scroll-wrapper {
  overflow-x: auto;
  padding: 8rem 5% 5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  flex: 1;
}

.packages-scroll-wrapper:active {
  cursor: grabbing;
}

.packages-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* Track — flex row of cards */
.packages-track {
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
  width: max-content;
  padding-bottom: 1rem;
}

/* Base card */
.pkg-card {
  width: 250px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  text-align: left;
  transform-origin: center bottom;
}

.pkg-card:hover {
  transform: translateY(-12px) scale(1.10);
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
  z-index: 10;
}

/* Image placeholder — dark brown */
.pkg-img {
  height: 180px;
  background-color: #3C2415;
  width: 100%;
}

/* Featured card — sama rata dengan kartu lain */
.pkg-featured {
  width: 250px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
}

.pkg-featured:hover {
  transform: translateY(-12px) scale(1.10);
  box-shadow: 0 20px 48px rgba(0,0,0,0.20);
  z-index: 10;
}

.pkg-featured .pkg-img {
  height: 180px;
}

/* Card body */
.pkg-body {
  padding: 1rem 1.15rem 1.25rem;
}

.pkg-body h3 {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 400;
  color: #2C1A0E;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

/* Badges row — satu baris, tidak wrap */
.pkg-badges {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.pkg-badges span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: #4A3828;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  white-space: nowrap;
  font-style: normal;
  font-variant-emoji: text;
}

/* Feature list */
.pkg-features {
  list-style: none;
  margin-bottom: 1.25rem;
  padding: 0;
}

.pkg-features li {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: #5A4A3A;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
}

/* 2 item pertama — bold & warna gelap */
.pkg-features li:nth-child(-n+2) {
  font-weight: 700;
  color: #2C1A0E;
}

/* Icon kuning/gold — sesuai SS */
.pkg-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  border: 1.5px solid #FFBC00;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFBC00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
  margin-top: 0;
  flex-shrink: 0;
  align-self: center;
}

/* 2 item pertama — icon gold lebih pekat */
.pkg-features li:nth-child(-n+2)::before {
  border-color: #FFBC00;
  border-width: 1.5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFBC00' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
  background-color: transparent;
}

/* Footer */
.pkg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F0EDE8;
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.pkg-from {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: #9A8A7A;
  display: block;
  margin-bottom: 0.15rem;
}

.pkg-price {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  color: #2C1A0E;
  letter-spacing: -0.02em;
}

/* Tombol Detail Paket — default putih, hover coklat */
.pkg-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: #3C2415;
  background: white;
  border: 1.2px solid #3C2415;
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.pkg-btn:hover,
.pkg-btn:active {
  background: #3C2415;
  color: white;
  border-color: #3C2415;
}

/* Dark button alias — sama seperti default */
.pkg-btn-dark {
  background: white;
  color: #3C2415;
  border-color: #3C2415;
}

.pkg-btn-dark:hover,
.pkg-btn-dark:active {
  background: #3C2415;
  color: white;
  border-color: #3C2415;
}

/* =========================================
   Timeline Section
========================================= */
.timeline-section {
  padding: 6rem 0;
  text-align: center;
  background-color: #FDFBFC;
}

.timeline-section h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: #3C2415;
  margin-bottom: 4rem;
}

.timeline-section h2 em {
  font-style: italic;
  font-weight: 300;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 10%;
  width: 80%;
  height: 1px;
  border-top: 1px dotted #8C7A6B;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  width: 32px;
  height: 32px;
  background: #3C2415;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

/* Dotted ring around the icon */
.step-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px dashed #3C2415;
  border-radius: 50%;
  background-color: #FDFBFC;
  z-index: -1;
}

.step-text h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #3C2415;
  margin-bottom: 0.65rem;
}

.step-text p {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: #5A4A3A;
  line-height: 1.55;
  max-width: 170px;
  margin: 0 auto;
}

/* =========================================
   Testimonials Section
========================================= */
/* =========================================
   Testimonials Section
========================================= */
.testimonials {
  padding: 5rem 0;
  background-color: white;
  text-align: center;
}

.testimonials h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: #3C2415;
  margin-bottom: 3rem;
}

.testimonials h2 em {
  font-style: italic;
  font-weight: 300;
}

/* Horizontal scroll styles */
.testimonials-scroll-wrapper {
  overflow-x: auto;
  padding: 1rem 5% 3rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.testimonials-scroll-wrapper:active {
  cursor: grabbing;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.testimonial-card {
  background: #FCFAFA;
  padding: 2.5rem 2rem;
  width: 320px;
  border-radius: 4px; /* Sedikit soft edge */
  text-align: left;
  flex-shrink: 0;
  border: 1px solid #F6F3EF;
}

.stars {
  color: #FFBC00;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #5A4A3A;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #4A3828;
  flex-shrink: 0;
}

.author-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: #3C2415;
  margin-bottom: 0.15rem;
}

.author-info span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: #7A6A5A;
}

/* =========================================
   Gallery Section
========================================= */
.gallery {
  padding: 6rem 0;
  background-color: white;
}

.gallery-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 750px;
  margin: 0 auto;
}

.gallery-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.gallery-center-text h2 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: #3C2415;
}

.gallery-center-text h2 em {
  font-style: italic;
  font-weight: 400;
}

.gallery-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-color: #E6E4E0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.gallery-img:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transform: translateY(-8px) scale(1.02);
  z-index: 20;
}

.g-img-1 { top: 15%; left: 8%; width: 22%; height: 38%; }
.g-img-2 { top: 5%; left: 34%; width: 28%; height: 38%; }
.g-img-3 { top: 20%; right: 8%; width: 20%; height: 32%; }
.g-img-4 { bottom: 8%; left: 16%; width: 20%; height: 28%; }
.g-img-5 { bottom: 18%; left: 40%; width: 16%; height: 22%; }
.g-img-6 { bottom: 5%; right: 10%; width: 26%; height: 36%; }

/* =========================================
   Footer
========================================= */
.footer {
  background-color: #3C2415;
  color: white;
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 32px;
  margin-bottom: 0.5rem;
  /* Tidak di invert agar logo kuning asli terlihat */
}

.footer-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon.yellow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #FFBC00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.social-icon.yellow-circle:hover {
  transform: translateY(-3px);
}

.footer h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: white;
}

.footer ul li {
  margin-bottom: 1rem;
}

.footer ul li a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
  text-decoration: none;
}

.footer ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  align-items: center;
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .features-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .features-title {
    font-size: 2.8rem;
  }

  .title-line:nth-child(1),
  .title-line:nth-child(2),
  .title-line:nth-child(3) {
    padding-left: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-sep {
    display: none;
  }

  /* Gallery Tablet Grid */
  .gallery-wrapper {
    height: 600px;
  }

  .gallery-center-text h2 {
    font-size: 2.8rem;
  }

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

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
  }

  .navbar {
    display: block;
    width: 100%;
    z-index: 999;
  }

  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 20;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    background: rgba(56, 42, 29, 0.98);
    padding: 1.5rem 0;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }
  
  .nav-cta {
    display: none; /* Hide button on mobile nav or move to menu */
  }

  .mobile-cta {
    display: block !important;
  }

  .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding-left: 1rem;
  }

  .timeline::before {
    top: 0;
    left: 32px; /* Center with the 32px icon (16px + 16px offset) */
    width: 1px;
    height: calc(100% - 32px);
    border-top: none;
    border-left: 2px dotted #8C7A6B;
  }

  .timeline-step {
    flex-direction: row;
    width: 100%;
    text-align: left;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .step-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .step-text h4 {
    margin-bottom: 0.25rem;
  }

  .step-text p {
    margin: 0;
    max-width: 100%;
  }

  .features-header {
    margin-bottom: 2rem;
  }

  .features-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .title-line {
    white-space: normal;
  }

  .title-line:nth-child(1),
  .title-line:nth-child(2),
  .title-line:nth-child(3) {
    padding-left: 0;
  }

  .features-desc {
    flex: auto;
    width: 100%;
    padding-top: 1rem;
  }

  .features-grid {
    gap: 1.5rem;
  }

  .feature-item {
    width: 100%;
  }

  .gallery-wrapper {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem;
  }

  .gallery-center-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 2rem;
  }

  .gallery-img {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 300px !important;
  }

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

  .footer-col {
    padding-right: 0 !important;
    margin-bottom: 2rem;
  }

  .footer-col:last-child {
    margin-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}