/* ==========================================================================
   THE VERTEX — Landing Page Styles
   Fonts: Cormorant Garamond (display) + Poppins (body/UI)
   ========================================================================== */

:root {
  --vx-black: #111111;
  --vx-darker: #0d0e13;
  --vx-charcoal: #202020;
  --vx-charcoal-2: #1c1d24;
  --vx-border: rgba(212, 175, 96, 0.18);
  --vx-border-soft: rgba(255, 255, 255, 0.08);
  --vx-gold: #d6a050;
  --vx-gold-light: #e8bc72;
  --vx-gold-dark: #b97b28;
  --vx-text: #f8f5f0;
  --vx-text-muted: #bdb8af;
  --vx-text-dim: #7d7b83;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Poppins", sans-serif;
  --dark-blue: #06162e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark-blue);
  color: var(--vx-text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--vx-gold);
  color: #10100f;
}

.text-gold {
  color: var(--vx-gold) !important;
}

.fw-600 {
  font-weight: 600;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--vx-black);
}

::-webkit-scrollbar-thumb {
  background: var(--vx-gold-dark);
  border-radius: 10px;
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */

.eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--vx-gold);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--vx-text);
  letter-spacing: 0.01em;
}

.section-heading-serif {
  font-style: normal;
}

.section-text {
  color: var(--vx-text-muted);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  max-width: 46rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-vertex-gold {
  background: linear-gradient(135deg,
      var(--vx-gold-light),
      var(--vx-gold-dark));
  color: #1a1305;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(214, 160, 80, 0.25);
  box-shadow: 0 0 30px rgba(214, 160, 80, 0.15);
}

.btn-vertex-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(212, 162, 76, 0.7);
  color: #1a1305;
}

.btn-vertex-outline {
  background: transparent;
  color: var(--vx-gold);
  border: 1px solid var(--vx-gold);
  /* border: 1px solid var(--vx-border-soft); */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.btn-vertex-outline:hover {
  border-color: var(--vx-gold);
  color: var(--vx-gold-light);
  background: rgba(212, 162, 76, 0.06);
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.vertex-navbar {
  /* background: rgba(10, 10, 13, 0.75);
  backdrop-filter: blur(14px); */
  /* -webkit-backdrop-filter: blur(14px); */
  border-bottom: 1px solid var(--vx-border-soft);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  transition: background 0.3s ease;
}

.vertex-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--vx-gold);
  border: 1px solid var(--vx-border);
  border-radius: 6px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--vx-text);
}

.brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--vx-text-dim);
  font-weight: 500;
}

.navbar-nav .nav-link {
  color: var(--vx-text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem;
  position: relative;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--vx-gold-light);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.1rem;
  height: 2px;
  background: var(--vx-gold);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 162, 76, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 6rem;
  background: linear-gradient(247deg, rgb(8 8 10 / 0%) 0%, rgb(8 8 10 / 30%) 55%, rgb(8 8 10) 100%), url(../images/banner-1.webp?v=1.2);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(
    ellipse at 30% 40%,
    rgba(0, 0, 0, 0) 0%,
    rgba(5, 5, 7, 0.65) 100%
  ); */
}


.eyebrow-text[data-aos] {
  letter-spacing: 0.3em;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 0.95;
  margin: 0.25rem 0 1rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--vx-text);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-by {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--vx-text-muted);
}

.scroll-down-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--vx-text-muted);
  z-index: 2;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1px solid var(--vx-border-soft);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--vx-gold);
  animation: scrollDot 1.6s infinite;
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  70% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ==========================================================================
   Sections — shared
   ========================================================================== */

.section-padding {
  padding: 6rem 0;
}

.bg-vertex-black {
  background: var(--dark-blue);
}

.bg-vertex-darker {
  background: var(--vx-darker);
}

/* ==========================================================================
   About / Feature Cards
   ========================================================================== */

