/* ============================================
   PrimeProps — Main Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
  --primary:      #2D6B4F;   /* Forest — deep accent, dark backgrounds */
  --primary-dark: #1C1C1A;   /* Charcoal — navbar, hero dark end */
  --primary-light:#4CAF82;   /* Emerald — highlight variant */
  --accent:       #4CAF82;   /* Emerald — CTAs, section labels */
  --accent-dark:  #3a9a6e;   /* Emerald hover */
  --charcoal:     #1C1C1A;
  --graphite:     #3D3D3A;
  --mist:         #EAF6F0;
  --linen:        #F7F7F5;
  --text-dark:    #1C1C1A;
  --text-mid:     #3D3D3A;
  --text-light:   #6b7280;
  --bg:           #F7F7F5;   /* Linen */
  --white:        #ffffff;
  --border:       #e2e8f0;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.13);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,107,79,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #1C1C1A 0%, #2D6B4F 65%, #3a8a63 100%);
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  overflow: visible;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  width: 100%;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 760px;
}
.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 44px;
}
.hero-widget-wrap {
  width: 100%;
  max-width: 820px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 50;
}
.hero-widget-wrap h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: left;
}
.hero-scroll {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations {
  padding: 100px 0;
  background: var(--bg);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p {
  color: var(--text-mid);
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 1rem;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.destination-card:hover .destination-img {
  transform: scale(1.05);
}
.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,26,0.85) 0%, rgba(28,28,26,0.1) 55%, transparent 100%);
}
.destination-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: var(--white);
}
.destination-tag {
  display: inline-block;
  background: rgba(76,175,130,0.9);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.destination-info h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.destination-info p {
  font-size: 0.85rem;
  opacity: 0.8;
}
.destination-info .btn {
  margin-top: 14px;
  padding: 10px 22px;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.destination-info .btn:hover {
  background: var(--white);
  color: var(--primary);
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
}
.why-image {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.why-badge {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-badge-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}
.why-badge-text strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.why-badge-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.why-content h2 { margin-bottom: 20px; }
.why-content > p {
  color: var(--text-mid);
  margin-bottom: 36px;
  font-size: 1rem;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(76,175,130,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-text span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   COUPON SIGNUP SECTION
   ============================================ */
.coupon-section {
  padding: 100px 0;
  background: linear-gradient(150deg, #0f1710 0%, #1a3d2b 50%, #0f1710 100%);
  position: relative;
  overflow: hidden;
}
.coupon-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.coupon-glow-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(45,107,79,0.35) 0%, transparent 70%);
}
.coupon-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -50px;
  background: radial-gradient(circle, rgba(76,175,130,0.2) 0%, transparent 70%);
}

/* GRID */
.coupon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT SIDE */
.coupon-left {
  color: #fff;
}
.coupon-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(76,175,130,0.12);
  border: 1px solid rgba(76,175,130,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.coupon-big-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.coupon-big-number span {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--accent);
}
.coupon-off-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  margin-bottom: 24px;
}
.coupon-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 32px;
}
.coupon-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.coupon-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.cp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(76,175,130,0.18);
  border: 1px solid rgba(76,175,130,0.4);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}
.coupon-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-dots {
  display: flex;
  gap: -4px;
}
.proof-dots span {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  margin-left: -8px;
}
.proof-dots span:first-child { margin-left: 0; }
.coupon-proof p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.coupon-proof strong { color: #fff; }

/* RIGHT: CARD */
.coupon-right { display: flex; justify-content: center; }
.coupon-card {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
}
.coupon-card-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.coupon-card-sub {
  font-size: 0.87rem;
  color: var(--text-mid);
  margin-bottom: 28px;
}

/* FORM FIELDS */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.cf-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.cf-field input {
  padding: 13px 16px;
  border: 1.5px solid #dde3dd;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.cf-field input::placeholder { color: #aab5aa; }
.cf-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,107,79,0.1);
  background: #fff;
}

/* SMS CONSENT */
.cf-consent {
  margin-bottom: 20px;
}
.cf-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.cf-checkbox-input {
  display: none;
}
.cf-checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #c5d0c5;
  border-radius: 5px;
  background: #fff;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
}
.cf-checkbox-input:checked + .cf-checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.cf-checkbox-input:checked + .cf-checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  position: absolute;
  top: 0px;
  left: 4px;
}
.cf-consent-text {
  font-size: 0.77rem;
  color: #7a8c7a;
  line-height: 1.6;
}
.cf-consent-error {
  font-size: 0.77rem;
  color: #dc2626;
  margin: 6px 0 0 30px;
  font-weight: 500;
}

