:root {
  --ink: #0b1414;
  --ink-2: #1f2b2a;
  --gold: #c9a44c;
  --champagne: #f7f1e3;
  --mist: #e8ecea;
  --forest: #0f2a24;
  --accent: #b57e2e;
  --brick: #a03b32;
  --shadow: 0 20px 40px rgba(10, 20, 18, 0.18);
  --shadow-premium: 0 30px 60px rgba(10, 20, 18, 0.25);
  --shadow-gold: 0 15px 35px rgba(201, 164, 76, 0.35);
  --font-heading: "Neo Tech", "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --nav-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@font-face {
  font-family: "Neo Tech";
  src: url("../fonts/Neo Tech.ttf") format("truetype");
  font-display: swap;
}

html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

* {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(201, 164, 76, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(15, 42, 36, 0.12), transparent 60%),
    #fbfbf8;
  padding-top: var(--nav-height);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Premium fade-in animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}

/* Stagger animations */
.fade-in-up.delay-1 {
  animation-delay: 0.1s;
}

.fade-in-up.delay-2 {
  animation-delay: 0.2s;
}

.fade-in-up.delay-3 {
  animation-delay: 0.3s;
}

.fade-in-up.delay-4 {
  animation-delay: 0.4s;
}

h1,
h2,
h3,
.display-6,
.section-title {
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

h1,
.display-4 {
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h2,
.display-6 {
  font-weight: 600;
  color: var(--ink);
}

p {
  color: var(--ink-2);
}

/* Form Select with Down Arrow */
.form-select {
  padding-right: 40px !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 16px 12px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c9a44c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
}

.section-padding {
  padding: 120px 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

section[id] {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

.container,
.container-fluid {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.philosophy-copy {
  max-width: 820px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.philosophy-quote {
  font-style: italic;
}

.paper-bg {
  background:
    radial-gradient(1200px 600px at 50% 20%, rgba(245, 238, 220, 0.8), transparent 60%),
    repeating-linear-gradient(115deg, rgba(214, 205, 186, 0.18), rgba(214, 205, 186, 0.18) 2px, transparent 2px, transparent 18px),
    #f8f5ee;
}

/* Section Background Alternation */
.section-bg-light {
  background:
    radial-gradient(1000px 500px at 20% 30%, rgba(201, 164, 76, 0.08), transparent 50%),
    radial-gradient(800px 400px at 80% 70%, rgba(15, 42, 36, 0.06), transparent 50%),
    #ffffff;
  position: relative;
}

.section-bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 76, 0.2), transparent);
}

.section-bg-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 76, 0.2), transparent);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 59, 50, 0.35), transparent);
  margin: 40px auto 0;
  max-width: 360px;
}

.navbar {
  transition: var(--transition-smooth);
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: var(--nav-height);
  background: rgba(11, 20, 20, 0.85) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1030;
}

.navbar.scrolled {
  background: rgba(11, 20, 20, 0.95) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-smooth);
}

.navbar-brand:hover::after {
  width: 100%;
}

.nav-link {
  color: #f2f2f2 !important;
  opacity: 0.9;
  position: relative;
  transition: var(--transition-smooth);
  padding: 8px 12px !important;
  margin: 0 4px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  opacity: 1;
  color: var(--gold) !important;
}

.nav-link:hover::before {
  width: calc(100% - 24px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #1d1c17;
  border: none;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
}

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

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(201, 164, 76, 0.4);
}

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

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline-cream {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
}

.btn-outline-cream:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Hero Swiper Styles */
.hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-swiper {
  width: 100%;
  max-width: 100%;
  height: calc(100vh - var(--nav-height));
  min-height: 600px;
  overflow: hidden;
}

.hero-swiper .swiper-wrapper {
  width: 100%;
  max-width: 100%;
  /* overflow: hidden; */
}

.swiper-container,
.swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-swiper .swiper-slide {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 20, 20, 0.88), rgba(15, 42, 36, 0.6));
  z-index: 0;
}