.feature-card {
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border-soft);
  border-radius: 8px;
  padding: 1.6rem 1.1rem;
  display: flex;
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.feature-card:hover {
  border-color: var(--vx-border);
  transform: translateY(-4px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  /* background: rgba(212, 162, 76, 0.1); */
  color: var(--vx-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--vx-text);
  margin-bottom: 0.5rem;
  text-align: center;
}

.feature-text {
  font-size: 0.82rem;
  color: var(--vx-text-dim);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   Notify / Get Notified Card
   ========================================================================== */

.notify-card {
  background: var(--vx-charcoal-2);
  border: 1px solid var(--vx-border);
  border-radius: 10px;
  padding: 2.2rem 1.9rem;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

.notify-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--vx-text);
}

.input-icon-group {
  position: relative;
}

.input-icon-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vx-text-dim);
  font-size: 0.95rem;
}

.vertex-input {
  background: var(--vx-black);
  border: 1px solid var(--vx-border-soft);
  color: var(--vx-text);
  border-radius: 6px;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  font-size: 0.88rem;
  font-family: var(--font-body);
}

.vertex-input::placeholder {
  color: var(--vx-text-dim);
}

.vertex-input:focus {
  background: var(--vx-black);
  border-color: var(--vx-gold);
  color: var(--vx-text);
  box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.15);
}

.notify-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--vx-text-muted);
}

.notify-secure {
  text-align: center;
  font-size: 0.72rem;
  color: var(--vx-text-dim);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-carousel {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--vx-border-soft);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 0.7rem 0.7rem;
  /* background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%); */
  color: var(--vx-text);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.vertex-carousel-control {
  width: 42px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border);
  border-radius: 50%;
  color: var(--vx-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.vertex-carousel-control.carousel-control-prev {
  left: -10px;
}

.vertex-carousel-control.carousel-control-next {
  right: -10px;
}

.vertex-carousel-control i {
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .vertex-carousel-control {
    display: none;
  }
}

/* ==========================================================================
   Location
   ========================================================================== */

.map-wrapper {
  position: relative;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--vx-border-soft);
  filter: grayscale(0.15) contrast(1.05);
}

.map-wrapper iframe {
  display: block;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}

.map-pin-tag {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(13, 14, 19, 0.92);
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(6px);
}

.map-pin-tag strong {
  display: block;
  font-size: 0.85rem;
  color: var(--vx-text);
}

.map-pin-tag span {
  font-size: 0.72rem;
  color: var(--vx-text-dim);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.location-item {
  display: flex;
  gap: 1rem;
  background: var(--vx-charcoal);
  border: 1px solid var(--vx-border-soft);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  transition: border-color 0.25s ease;
}

.location-item:hover {
  border-color: var(--vx-border);
}

.location-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  /* background: rgba(212, 162, 76, 0.1); */
  color: var(--vx-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.location-item h4 {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--vx-gold);
  margin-bottom: 0.2rem;
}

.location-item p {
  font-size: 0.8rem;
  color: var(--vx-text-dim);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.vertex-footer {
  background: #060608;
  border-top: 1px solid var(--vx-border-soft);
  padding: 4.5rem 0 1.5rem;
}

.footer-top {
  margin-bottom: 2rem;
}

.footer-about {
  font-size: 0.85rem;
  color: var(--vx-text-dim);
  line-height: 1.7;
  max-width: 22rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--vx-gold);
  color: var(--vx-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  border-color: var(--vx-gold);
  color: var(--vx-gold);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vx-gold);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--vx-text-dim);
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--vx-gold-light);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-contact li {
  font-size: 0.82rem;
  color: var(--vx-text-dim);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact i {
  color: var(--vx-gold);
}

.dev-vinayak-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.dv-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--vx-border);
  color: var(--vx-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dev-vinayak-badge strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--vx-text);
}

.dev-vinayak-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--vx-text-dim);
}

.dv-tagline {
  font-size: 0.75rem;
  color: var(--vx-text-dim);
  font-style: italic;
}

.footer-divider {
  border-color: var(--vx-border-soft);
  opacity: 1;
  margin: 1.5rem 0;
}

