/* assets/css/theme.css */
:root {
  --forest: #14362A;
  --forest-md: #1C4A38;
  --forest-lt: #235C45;
  --gold: #B8892A;
  --gold-lt: #D4A84B;
  --gold-glow: #E8C26E;
  --white: #FFFFFF;
  --off-white: #F9F7F2;
  --cream: #F2EDE3;
  --text: #1A1A1A;
  --muted: #5A6B62;
  --border: #D8E4DC;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
}

/* Navbar */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(20, 54, 42, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 137, 42, 0.15);
  padding: 0.85rem 0;
  transition: padding 0.3s, box-shadow 0.3s;
}

#mainNav.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.35);
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-logo-text span {
  color: var(--gold-lt);
}

.nav-logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-top: 2px;
}

.desktop-nav .nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
  position: relative;
}

.desktop-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold-lt);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.desktop-nav .nav-link:hover, .desktop-nav .nav-link.active {
  color: #fff !important;
}

.desktop-nav .nav-link:hover::after, .desktop-nav .nav-link.active::after {
  transform: scaleX(1);
}

.btn-nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 0.48rem 1.4rem !important;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.25s;
  border-radius: 0;
}

.btn-nav-cta:hover {
  background: transparent;
  color: var(--gold-lt) !important;
  border-color: var(--gold-lt);
}

.hamburger-btn {
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Drawer */
#drawerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

#drawerOverlay.open {
  opacity: 1;
  visibility: visible;
}

#drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 90vw;
  background: var(--forest);
  z-index: 1070;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

#drawer.open {
  transform: translateX(0);
}

.drawer-head {
  background: var(--forest-md);
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(184, 137, 42, 0.2);
}

.drawer-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.drawer-nav {
  padding: 1rem 0;
  flex: 1;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.8rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.drawer-nav a i {
  font-size: 1rem;
  color: var(--gold-lt);
}

.drawer-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--gold);
}

.drawer-cta {
  padding: 1.4rem 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-cta a {
  display: block;
  background: var(--gold);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 0.9rem;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.drawer-cta a:hover {
  background: var(--gold-lt);
}

.drawer-contact {
  padding: 1.2rem 1.8rem 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-contact p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.drawer-contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.86rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.drawer-contact a:hover {
  color: var(--gold-lt);
}

/* Hero Slider */
#heroSlider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(14, 30, 22, 0.88) 0%, rgba(20, 54, 42, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184, 137, 42, 0.18);
  border: 1px solid rgba(212, 168, 75, 0.35);
  color: var(--gold-glow);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  margin-bottom: 1.6rem;
}

.hero-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold-lt);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  color: var(--gold-glow);
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

.btn-hero-primary {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--gold-glow);
  border-color: var(--gold-glow);
}

.btn-hero-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.slider-controls {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.dot.active {
  background: var(--gold-lt);
  width: 48px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.25s;
  font-size: 1rem;
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slide-counter {
  position: absolute;
  bottom: 44px;
  right: 32px;
  z-index: 10;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-family: 'Outfit', sans-serif;
}

.slide-counter strong {
  color: var(--gold-glow);
  font-size: 1.05rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

#heroSlider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 3;
}

/* Stat Strip */
.stat-strip {
  background: var(--forest);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(184, 137, 42, 0.2);
}

.stat-item {
  text-align: center;
  color: #fff;
  padding: 0.4rem 1rem;
}

.stat-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--gold-lt);
}

.stat-item span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  font-family: 'Outfit', sans-serif;
}

.stat-divider {
  width: 1px;
  background: rgba(184, 137, 42, 0.2);
  align-self: stretch;
}

/* Section Helpers */
section {
  padding: 108px 0;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest);
}

.section-title span {
  color: var(--gold);
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 1.8rem;
}

/* About */
#about {
  background: var(--off-white);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 40px;
  bottom: 40px;
  border: 1px solid var(--gold);
  z-index: 0;
}

.about-img-wrap img {
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  z-index: 2;
  background: var(--forest);
  color: #fff;
  padding: 1.4rem 1.8rem;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.about-badge strong {
  display: block;
  font-size: 2.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-lt);
}

.about-badge span {
  font-size: 0.7rem;
  opacity: 0.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--forest);
  margin: 0.25rem;
}

.value-pill i {
  color: var(--gold);
}

/* Services */
#services {
  background: #fff;
}

.service-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(20, 54, 42, 0.12);
  border-color: var(--gold);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 54, 42, 0.65) 0%, transparent 60%);
}

.service-icon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.service-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h5 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--forest);
}

.service-body p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 1.1rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.2s, color 0.2s;
}

.service-link:hover {
  gap: 0.7rem;
  color: var(--forest);
}

/* Features */
#features {
  background: var(--forest);
}

#features .section-title {
  color: #fff;
}

#features .section-label {
  color: var(--gold-lt);
}

#features .section-label::before {
  background: var(--gold-lt);
}

.feature-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 1.9rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(184, 137, 42, 0.15);
  border: 1px solid rgba(184, 137, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-lt);
  flex-shrink: 0;
}

.feature-text h6 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.7;
  margin: 0;
}

.features-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 40px 40px 0 rgba(184, 137, 42, 0.15);
}

/* Why Choose */
#why {
  background: var(--cream);
}