.hero-banner-image {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Teaser page - remove navbar space */
body.teaser-page {
  padding-top: 0 !important;
}

body.teaser-page section[id] {
  scroll-margin-top: 0;
}

/* Teaser hero - remove overlay and show images in front */
.teaser-hero .hero-swiper {
  height: 100vh;
}

.teaser-hero .hero-swiper .swiper-slide {
  min-height: 100vh;
  display: block;
}

.teaser-hero .hero-swiper .swiper-slide::before {
  display: none;
}

/* Hide navigation arrows and pagination for single slide */
.teaser-hero .swiper-button-prev,
.teaser-hero .swiper-button-next,
.teaser-hero .swiper-pagination {
  display: none !important;
}

.hero-swiper .swiper-slide .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
  background: linear-gradient(145deg, rgba(11, 20, 20, 0.75), rgba(15, 42, 36, 0.55));
  border: 1px solid rgba(201, 164, 76, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 164, 76, 0.1);
  padding: 56px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-content:hover {
  transform: translateY(-4px);
}

/* Hero Swiper Pagination */
.hero-swiper .swiper-pagination {
  bottom: 30px !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
  margin: 0 6px !important;
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: var(--gold);
  border-color: var(--gold);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(201, 164, 76, 0.6);
}

/* Hero Swiper Navigation */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 56px;
  height: 56px;
  background: rgba(11, 20, 20, 0.75);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  border: 1px solid rgba(201, 164, 76, 0.2);
  opacity: 0.8;
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(11, 20, 20, 0.9);
  border-color: rgba(201, 164, 76, 0.4);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.hero-swiper .swiper-button-prev {
  left: 30px;
}

.hero-swiper .swiper-button-next {
  right: 30px;
}

.hero-swiper .swiper-button-prev.swiper-button-disabled,
.hero-swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(201, 164, 76, 0.25);
  border: 1px solid rgba(201, 164, 76, 0.5);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-badge:hover {
  background: rgba(201, 164, 76, 0.35);
  transform: scale(1.05);
}

.section-title {
  color: var(--brick);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(15, 42, 36, 0.08);
  padding: 28px;
  border-radius: 18px;
  /* box-shadow: 0 12px 30px rgba(12, 18, 17, 0.08); */
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.feature-card i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 76, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* Location Advantage Accordion */
.location-accordion {
  border-radius: 20px;
  overflow: hidden;
}

.location-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(15, 42, 36, 0.1);
  background: #fff;
}

.location-accordion .accordion-item:last-child {
  border-bottom: none;
}

.location-accordion .accordion-button {
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 24px;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-smooth);
}

.location-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(15, 42, 36, 0.05));
  color: var(--brick);
  box-shadow: none;
}

.location-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a03b32'%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");
  transform: rotate(180deg);
}

.location-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233e3e3e'%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");
  margin-left: auto;
  transition: var(--transition-smooth);
}

.location-accordion .accordion-button:hover {
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.08), rgba(15, 42, 36, 0.03));
}

.location-accordion .accordion-button:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(201, 164, 76, 0.15);
}

.accordion-icon {
  font-size: 1.8rem;
  line-height: 1;
  filter: grayscale(0.3);
  transition: var(--transition-smooth);
}

.location-accordion .accordion-button:not(.collapsed) .accordion-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}

.location-accordion .accordion-body {
  padding: 24px;
  background: #fff;
}

.location-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.location-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  color: var(--ink-2);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.location-list li:hover {
  color: var(--brick);
  padding-left: 8px;
}

.location-list li:last-child {
  border-bottom: none;
}

.location-list .distance {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.9rem;
  background: rgba(201, 164, 76, 0.1);
  padding: 6px 12px;
  border-radius: 12px;
  min-width: 60px;
  text-align: center;
}

/* Location Map Panel */
.location-map-panel {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 42, 36, 0.1);
  height: 100%;
  min-height: 500px;
  position: relative;
  background: #f5f5f5;
}

.location-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
  min-height: 500px;
}

.location-map-panel:hover .location-map-image {
  transform: scale(1.05);
}

/* Legacy info-card styles for backward compatibility */
.info-card {
  background: #fff;
  border: 1px solid rgba(15, 42, 36, 0.08);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 12px 30px rgba(12, 18, 17, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.03), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 76, 0.15);
}

.info-card:hover::after {
  opacity: 1;
}

.info-card h6 {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f5f51;
  font-size: 0.85rem;
  margin-bottom: 14px;
  font-family: var(--font-heading);
}

.info-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.info-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
  color: #3e3e3e;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card .distance {
  color: #2f2f2f;
  font-weight: 600;
  white-space: nowrap;
}

.map-panel {
  border-radius: 22px;
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(11, 20, 20, 0.9), rgba(15, 42, 36, 0.85)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?q=80&w=1400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 28px;
}

