/* ═════════════════════════════════════════════
   WunderHomes — Premium Vacation Villas
   Complete Design System
   ═════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Color Palette (Light Theme) ── */
  --bg: #ffffff;
  --bg2: #f9f8f6;
  --bg3: #f0eee9;
  --white: #1a1a1a;
  --text: #4a4a4a;
  --text-muted: #7a7a7a;
  --gold: #b38b36;
  --gold-light: #cfa858;
  --gold-dark: #8c6a25;
  --gold-glow: rgba(179, 139, 54, 0.12);
  --brown: #6b5233;
  --brown-dark: #5c4a2f;
  --green: #25D366;
  --green-dark: #1da851;
  --border: rgba(0, 0, 0, 0.08);
  --glass: rgba(0, 0, 0, 0.03);

  /* ── Typography ── */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* ── Transitions ── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

.menu-open {
  overflow: hidden;
}

/* Mobile sidebar elements — hidden on desktop, shown inside sidebar on mobile */
.mobile-sidebar-brand,
.mobile-sidebar-footer {
  display: none;
}

/* Prevent SVG in wa-pill-btn from rendering at 300px browser default */
.wa-icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}



/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1210;
  /* Must be above sidebar (.nav-links z-index:1200) so hamburger/X is always clickable */
  height: 72px;

  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* ── Hotels Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dd-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dd-caret {
  font-size: 0.7rem;
  transition: transform 0.25s var(--ease);
  display: inline-block;
}

.nav-dropdown.open .dd-caret {
  transform: rotate(180deg);
}

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  padding: 8px;
  display: none;
  opacity: 0;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-dropdown.open .nav-dd-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-menu a {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 2px;
  padding: 12px 16px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.9rem !important;
  border-radius: 5px;
  transition: background 0.2s var(--ease);
}

.nav-dd-menu a::after {
  display: none !important;
}

.nav-dd-menu a:hover {
  background: var(--bg2);
  color: var(--gold) !important;
}

.nav-dd-menu .dd-loc {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.nav-dd-menu .dd-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-heading);
}

.nav-dd-menu a:hover .dd-name {
  color: var(--gold-dark);
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-phone {
  color: var(--text) !important;
  font-weight: 600 !important;
}

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1210;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}



/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */

.wa-float {
  position: fixed;
  bottom: 90px;
  right: 26px;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.wa-float:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

@keyframes waFloat {

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

  50% {
    transform: translateY(-6px);
  }
}

.wa-float {
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
  animation: none;
}


/* ═══════════════════════════════════════
   STICKY BOTTOM BAR (MOBILE)
   ═══════════════════════════════════════ */

.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.s-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

.s-price span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.s-btn {
  background: var(--gold);
  color: var(--bg);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.s-btn:hover {
  background: var(--gold-light);
}


/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
  position: relative;
  display: block;
  min-height: auto;
  height: auto;
  overflow: hidden;
}

.hero-bg {
  display: block;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  /* Removed 72px — body { padding-top: 112px } already handles fixed bar offsets */
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 90%;
  margin: -60px auto 0 auto;
  background: var(--bg);
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid var(--border);
}

.hero-badge {
  display: inline-block;
  background: var(--gold-glow);
  border: 1px solid var(--gold-glow);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 .accent {
  color: var(--gold);
  display: block;
  font-size: 0.75em;
  margin-top: 8px;
  font-style: italic;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-start;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.hero-loc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Hero Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.anim {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
}

.d1 {
  animation-delay: 0.1s;
}

.d2 {
  animation-delay: 0.2s;
}

.d3 {
  animation-delay: 0.3s;
}

.d4 {
  animation-delay: 0.4s;
}


/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 15px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
  border: none;
  cursor: pointer;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-glow);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg);
  padding: 15px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--gold-glow);
}


/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */

.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 24px;
}

.trust-bar .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-bar .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.trust-bar .item strong {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
}


/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section .desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin-bottom: 40px;
}


/* ═══════════════════════════════════════
   WHY US GRID
   ═══════════════════════════════════════ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.why-card .num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, var(--gold-glow), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

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


/* ═══════════════════════════════════════
   PROPERTY CARDS (Home Page)
   ═══════════════════════════════════════ */

.prop-cards-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.prop-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Location Group Header ── */
.loc-group {
  margin-bottom: 48px;
}