.footer-bottom {
  font-size: 0.78rem;
  color: var(--vx-text-dim);
}

.footer-bottom a {
  color: var(--vx-text-dim);
}

.footer-bottom a:hover {
  color: var(--vx-gold-light);
}

/* ==========================================================================
   WhatsApp Float
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.6);
  z-index: 999;
  transition: transform 0.25s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

/* .whatsapp-float:hover {
  transform: scale(1.1);
  background: #20ba5a;
} */

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

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

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */

@media (max-width: 991.98px) {
  .section-padding {
    padding: 4rem 0;
  }

  .vertex-navbar .navbar-collapse {
    background: var(--vx-charcoal-2);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--vx-border-soft);
  }
}

@media (max-width: 575.98px) {
  .hero-heading {
    font-size: 3.4rem;
  }

  .notify-card {
    padding: 1.6rem 1.3rem;
  }
}

.vertexGallery {
  padding-bottom: 60px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.gallery-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  z-index: 1;
}

.gallery-caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #fff;
  font-weight: 600;
  z-index: 2;
}

.vertexGallery .swiper-button-next,
.vertexGallery .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #06162e;
  border-radius: 50%;
  color: #fff;
}

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

.vertexGallery .swiper-pagination-bullet-active {
  background: #d3983f;
}

@media (max-width: 991px) {
  .gallery-img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .gallery-img {
    height: 100%;
  }
}

.notify-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #121212;
}

/* Top Gold Glow */
.notify-card::before {
  content: "";
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 120px;
  background: radial-gradient(ellipse at center,
      rgba(255, 196, 74, 0.95) 0%,
      rgba(255, 180, 50, 0.55) 22%,
      rgba(255, 180, 50, 0.18) 48%,
      rgba(255, 180, 50, 0.06) 65%,
      transparent 80%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}

/* Thin Bright Shine */
.notify-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 210, 120, 0.95),
      rgba(255, 255, 255, 0.95),
      rgba(255, 210, 120, 0.95),
      transparent);
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 205, 100, 0.8),
    0 0 22px rgba(255, 180, 50, 0.55), 0 0 40px rgba(255, 180, 50, 0.35);
  z-index: 2;
}

.property-configuration {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 22px;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 0;
}

.logo {
  height: 44px;
  filter: invert(1) brightness(1);
}

.logo-footer {
  height: 44px;
}

@media (min-width: 992px) {
  .property-configuration {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
    align-items: stretch;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 0;
  }
}

@media (min-width: 1400px) {
  .property-configuration {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(163px, 1fr));
    gap: 22px;
    align-items: stretch;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 0;
  }
}