.highlights-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.highlights-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.6;
}

.highlights-list li {
  position: relative;
  padding-left: 40px;
}

.highlights-list li::before {
  content: "\f26b";
  /* Bootstrap Icons check-circle-fill */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 164, 76, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(201, 164, 76, 0.3);
  line-height: 1;
}

/* Apartment Table Section */
.apartment-table-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(15, 42, 36, 0.1);
  overflow-x: auto;
}

.apartment-table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.apartment-table thead {
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(15, 42, 36, 0.05));
}

.apartment-table thead th {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brick);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  border: none;
  border-bottom: 2px solid rgba(201, 164, 76, 0.3);
}

.apartment-table thead th:first-child {
  border-top-left-radius: 12px;
}

.apartment-table thead th:last-child {
  border-top-right-radius: 12px;
}

.apartment-table tbody tr {
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(15, 42, 36, 0.08);
}

.apartment-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.05), rgba(15, 42, 36, 0.02));
  transform: scale(1.01);
}

.apartment-table tbody tr:last-child {
  border-bottom: none;
}

.apartment-table tbody td {
  padding: 20px 24px;
  color: var(--ink-2);
  font-size: 1rem;
  vertical-align: middle;
}

.apartment-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}

.apartment-table tbody td:nth-child(2) {
  color: var(--brick);
  font-weight: 500;
}

.price-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  background: rgba(0, 102, 204, 0.05);
  border: 1px solid rgba(0, 102, 204, 0.2);
}

.price-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Price Modal */
.price-modal-content {
  border-radius: 24px;
  border: 1px solid rgba(201, 164, 76, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.price-modal-content .modal-header {
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(15, 42, 36, 0.05));
  border-bottom: 1px solid rgba(201, 164, 76, 0.2);
  border-radius: 24px 24px 0 0;
  padding: 24px 32px;
  justify-content: space-between;
  align-items: center;
}

.price-modal-content .modal-title {
  font-family: var(--font-heading);
  color: var(--brick);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.price-modal-content .btn-close-custom {
  background: rgba(11, 20, 20, 0.1);
  border: none;
  border-radius: 50%;
  opacity: 0.8;
  transition: var(--transition-smooth);
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
}

.price-modal-content .btn-close-custom:hover {
  opacity: 1;
  background: rgba(11, 20, 20, 0.25);
  transform: scale(1.1);
}

.price-modal-content .btn-close-custom i {
  font-size: 1.2rem;
  color: var(--ink);
}

.price-modal-content .modal-body {
  padding: 32px;
}

.price-modal-content .form-control,
.price-modal-content .form-select {
  border-radius: 12px;
  border: 1px solid rgba(15, 42, 36, 0.15);
  padding: 12px 16px;
  transition: var(--transition-smooth);
}

/* General form-select arrow styling */
.form-select {
  padding-right: 40px !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 16px 12px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c9a44c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
}

.price-modal-content .form-select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.price-modal-content .form-control:focus,
.price-modal-content .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.1);
  outline: none;
}

/* Form Validation Styles */
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6 .4.4.4-.4m0 4.8h-.8m3.2 0h-.8'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-select.is-invalid {
  border-color: #dc3545;
  padding-right: 60px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6 .4.4.4-.4m0 4.8h-.8m3.2 0h-.8'/%3e%3c/svg%3e");
  background-position: right 12px center, right 40px center;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-select.is-valid {
  border-color: #198754;
  padding-right: 60px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 12px center, right 40px center;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid:focus,
.form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.1);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

.valid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #198754;
}

/* Image Lightbox Modal */
.image-lightbox-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

.image-lightbox-content .modal-header {
  background: rgba(11, 20, 20, 0.9);
  border: none;
  border-radius: 12px 12px 0 0;
  padding: 16px 24px;
  justify-content: space-between;
  align-items: center;
}

.image-lightbox-content .modal-title {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
}

.image-lightbox-content .modal-body {
  background: rgba(11, 20, 20, 0.95);
  border-radius: 0 0 12px 12px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 0 0 12px 12px;
}