.loc-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.loc-group-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.loc-group-icon {
  font-size: 1.5rem;
}

.loc-group-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

.loc-group-badge {
  margin-left: auto;
  background: var(--gold-glow);
  border: 1px solid rgba(179, 139, 54, 0.25);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ── Property Card V2 (Amber Moon Style) ── */
.prop-card-v2 {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.prop-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

.pcv2-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.pcv2-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
  display: block;
}

.prop-card-v2:hover .pcv2-img-wrap img {
  transform: scale(1.06);
}

.pcv2-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(179, 139, 54, 0.2);
}

.pcv2-body {
  padding: 22px 22px 24px;
}

.pcv2-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #c8882a;
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.pcv2-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.84rem;
  color: #888;
  margin-bottom: 14px;
  font-weight: 400;
}

.pcv2-loc .pin {
  font-size: 0.9rem;
}

.pcv2-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #c8882a;
  margin-bottom: 14px;
  line-height: 1;
}

.pcv2-slash {
  color: #c8882a;
  font-weight: 400;
}

.pcv2-night {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: #999;
}

.pcv2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pcv2-tag {
  display: inline-block;
  padding: 5px 12px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  font-size: 0.72rem;
  font-weight: 600;
  color: #666;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, color 0.2s;
}

.prop-card-v2:hover .pcv2-tag {
  border-color: rgba(179, 139, 54, 0.3);
  color: var(--gold-dark);
}

/* ── Nav Dropdown Groups ── */
.dd-group {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.dd-group:last-of-type {
  border-bottom: none;
}

.dd-group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s;
  user-select: none;
}

.dd-group-header:hover {
  background: var(--bg2);
}

.dd-group-loc {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  flex: 1;
}

.dd-group-count {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dd-group-caret {
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: transform 0.25s;
  display: inline-block;
}

.dd-group.open .dd-group-caret {
  transform: rotate(180deg);
}

.dd-group-body {
  display: none;
  padding: 0 8px 6px;
}

.dd-group.open .dd-group-body {
  display: block;
}

.dd-group-body a {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px;
  padding: 9px 12px !important;
  border-radius: 5px;
  transition: background 0.2s;
}

.dd-group-body a:hover {
  background: var(--bg2);
}

.dd-group-body a::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Singles (Saputara, Pavagadh, Udaipur) */
.dd-singles {
  padding: 4px 0 2px;
}

.dd-singles a {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px;
  padding: 10px 16px !important;
  border-radius: 5px;
  transition: background 0.2s;
}

.dd-singles a:hover {
  background: var(--bg2);
}

.dd-single-loc {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
}

/* Keep original card styles for property detail pages */
.prop-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.prop-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.prop-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}

.prop-card:hover img {
  transform: scale(1.04);
}

.prop-card .body {
  padding: 28px;
}

.prop-card h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.loc-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pc-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.pc-price span {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--glass);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}

.btn-card:hover {
  border-bottom-color: var(--gold);
  padding-left: 4px;
}



/* ═══════════════════════════════════════
   GALLERY (Property Pages)
   ═══════════════════════════════════════ */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 220px;
  grid-auto-rows: 220px;
  gap: 12px;
}

.gi {
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  position: relative;
}

.gi:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gi:hover img {
  transform: scale(1.06);
}


/* ═══════════════════════════════════════
   HIGHLIGHTS (Property Pages)
   ═══════════════════════════════════════ */

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.h-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.h-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.h-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.h-card:hover img {
  transform: scale(1.05);
}

.h-card .info {
  padding: 24px;
}

.h-card h4 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.h-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   AMENITIES
   ═══════════════════════════════════════ */

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
}

.amenity-item:hover {
  border-color: var(--gold-dark);
  background: var(--bg3);
}

.amenity-item .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   PRICING CARD
   ═══════════════════════════════════════ */

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--gold-dark);
  padding: 44px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.pricing-card h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 28px;
  text-align: center;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}

.price-row:last-of-type {
  border: none;
}

.price-row .label {
  color: var(--text-muted);
}

.price-row .val {
  font-weight: 600;
  color: var(--white);
}