@media (max-width: 767px) {
  .locationsection {
    display: none;
  }

  .herobtn {
    display: flex;
    flex-direction: column;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 100% 100%,
        rgba(0, 0, 0, 0) 0%,
        rgba(5, 5, 7, 0.65) 100%);
  }

  .eyebrow-text,
  .hero-heading,
  .hero-tagline,
  .hero-by {
    text-align: center;
  }

  .hero-heading span {
    display: unset !important;
    text-align: center;
  }

  .hero-section {
    position: relative;
    min-height: 80vh;
    padding-top: 5rem;
    background: linear-gradient(247deg, rgb(8 8 10 / 0%) 0%, rgb(8 8 10 / 30%) 55%, rgb(8 8 10) 100%), url(../images/banner-1mb.webp);
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.location-icon .bi {
  font-size: 50px;
}

.swiper-pagination {
  position: unset !important;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #ffffff !important;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

.map-pin-tag .bi {
  font-size: 50px;
}

.map-wrapper {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(214, 160, 80, 0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  /* filter:grayscale(100%) brightness(.35) contrast(1.15); */
}

/* Pin */
.map-pin {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
}

.map-pin i {
  font-size: 46px;
  color: #d6a050;
  text-shadow: 0 0 20px rgba(214, 160, 80, 0.5);
}

/* Card */
.map-location-card {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(15px, -30%);
  background: #181818;
  border: 1px solid rgba(214, 160, 80, 0.3);
  border-radius: 10px;
  padding: 12px 18px;
  z-index: 2;
  min-width: 180px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.map-location-card::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 22px;
  width: 16px;
  height: 16px;
  background: #181818;
  border-left: 1px solid rgba(214, 160, 80, 0.3);
  border-bottom: 1px solid rgba(214, 160, 80, 0.3);
  transform: rotate(45deg);
}

.map-location-card h5 {
  margin: 0;
  color: #d6a050;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.map-location-card p {
  margin: 4px 0 0;
  color: #fff;
  font-size: 13px;
}

/* --- ENHANCED GLASSMORPHISM CARD --- */
.glass-card {
  width: 100%;
  /* max-width: 520px; */
  padding: 40px;

  /* Lighter opacity lets more background color/glow pass through */
  background: rgba(15, 20, 30, 0.45);
  border-radius: 28px;

  /* Multi-layered shadows: one deep blur shadow, one tight dark occlusion shadow */
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.4),
    0 20px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  /* Inner glass rim reflection */

  /* The core engine of the glass effect */
  backdrop-filter: blur(25px) saturate(120%);
  -webkit-backdrop-filter: blur(25px) saturate(120%);

  /* Sharp semi-translucent outer border mimicking real glass edge */
  border: 1px solid rgba(255, 255, 255, 0.09);

  position: relative;
  box-sizing: border-box;
  text-align: center;
}

/* Top ambient gold glow reflection */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 89, 0.5), transparent);
}



/* Trigger Button for Testing */
.open-modal-btn {
  padding: 16px 32px;
  background: linear-gradient(90deg, #d29e54 0%, #b8833c 100%);
  border: none;
  border-radius: 8px;
  color: #0b0f17;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.open-modal-btn:hover {
  transform: scale(1.03);
}

/* --- MODAL OVERLAY BACKGROUND --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 18, 0.7);
  /* Darkens the landing page behind it */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
  box-sizing: border-box;
}

/* Active State for Overlay */
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Active Animation State for Card */
.modal-overlay.active .glass-card {
  transform: scale(1) translateY(0);
}

/* Close Button (×) */
.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #d4a359;
}

@media (max-width: 767px) {
  .modal-overlay {
    align-items: unset;
    padding-top: 150px;
  }
}

 /* --- FLOATING TOAST CONTAINER --- */
        .toast-container {
            position: fixed;
            top: 30px;
            right: 30px;
            z-index: 2000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* --- BASE GLASS TOAST STRUCTURE --- */
        .glass-toast {
            display: none; /* Controlled via script dynamically */
            align-items: center;
            gap: 16px;
            min-width: 340px;
            max-width: 440px;
            padding: 18px 24px;
            background: rgba(10, 17, 30, 0.8);
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            
            transform: translateX(120%);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        }

        .glass-toast.show {
            display: flex;
            transform: translateX(0);
            opacity: 1;
        }

        .toast-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        .toast-content {
            text-align: left;
        }

        .toast-title {
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            margin: 0 0 3px 0;
        }

        .toast-desc {
            color: #9aa5b5;
            font-size: 13px;
            margin: 0;
            line-height: 1.4;
        }

        /* --- TYPE-SPECIFIC ACCENT MODIFIERS --- */
        
        /* Success (Premium Gold Profile) */
        .glass-toast.toast-success {
            border: 1px solid rgba(212, 163, 89, 0.25);
        }
        .glass-toast.toast-success .toast-icon {
            background: rgba(212, 163, 89, 0.12);
            border: 1px solid #d4a359;
            color: #d4a359;
        }

        /* Failed (Crimson Error Profile) */
        .glass-toast.toast-failed {
            border: 1px solid rgba(239, 68, 68, 0.25);
        }
        .glass-toast.toast-failed .toast-icon {
            background: rgba(239, 68, 68, 0.12);
            border: 1px solid #ef4444;
            color: #ef4444;
        }