.image-lightbox-content .btn-close-custom {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  opacity: 0.9;
  transition: var(--transition-smooth);
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.image-lightbox-content .btn-close-custom:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.image-lightbox-content .btn-close-custom i {
  font-size: 1.2rem;
  color: #fff;
}

.price-modal-content .form-label {
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

/* Highlights Amenities */
.highlights-amenities {
  padding: 24px;
  background: linear-gradient(135deg, rgba(15, 42, 36, 0.03), rgba(201, 164, 76, 0.05));
  border-radius: 18px;
  border: 1px solid rgba(201, 164, 76, 0.15);
}

.amenities-title {
  color: var(--brick);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.amenities-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(15, 42, 36, 0.1);
  transition: var(--transition-smooth);
}

.amenities-card:hover {
  transform: translateX(4px);
  border-color: rgba(201, 164, 76, 0.2);
}

.amenities-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(201, 164, 76, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(201, 164, 76, 0.2);
  transition: var(--transition-smooth);
}

.amenities-card:hover .amenities-icon {
  background: rgba(201, 164, 76, 0.2);
  border-color: rgba(201, 164, 76, 0.4);
  transform: scale(1.1);
  color: var(--accent);
}

.amenities-icon i {
  font-size: 1.5rem;
}

.amenities-content {
  color: var(--ink-2);
  line-height: 1.6;
  flex: 1;
}

.amenities-content strong {
  color: var(--brick);
  font-weight: 600;
}

.zoning-map {
  background: #f3efe6;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.zoning-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 6px;
  min-height: 360px;
}

.zone {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1f2b2a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zone.kids {
  background: rgba(216, 191, 133, 0.8);
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.zone.wellness {
  background: rgba(124, 160, 196, 0.75);
  grid-column: 1 / 7;
  grid-row: 3 / 6;
}

.zone.tranquility {
  background: rgba(150, 198, 155, 0.75);
  grid-column: 7 / 11;
  grid-row: 2 / 5;
}

.zone.active {
  background: rgba(198, 150, 137, 0.75);
  grid-column: 7 / 10;
  grid-row: 5 / 7;
}

.zone.family {
  background: rgba(188, 196, 138, 0.75);
  grid-column: 10 / 13;
  grid-row: 3 / 7;
}

.zone-panel {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  transition: var(--transition-smooth);
  position: relative;
}

.zone-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.05), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
  pointer-events: none;
}

.zone-panel:hover {
  transform: translateY(-6px);
}

.zone-panel:hover::before {
  opacity: 1;
}

.zone-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.zone-panel .col-md-6 img {
  min-height: 300px;
}

.zone-panel:hover img {
  transform: scale(1.05);
}

.zone-panel .zone-body {
  padding: 36px;
}

.zone-panel .row.g-0 {
  min-height: 320px;
}

.zone-panel .zone-title {
  color: var(--brick);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}

.zone-panel .zone-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.zone-panel ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.zone-panel li {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

.zone-panel li:last-child {
  border-bottom: none;
}

.indoor-section {
  background:
    radial-gradient(1200px 600px at 50% 20%, rgba(245, 238, 220, 0.8), transparent 60%),
    repeating-linear-gradient(115deg, rgba(214, 205, 186, 0.18), rgba(214, 205, 186, 0.18) 2px, transparent 2px, transparent 18px),
    #f8f5ee;
}

/* Indoor Swiper Styles */
.indoor-swiper {
  padding: 20px 0 60px;
  overflow: visible;
}

.indoor-swiper .swiper-slide {
  height: auto;
}

.indoor-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  cursor: pointer;
  height: 100%;
  min-height: 400px;
}

.indoor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2));
  opacity: 0.6;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 1;
}

.indoor-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.indoor-card:hover::after {
  opacity: 0.8;
}

.indoor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.indoor-image-clickable {
  cursor: pointer;
}

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

.indoor-label {
  position: absolute;
  right: 16px;
  top: 16px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--brick);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 8px;
  border-radius: 999px;
  z-index: 2;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.indoor-card:hover .indoor-label {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

/* Indoor Swiper Pagination */
.indoor-swiper .swiper-pagination {
  bottom: 20px !important;
}

.indoor-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(11, 20, 20, 0.5);
  transition: var(--transition-smooth);
  margin: 0 5px !important;
  opacity: 1;
}

.indoor-swiper .swiper-pagination-bullet:hover {
  background-color: rgba(11, 20, 20, 0.8);
  transform: scale(1.3);
}

.indoor-swiper .swiper-pagination-bullet-active {
  background-color: var(--gold);
  width: 24px;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(201, 164, 76, 0.5);
}