.included {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.included h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.included li {
  padding: 5px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.included li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════ */

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.dist-list {
  display: grid;
  gap: 10px;
}

.dist-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  font-size: 0.92rem;
}

.dist-item .place {
  color: var(--text);
}

.dist-item .dist {
  color: var(--gold);
  font-weight: 600;
}

.map-box {
  border: 1px solid var(--gold-dark);
  overflow: hidden;
  min-height: 400px;
  background: var(--bg3);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}


/* ═══════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════ */

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.review-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.review-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card .text {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.75;
}

.review-card .author {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-card .from {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 4px;
}


/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-q {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  font-family: var(--font-heading);
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  font-family: var(--font-body);
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding-top: 16px;
}


/* ═══════════════════════════════════════
   CROSS-SELL / SISTER PROPERTY
   ═══════════════════════════════════════ */

.cross-sell {
  background: var(--bg2);
  border: 1px solid var(--gold-dark);
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.cross-sell img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */

.final-cta {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(to bottom, var(--bg), var(--bg2));
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  position: relative;
}

.final-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 50px 24px;
  text-align: center;
}

footer p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

footer a {
  color: var(--gold);
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 20px 0;
}

.footer-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: none;
}


/* ═══════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  /* At tablet, reset highlights lone-card from desktop 3-col centering */
  .highlights .h-card:first-child:nth-last-child(4) ~ .h-card:last-child {
    grid-column: auto;
  }

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

  .prop-cards-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Tablet only (641px–1024px): 3 cards in 2-col grid → lone last card centered */
@media (min-width: 641px) and (max-width: 1024px) {
  .prop-cards-3 .prop-card-v2:first-child:nth-last-child(3) ~ .prop-card-v2:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {

  .prop-cards,
  .prop-cards-3 {
    grid-template-columns: 1fr !important;
  }

  .pcv2-img-wrap {
    height: 200px;
  }

  .loc-group-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px;
    padding-top: 120px;
    /* 40px urgency banner + 72px nav + 8px buffer so content clears the fixed bars */
    z-index: 1200;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-links.show {
    transform: translateX(0);
  }

  /* Dimmed Overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1190;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  /* Sidebar Branding */
  .mobile-sidebar-brand {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 1px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .mobile-sidebar-footer {
    display: block;
  }

  .nav-links a {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 12px 0;
    color: var(--text);
    border-bottom: none;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .nav-links>a:last-of-type {
    border-bottom: none;
  }

  /* Remove original CTA styling in sidebar */
  .nav-links .nav-cta {
    display: none !important;
  }

  /* New WhatsApp Pill Button */
  .mobile-sidebar-footer {
    margin-top: auto;
    width: 100%;
    padding-top: 30px;
  }

  .wa-pill-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--green);
    /* Fixed: was var(--gold) — WhatsApp button should be green */
    color: #fff !important;
    padding: 14px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.2);
    border: none !important;
  }

  .wa-pill-btn .wa-icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .wa-pill-btn .arrow {
    font-size: 1.2rem;
  }



  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-links a::after {
    display: none;
  }

  /* Mobile dropdown — flatten into list */
  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-dd-btn {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 1.05rem;
  }

  .nav-dd-menu {
    position: static;
    transform: none !important;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 10px 15px;
    background: transparent;
    margin-top: 0;
    display: none;
  }


  .nav-dropdown.open .nav-dd-menu {
    display: block;
  }

  .nav-dd-menu a {
    padding: 10px 20px !important;
    border-bottom: 1px dashed var(--border) !important;
    font-size: 1.05rem;
    background: rgba(0, 0, 0, 0.02);
  }


  .nav-dd-menu a:last-child {
    border-bottom: none;
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
    padding: 14px 20px !important;
  }

  .nav-phone {
    text-align: left;
  }

  .mobile-menu-btn {
    display: flex;
  }


  /* Hero */
  .hero-bg {
    height: 50vh;
    min-height: 300px;
  }

  .hero-content {
    width: 95%;
    padding: 28px 20px;
    margin-top: -40px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-features {
    gap: 6px 14px;
    font-size: 0.85rem;
  }

  /* Grids */
  .why-grid,
  .highlights,
  .prop-cards,
  .prop-cards-3,
  .loc-grid {
    grid-template-columns: 1fr !important;
  }

  /* Mobile: stack property cards horizontally with image on left */
  .prop-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .prop-card img {
    width: 130px;
    height: auto;
    min-height: 100%;
    flex-shrink: 0;
  }

  .prop-card .body {
    padding: 18px 18px 18px 16px;
    flex: 1;
    min-width: 0;
  }

  .prop-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .prop-card .loc-text {
    font-size: 0.78rem;
    margin-bottom: 8px;
  }

  .prop-card .tags {
    gap: 4px;
    margin-bottom: 8px;
  }

  .prop-card .tag {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .prop-card .body p {
    font-size: 0.78rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .prop-card .btn-card {
    margin-top: 10px;
    font-size: 0.75rem;
    padding: 8px 0;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 180px 180px;
  }

  .gi:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  /* Section spacing */
  .section {
    padding: 70px 20px;
  }

  /* Trust bar */
  .trust-bar .inner {
    justify-content: center;
    gap: 12px;
  }

  .trust-bar .item {
    font-size: 0.8rem;
  }

  /* Cross-sell */
  .cross-sell img {
    width: 100%;
    height: 200px;
  }

  /* Booking embed */
  .booking-embed iframe {
    min-height: 600px;
  }

  .booking-section {
    padding: 50px 16px;
  }

  /* Urgency banner */
  .urgency-banner {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  /* Sticky bar */
  .sticky-bottom {
    display: flex;
  }

  .wa-float {
    bottom: 90px;
    right: 18px;
    width: 56px;
    height: 56px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }

  body {
    padding-bottom: 75px;
  }

  /* Pricing card */
  .pricing-card {
    padding: 30px 22px;
  }

  /* Map */
  .map-box {
    min-height: 300px;
  }

  .map-box iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-ctas,
  .ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-green,
  .btn-outline,
  .btn-gold {
    width: 100%;
    justify-content: center;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .gi:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .prop-card img {
    width: 120px;
    height: auto;
    min-height: 100%;
  }

  .section {
    padding: 60px 16px;
  }

  .final-cta {
    padding: 70px 16px;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}


/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════ */

.why-card,
.amenity-item,
.review-card,
.h-card,
.prop-card,
.dist-item {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.why-card.visible,
.amenity-item.visible,
.review-card.visible,
.h-card.visible,
.prop-card.visible,
.dist-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Center lone card in 3-col highlights grid (4 items → 4th is alone in col 1 of row 2) */
.highlights .h-card:first-child:nth-last-child(4) ~ .h-card:last-child {
  grid-column: 2 / 3;
}

/* Gallery with exactly 4 images: make 4th image full-width bottom strip */
.gi:first-child:nth-last-child(4) ~ .gi:last-child {
  grid-column: 1 / -1;
}


/* ═══════════════════════════════════════\n   LIGHTBOX — Handled by GLightbox CDN\n   ═══════════════════════════════════════ */


/* ═══════════════════════════════════════
   GALLERY "VIEW ALL" OVERLAY
   ═══════════════════════════════════════ */

.gi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.gi-overlay:hover {
  background: rgba(0, 0, 0, 0.7);
}

.gi-overlay span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.gi-overlay:hover span {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}


/* ═══════════════════════════════════════
   URGENCY BANNER
   ═══════════════════════════════════════ */

.urgency-banner {
  background: linear-gradient(90deg, #dc2626, #ef4444);
  color: #fff;
  text-align: center;
  padding: 0 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

body {
  padding-top: 112px;
}



/* ═══════════════════════════════════════
   VIDEO / VIRTUAL TOUR SECTION
   ═══════════════════════════════════════ */

.video-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 90px;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  background: var(--bg2);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ═══════════════════════════════════════
   BOOKING WIDGET SECTION
   ═══════════════════════════════════════ */

.booking-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}

.booking-section .inner {
  max-width: 800px;
  margin: 0 auto;
}

.booking-embed {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.booking-embed iframe {
  width: 100%;
  min-height: 500px;
  border: none;
}

/* ═══════════════════════════════════════
   PRICING CARD
   ═══════════════════════════════════════ */

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--gold-dark);
  text-align: center;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
}

.price-row .label {
  font-weight: 500;
  color: var(--text-muted);
}

.price-row .val {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}

.pricing-card .included {
  margin-top: 24px;
}

.pricing-card .included h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.pricing-card .included ul {
  list-style: none;
  padding: 0;
}

.pricing-card .included li {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card .included li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}