/* SUBMIT BUTTON */
.cf-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: 15px 24px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  text-decoration: none;
  border: none;
}
.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,107,79,0.35);
}
.cf-submit:active { transform: translateY(0); }
.cf-spinner {
  display: flex;
  gap: 4px;
  align-items: center;
}
.cf-spinner-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  animation: cfDotBounce 1.2s ease-in-out infinite;
}
.cf-spinner-dot:nth-child(2) { animation-delay: 0.2s; }
.cf-spinner-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes cfDotBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}
.cf-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: #a0afa0;
  margin: 0;
}
.cf-privacy a { color: var(--primary); text-decoration: none; }
.cf-privacy a:hover { text-decoration: underline; }

/* REVEAL STATE */
.coupon-reveal {
  text-align: center;
  padding: 16px 0;
  animation: revealFadeIn 0.5s ease forwards;
}
@keyframes revealFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal-confetti {
  font-size: 3rem;
  margin-bottom: 12px;
  animation: confettiBounce 0.6s ease;
}
@keyframes confettiBounce {
  0%   { transform: scale(0.5) rotate(-15deg); opacity: 0; }
  60%  { transform: scale(1.2) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}
.reveal-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.reveal-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.reveal-sub strong { color: var(--primary); }
.reveal-code-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--mist);
  border: 2px dashed var(--primary-light);
  border-radius: 12px;
  padding: 14px 16px 14px 20px;
  margin-bottom: 14px;
}
.reveal-code {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
}
.reveal-copy {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.reveal-copy:hover { background: var(--accent); }
.reveal-copy.copied { background: #16a34a; }
.reveal-expiry {
  font-size: 0.75rem;
  color: #a0afa0;
  margin-bottom: 24px;
}
.reveal-cta {
  display: block;
  margin: 0 auto;
  max-width: 280px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .coupon-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .coupon-left { text-align: center; }
  .coupon-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .coupon-perks li { justify-content: center; }
  .coupon-proof { justify-content: center; }
  .coupon-big-number { font-size: clamp(4rem, 16vw, 6rem); }
  .coupon-right { justify-content: center; }
  .coupon-card { max-width: 500px; }
}

/* ============================================
   OWNERS CTA BANNER
   ============================================ */
.owners-cta {
  padding: 80px 0;
  background: var(--bg);
}
.owners-cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-md);
}
.owners-cta-image {
  position: relative;
}
.owners-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.owners-cta-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45,107,79,0.3), transparent);
}
.owners-cta-content {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.owners-cta-content h2 { margin-bottom: 14px; }
.owners-cta-content p {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: 1rem;
}
.owners-cta-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.perk::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  max-width: 260px;
  color: rgba(255,255,255,0.6);
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item .icon {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary) 100%);
  text-align: center;
  color: var(--white);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================
   PROPERTIES PAGE
   ============================================ */
.properties-section {
  padding: 72px 0 100px;
}
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.property-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.property-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-img-wrap img {
  transform: scale(1.06);
}
.property-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}
.property-badge.available { color: var(--accent); }
.property-body {
  padding: 20px 22px 22px;
}
.property-location {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.property-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.property-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.property-meta span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.property-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}
.property-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
}
.property-book-btn {
  background: var(--primary);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.property-book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ============================================
   PROPERTY DETAIL (calendar widget)
   ============================================ */
.property-detail {
  padding: 72px 0 100px;
}
.property-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.booking-widget-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: sticky;
  top: 92px;
}
.booking-widget-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.booking-widget-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 22px;
}

/* ============================================
   OWNERS PAGE
   ============================================ */
.owners-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.owners-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,175,130,0.1) 0%, transparent 70%);
}
.owners-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.owners-hero-content h1 { color: var(--white); margin-bottom: 18px; }
.owners-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.owners-hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
}
.owners-stat {
  text-align: center;
  padding: 20px 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  flex: 1;
}
.owners-stat strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.owners-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.owners-hero-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.how-it-works {
  padding: 100px 0;
  background: var(--bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 8px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.owners-benefits {
  padding: 100px 0;
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.benefit-card {
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 56px; height: 56px;
  background: rgba(76,175,130,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.owners-form-section {
  padding: 100px 0;
  background: var(--bg);
}
.owners-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.owners-form-wrap .section-header {
  margin-bottom: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,107,79,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card:first-child { grid-row: auto; }
  .why-us .container { grid-template-columns: 1fr; gap: 48px; }
  .why-image-wrap { max-width: 480px; margin: 0 auto; }
  .why-badge { left: 0; }
  .owners-cta-card { grid-template-columns: 1fr; }
  .owners-cta-image img { min-height: 240px; }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .owners-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .owners-hero-image { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .property-detail-grid { grid-template-columns: 1fr; }
  .booking-widget-card { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a { color: var(--text-dark) !important; }
  .destinations-grid { grid-template-columns: 1fr; }
  .owners-cta-content { padding: 36px 28px; }
  .properties-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .coupon-card { padding: 32px 24px; }
  .owners-form-wrap { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .stats-bar .container { gap: 32px; }
  .owners-hero-stats { flex-direction: column; gap: 12px; }
  .hero-widget-wrap { padding: 20px 16px; }
}