/* Indoor Swiper Navigation */
.indoor-swiper .swiper-button-prev,
.indoor-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(11, 20, 20, 0.8);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  color: #fff;
  border: 1px solid rgba(201, 164, 76, 0.2);
  top: 50%;
  margin-top: -25px;
}

.indoor-swiper .swiper-button-prev::after,
.indoor-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

.indoor-swiper .swiper-button-prev:hover,
.indoor-swiper .swiper-button-next:hover {
  background: rgba(11, 20, 20, 0.95);
  border-color: rgba(201, 164, 76, 0.4);
  transform: scale(1.1);
}

.indoor-swiper .swiper-button-prev {
  left: -25px;
}

.indoor-swiper .swiper-button-next {
  right: -25px;
}

/* Gallery Swiper Styles */
.gallery-swiper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-swiper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

/* Gallery Swiper Pagination */
.gallery-swiper .swiper-pagination {
  bottom: 20px !important;
}

.gallery-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(11, 20, 20, 0.5);
  transition: var(--transition-smooth);
  margin: 0 5px !important;
  opacity: 1;
}

.gallery-swiper .swiper-pagination-bullet:hover {
  background-color: rgba(11, 20, 20, 0.8);
  transform: scale(1.3);
}

.gallery-swiper .swiper-pagination-bullet-active {
  background-color: var(--gold);
  width: 24px;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(201, 164, 76, 0.5);
}

/* Gallery Swiper Navigation */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(11, 20, 20, 0.7);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  color: #fff;
  border: 1px solid rgba(201, 164, 76, 0.2);
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
  background: rgba(11, 20, 20, 0.9);
  border-color: rgba(201, 164, 76, 0.4);
  transform: scale(1.1);
}

.gallery-swiper .swiper-button-prev {
  left: 20px;
}

.gallery-swiper .swiper-button-next {
  right: 20px;
}

.cta-form {
  background: linear-gradient(145deg, #fff, #fafafa);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(15, 42, 36, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cta-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--brick));
}

.cta-form:hover {
  transform: translateY(-2px);
}

.cta-form .form-control,
.cta-form .form-select {
  border-radius: 12px;
  border: 1px solid rgba(15, 42, 36, 0.15);
  padding: 14px 16px;
  transition: var(--transition-smooth);
  background: #fff;
}

.cta-form .form-control:focus,
.cta-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.1);
  outline: none;
}

footer {
  background: linear-gradient(180deg, #0b1414, #050a0a);
  color: #aaa;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 76, 0.3), transparent);
}

.footer-title {
  font-family: var(--font-heading);
  color: #f3efe6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-link {
  color: #cfc7b6;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}

.footer-note {
  font-size: 0.9rem;
  color: #b7b0a2;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: var(--transition-bounce);
  animation: pulse 2s infinite;
  border: none;
  cursor: pointer;
}

.whatsapp-float i {
  font-size: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 998;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
}

.scroll-to-top i {
  font-size: 20px;
}

/* Sidebar Form Button */
.sidebar-form-btn {
  position: fixed;
  right: -65px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 997;
  background: linear-gradient(135deg, var(--brick), rgba(160, 59, 50, 0.9));
  color: #fff;
  border: none;
  border-radius: 0 0 12px 12px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(160, 59, 50, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.sidebar-form-btn:hover {
  background: linear-gradient(135deg, rgba(160, 59, 50, 0.95), var(--brick));
  transform: translateY(-50%) rotate(90deg) translateX(-4px);
}

.sidebar-form-btn i {
  font-size: 18px;
  transform: rotate(-90deg);
  display: inline-block;
}

.sidebar-form-btn span {
  display: inline-block;
}

.thankyou-hero {
  /* min-height: calc(100vh - var(--nav-height)); */
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(11, 20, 20, 0.88), rgba(15, 42, 36, 0.6)),
    url("https://images.unsplash.com/photo-1501183638710-841dd1904471?q=80&w=1800&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.thankyou-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 20, 20, 0.88), rgba(15, 42, 36, 0.6));
  z-index: 0;
}

.thankyou-hero .container {
  position: relative;
  z-index: 1;
}

.thankyou-card {
  width: 100%;
  background: linear-gradient(145deg, rgba(11, 20, 20, 0.9), rgba(15, 42, 36, 0.8));
  border: 1px solid rgba(201, 164, 76, 0.3);
  padding: 56px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  text-align: center;
  color: #fff;
}

.thankyou-card:hover {
  transform: translateY(-4px);
}

.thankyou-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.2), rgba(25, 135, 84, 0.2));
  border-radius: 50%;
  border: 3px solid rgba(201, 164, 76, 0.5);
}

.thankyou-icon-wrapper i {
  font-size: 3.5rem;
  color: var(--gold);
  animation: scaleIn 0.6s ease-out 0.3s both;
}

.thankyou-features {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 164, 76, 0.2);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(201, 164, 76, 0.1);
  transition: var(--transition-smooth);
  text-align: left;
  height: 100%;
}