.why-card {
  background: #fff;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: border-top-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 10px 40px rgba(20, 54, 42, 0.1);
  transform: translateY(-4px);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.why-card h5 {
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* CTA Banner */
#ctaBanner {
  background: linear-gradient(140deg, rgba(20, 54, 42, 0.95) 0%, rgba(28, 74, 56, 0.88) 100%), url('../images/cta-bg.jpg') center/cover no-repeat;
  padding: 108px 0;
}

#ctaBanner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

#ctaBanner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.cta-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(184, 137, 42, 0.25);
  padding: 1.8rem;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
}

.cta-card:hover {
  background: rgba(184, 137, 42, 0.15);
  border-color: var(--gold-lt);
  transform: translateY(-4px);
}

.cta-card i {
  font-size: 1.9rem;
  color: var(--gold-lt);
  margin-bottom: 0.9rem;
  display: block;
}

.cta-card h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.cta-card p {
  font-size: 0.84rem;
  opacity: 0.68;
  margin: 0;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  font-weight: 600;
  padding: 0.9rem 2.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold-glow);
  border-color: var(--gold-glow);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 500;
  padding: 0.9rem 2.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  background: transparent;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

/* Gallery */
#gallery {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s;
  display: block;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(1) img {
  height: 460px;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 54, 42, 0.8), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1.3rem;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.gallery-overlay i {
  color: var(--gold-lt);
  font-size: 1.2rem;
  margin-left: auto;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

#lightbox.open {
  display: flex;
}

#lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

#lightbox-close:hover {
  opacity: 1;
}

/* FAQ */
#faq {
  background: var(--off-white);
}

.faq-wrap .accordion-item {
  background: #fff;
  border: 1px solid var(--border) !important;
  margin-bottom: 0.6rem;
}

.faq-wrap .accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest);
  background: #fff;
  padding: 1.2rem 1.5rem;
  box-shadow: none !important;
}

.faq-wrap .accordion-button:not(.collapsed) {
  color: var(--forest);
  background: var(--off-white);
}

.faq-wrap .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2314362A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-wrap .accordion-body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 1.5rem 1.3rem;
}

.faq-icon {
  width: 68px;
  height: 68px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
}

/* Contact */
#contact {
  background: #fff;
}

.contact-card {
  background: var(--forest);
  padding: 2.6rem;
  color: #fff;
  border-top: 3px solid var(--gold);
}

.contact-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold-lt);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.contact-info-item i {
  font-size: 1rem;
  color: var(--gold-lt);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-info-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-info-item .sub-label {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  display: block;
}

.form-control, .form-select {
  border-radius: 0;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text);
  background: #fff;
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 137, 42, 0.12);
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-submit {
  background: var(--forest);
  color: #fff;
  border: 1px solid var(--forest);
  font-weight: 600;
  padding: 0.9rem;
  width: 100%;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.95rem;
  transition: all 0.2s;
  margin-right: 0.3rem;
  text-decoration: none;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff !important;
}

/* Final CTA */
#finalCTA {
  background: var(--forest);
  position: relative;
  overflow: hidden;
  padding: 0;
}

#finalCTA::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184, 137, 42, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184, 137, 42, 0.08) 0%, transparent 50%);
}

#finalCTA::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.final-cta-left {
  padding: 80px 64px 80px 0;
  border-right: 1px solid rgba(184, 137, 42, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-cta-right {
  padding: 80px 0 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.cta-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cta-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-lt);
}

.final-cta-left h2 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.final-cta-left h2 em {
  color: var(--gold-glow);
  font-style: italic;
}

.final-cta-left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2.4rem;
  max-width: 400px;
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-cta-primary {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-cta-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: #fff;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.cta-action-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 137, 42, 0.2);
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.cta-action-card:hover {
  background: rgba(184, 137, 42, 0.12);
  border-color: rgba(184, 137, 42, 0.5);
  transform: translateX(6px);
}

.cta-action-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 137, 42, 0.18);
  border: 1px solid rgba(184, 137, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-lt);
  flex-shrink: 0;
}

.cta-action-card h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.cta-action-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.6;
}

.cta-trust-row {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 0.5rem;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.cta-trust-item i {
  color: var(--gold-lt);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #0C1F17;
  color: rgba(255, 255, 255, 0.55);
  padding: 72px 0 28px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand span {
  color: var(--gold-lt);
}

footer h6 {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: 'Outfit', sans-serif;
}

footer a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-size: 0.86rem;
  display: block;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--gold-lt);
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.07);
  margin: 2.2rem 0 1.2rem;
}

.footer-bottom {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-gold-line {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 64px;
}

/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-item:nth-child(1) img {
    height: 260px;
  }
  
  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }
  
  .final-cta-inner {
    grid-template-columns: 1fr;
  }
  
  .final-cta-left {
    padding: 64px 0 40px;
    border-right: none;
    border-bottom: 1px solid rgba(184, 137, 42, 0.18);
  }
  
  .final-cta-right {
    padding: 40px 0 64px;
  }
}

@media (max-width: 767px) {
  .final-cta-left h2 {
    font-size: 2.2rem;
  }
  
  .cta-trust-row {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  
  .gallery-item img {
    height: 140px;
  }
  
  .gallery-item:nth-child(1) img {
    height: 140px;
  }
  
  .about-img-wrap::before {
    display: none;
  }
  
  .about-badge {
    bottom: 8px;
    right: 8px;
  }
}