.feature-item:hover {
  background: rgba(201, 164, 76, 0.1);
  border-color: rgba(201, 164, 76, 0.3);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-item strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

/* Parallax effect for hero */
.hero-swiper .swiper-slide {
  will-change: transform;
}

/* Smooth reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Premium section dividers */
.section-divider {
  position: relative;
  overflow: hidden;
}

.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 76, 0.3));
}

.section-divider::before {
  left: 0;
}

.section-divider::after {
  right: 0;
  background: linear-gradient(90deg, rgba(201, 164, 76, 0.3), transparent);
}

/* Modern Mobile Menu */
.modern-hamburger {
  border: none;
  background: transparent;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1031;
  transition: var(--transition-smooth);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition-smooth);
  transform-origin: center;
}

.modern-hamburger:hover .hamburger-line {
  background: #fff;
}

.modern-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.modern-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.modern-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 20, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1029;
}

.navbar-collapse.show ~ .mobile-menu-overlay,
.navbar-collapse.collapsing ~ .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.modern-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(11, 20, 20, 0.98), rgba(15, 42, 36, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1030;
  overflow-y: auto;
}

.modern-mobile-menu.show,
.modern-mobile-menu.collapsing {
  right: 0;
}

.modern-mobile-menu .navbar-nav {
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.modern-mobile-menu .nav-item {
  opacity: 0;
  transform: translateX(20px);
  animation: slideInRight 0.4s ease-out forwards;
}

.modern-mobile-menu.show .nav-item:nth-child(1) {
  animation-delay: 0.1s;
}

.modern-mobile-menu.show .nav-item:nth-child(2) {
  animation-delay: 0.15s;
}

.modern-mobile-menu.show .nav-item:nth-child(3) {
  animation-delay: 0.2s;
}

.modern-mobile-menu.show .nav-item:nth-child(4) {
  animation-delay: 0.25s;
}

.modern-mobile-menu.show .nav-item:nth-child(5) {
  animation-delay: 0.3s;
}

.modern-mobile-menu.show .nav-item:nth-child(6) {
  animation-delay: 0.35s;
}

.modern-mobile-menu .nav-link {
  color: #fff !important;
  padding: 16px 20px !important;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: var(--transition-smooth);
  display: block;
  position: relative;
  margin-bottom: 4px;
}

.modern-mobile-menu .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  border-radius: 0 2px 2px 0;
  transition: var(--transition-smooth);
}

.modern-mobile-menu .nav-link:hover,
.modern-mobile-menu .nav-link:focus {
  background: rgba(201, 164, 76, 0.15);
  color: var(--gold) !important;
  padding-left: 28px;
  transform: translateX(4px);
}

.modern-mobile-menu .nav-link:hover::before,
.modern-mobile-menu .nav-link:focus::before {
  height: 60%;
}

.modern-mobile-menu .btn-gold {
  margin-top: 24px;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 1rem;
  animation: slideInRight 0.4s ease-out 0.4s forwards;
  opacity: 0;
  transform: translateX(20px);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.thankyou-card p{
  color: #fff;
}
/* Desktop - Hide modern mobile menu features */
@media (min-width: 992px) {
  .modern-mobile-menu {
    position: static;
    right: auto;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    transition: none;
  }

  .modern-mobile-menu .navbar-nav {
    flex-direction: row;
    gap: 0;
  }

  .modern-mobile-menu .nav-item {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .modern-mobile-menu .nav-link {
    padding: 8px 12px !important;
    font-size: 1rem;
    border-radius: 0;
    margin-bottom: 0;
  }

  .modern-mobile-menu .nav-link::before {
    display: none;
  }

  .modern-mobile-menu .nav-link:hover {
    padding-left: 12px !important;
    transform: none;
    background: transparent;
  }

  .modern-mobile-menu .btn-gold {
    margin-top: 0;
    width: auto;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .mobile-menu-overlay {
    display: none;
  }
}
