/* ═══════════════════════════════════════════
   TRAVELERS INCORPORATED — Clean CSS v3
   Simple, working, matching Wix aesthetic
   ═══════════════════════════════════════════ */

/* ── CSS Variables (for backward compat) ── */
:root {
  --ocean-deep: #0c3b6f;
  --ocean-mid: #1a73c7;
  --ocean-light: #5ba3e6;
  --ocean-pale: #e8f4fd;
  --sand-gold: #0891b2;
  --sand-gold-bright: #22d3ee;
  --sand-light: #fdf6e3;
  --tropical-teal: #1aab9c;
  --tropical-light: #e0faf6;
  --coral: #e8795a;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-50: #f5f6f8;
  --gray-100: #eceef2;
  --gray-200: #dde1e8;
  --gray-300: #c2c8d2;
  --gray-400: #9aa0af;
  --gray-500: #6e7585;
  --gray-600: #505664;
  --gray-700: #363b47;
  --gray-800: #242831;
  --gray-900: #12141a;
  --success: #28a060;
  --danger: #dc3545;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem; --space-lg: 1.5rem;
  --space-xl: 2rem; --space-2xl: 3rem; --space-3xl: 4rem; --space-4xl: 6rem;
  --container-max: 1200px;
  --border-radius: 10px; --border-radius-lg: 18px; --border-radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05); --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --transition-fast: 150ms ease; --transition-base: 300ms ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #363b47;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1a73c7; text-decoration: none; }
a:hover { color: #0c3b6f; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: #242831; line-height: 1.3; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ── Section ── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #0891b2; font-weight: 600; margin-bottom: 8px; }
.section-header h2 { font-size: 2.4rem; margin-bottom: 12px; font-weight: 700; }
.section-header p { color: #6e7585; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-2 { margin-top: 32px; }

/* ═══════════════════════════════════════════
   HEADER & NAV
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #242831; }
.nav-logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 600; }
.nav-logo-sub { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: #9aa0af; }

.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links > li > a, .nav-dropdown-toggle {
  padding: 8px 16px; font-size: 0.9rem; font-weight: 500; color: #505664;
  text-decoration: none; border-radius: 6px; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover, .nav-dropdown-toggle:hover { color: #242831; background: #f5f6f8; }
.nav-links > li > a.active { color: #242831; font-weight: 600; }
.nav-dropdown-toggle { background: none; border: none; cursor: pointer; font-family: inherit; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; right: 0;
  background: #fff; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 8px 0; min-width: 180px; z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.9rem; color: #505664; text-decoration: none;
}
.nav-dropdown-menu a:hover { background: #f5f6f8; color: #242831; }

/* Login Button */
.nav-login {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; font-size: 0.85rem; font-weight: 500; color: #505664;
  background: none; border: none; cursor: pointer; text-decoration: none;
  border-radius: 6px; transition: all 0.2s; font-family: inherit;
}
.nav-login:hover { color: #242831; background: #f5f6f8; }
.nav-login svg { width: 18px; height: 18px; }

/* Lang Switch */
.lang-switch { display: flex; gap: 4px; margin-left: 12px; }
.lang-switch a {
  padding: 4px 10px; font-size: 0.8rem; border-radius: 4px; color: #9aa0af; font-weight: 500;
}
.lang-switch a.active { background: #242831; color: #fff; }
.lang-switch a:hover:not(.active) { color: #242831; }

/* Ready to Go Section */
.ready-section {
  background: linear-gradient(135deg, #1a365d 0%, #0c3b6f 50%, #0891b2 100%);
  color: #fff; text-align: center; padding: 72px 24px;
}
.ready-section h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 2.8rem; font-weight: 500; font-style: italic; margin-bottom: 20px; color: #fff;
}
.ready-section p { font-size: 1.05rem; max-width: 620px; margin: 0 auto; line-height: 1.8; color: rgba(255,255,255,0.85); }

/* Insider Tips / Split Layout Sections */
.insider-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 420px;
}
.insider-section-image { overflow: hidden; min-height: 300px; position: relative; }
.insider-section-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.insider-section:hover .insider-section-image img { transform: scale(1.03); }
.insider-section-content {
  display: flex; flex-direction: column; justify-content: center; padding: 56px 48px;
}
.insider-section-content h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 2.5rem; font-weight: 500; margin-bottom: 18px; color: #242831;
}
.insider-section-content p { font-size: 1.05rem; color: #6e7585; line-height: 1.8; margin-bottom: 28px; }
@media (max-width: 768px) {
  .insider-section { grid-template-columns: 1fr; }
  .insider-section-content { padding: 36px 24px; }
  .insider-section-image { min-height: 250px; }
}

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #363b47; margin: 5px 0; transition: 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 16px; gap: 4px;
    border-bottom: 1px solid #eee; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a, .nav-dropdown-toggle { padding: 12px 16px; width: 100%; }
  .nav-dropdown-menu { position: static; box-shadow: none; padding-left: 16px; }
  .lang-switch { margin-left: 0; padding: 12px 16px; }
}

/* ═══════════════════════════════════════════
   HERO — Full-bleed, matching Wix
   ═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 60vh; display: flex; align-items: center;
  justify-content: center; text-align: center; color: #fff;
  margin-top: 64px; overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  z-index: 0;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 40px 24px; max-width: 900px; }
.hero-trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(255,255,255,0.15); padding: 8px 20px; border-radius: 50px;
  margin-bottom: 24px; color: rgba(255,255,255,0.9);
}
.hero-title { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; font-size: 4rem; font-weight: 500; margin-bottom: 20px; line-height: 1.15; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.3); letter-spacing: 1px; }
.hero-title .gold-accent { color: #fff; }
.hero-subtitle { font-size: 1.15rem; line-height: 1.6; margin-bottom: 32px; color: rgba(255,255,255,0.9); }

/* CTA Buttons */
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s; cursor: pointer; border: none;
}
.btn-gold { background: #0891b2; color: #fff; }
.btn-gold:hover { background: #0e7490; color: #fff; }
.btn-outline-white { border: 2px solid #fff; color: #242831; background: #fff; font-weight: 700; letter-spacing: 0.5px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.9); color: #242831; }
.btn-secondary { background: #f5f6f8; color: #363b47; }
.btn-secondary:hover { background: #eceef2; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* Hero Search */
.hero-search {
  margin-top: 40px; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border-radius: 12px; padding: 20px; border: 1px solid rgba(255,255,255,0.2);
}
.hero-search-inner { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.hero-search-field { flex: 1; min-width: 140px; text-align: left; }
.hero-search-field label { display: block; font-size: 0.75rem; font-weight: 600; margin-bottom: 4px; color: rgba(255,255,255,0.8); }
.hero-search-field select {
  width: 100%; padding: 10px 12px; border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.9); color: #363b47; border-radius: 6px; font-size: 0.9rem;
}
.btn-search {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; background: #f97316; color: #fff; border: none;
  border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 0.9rem;
}
.btn-search:hover { background: #ea580c; }

.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* Hero entrance animations */
.hero-content > * {
  opacity: 0; transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.3s; }
.hero-content > *:nth-child(2) { animation-delay: 0.6s; }
.hero-content > *:nth-child(3) { animation-delay: 0.9s; }

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

@media (max-width: 768px) {
  .hero { min-height: 50vh; }
  .hero-title { font-size: 2.4rem; }
  .hero-search-inner { flex-direction: column; }
}

/* ═══════════════════════════════════════════
   TRUST BADGES ROW
   ═══════════════════════════════════════════ */
.trust-badges-row { background: #fff; border-bottom: 1px solid #eceef2; padding: 20px 0; }
.trust-badges-row .container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-badge-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: #505664; }
.trust-badge-item svg { color: #0891b2; }

/* ═══════════════════════════════════════════
   GRID SYSTEM — SIMPLE, WORKING
   ═══════════════════════════════════════════ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   PROPERTY CARDS — Clean, functional
   ═══════════════════════════════════════════ */
.property-card {
  display: block; background: #fff; border-radius: 12px;
  overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.property-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); color: inherit; }

.property-card-image {
  position: relative; overflow: hidden; aspect-ratio: 4/3; background: #eceef2;
}
.property-card-image img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; background: linear-gradient(135deg, #1a73c7, #5ba3e6);
  color: #fff; font-weight: 700; font-size: 0.9rem; text-align: center; padding: 20px;
}

.property-card-badge-colored {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; color: #fff;
}
.badge-popular { background: #1a73c7; }
.badge-great-deal { background: #28a060; }
.badge-new { background: #0891b2; }

.property-card-photo-count {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 4px; background: rgba(0,0,0,0.6);
  color: #fff; font-size: 0.75rem;
}

.property-card-favorite {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: 0.2s;
}
.property-card-favorite:hover { background: #fff; }
.property-card-favorite svg { color: #9aa0af; }
.property-card-favorite.active svg { fill: #dc3545; stroke: #dc3545; color: #dc3545; }

.property-card-date-overlay {
  position: absolute; bottom: 12px; right: 12px;
  padding: 4px 10px; border-radius: 4px; background: rgba(0,0,0,0.6);
  color: #fff; font-size: 0.7rem;
}

.property-card-body { padding: 16px; }
.property-card-brand { font-size: 0.7rem; color: #0891b2; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 4px; }
.property-card-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; font-family: 'Inter', sans-serif; color: #242831; }
.property-card-location { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; color: #6e7585; margin-bottom: 10px; }
.property-card-details { display: flex; gap: 12px; font-size: 0.8rem; color: #9aa0af; margin-bottom: 12px; flex-wrap: wrap; }
.property-card-detail { display: flex; align-items: center; gap: 2px; }

.property-card-weekly-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.property-card-weekly-price .rate { font-size: 1.3rem; font-weight: 700; color: #242831; }
.property-card-weekly-price .per-week { font-size: 0.8rem; color: #9aa0af; }

.property-card-savings-badge {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  background: #e0faf6; color: #1aab9c; font-size: 0.75rem; font-weight: 600; margin-bottom: 12px;
}

.btn-view-details {
  display: block; text-align: center; padding: 10px; border-radius: 6px;
  background: #f5f6f8; color: #363b47; font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; transition: 0.2s;
}
.property-card:hover .btn-view-details { background: #242831; color: #fff; }

/* ═══════════════════════════════════════════
   DESTINATION CARDS
   ═══════════════════════════════════════════ */
.destination-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.destination-card {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 3/4; display: flex; align-items: flex-end;
  text-decoration: none; color: #fff;
}
.destination-card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.destination-card:hover .destination-card-bg { transform: scale(1.05); }
.destination-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.destination-card-content { position: relative; z-index: 1; padding: 20px; width: 100%; }
.destination-card-name { font-size: 1.3rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.destination-card-desc { font-size: 0.8rem; opacity: 0.85; margin-top: 4px; }

@media (max-width: 992px) { .destination-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .destination-cards { grid-template-columns: 1fr; } .destination-card { aspect-ratio: 16/9; } }

/* ═══════════════════════════════════════════
   TRUST STATS BANNER
   ═══════════════════════════════════════════ */
.trust-banner {
  background: linear-gradient(135deg, #0c3b6f, #1a73c7);
  color: #fff;
}
.trust-stats { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-stat .number { font-size: 2.5rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.trust-stat .label { font-size: 0.85rem; opacity: 0.8; margin-top: 4px; }

/* ═══════════════════════════════════════════
   HOW IT WORKS STEPS
   ═══════════════════════════════════════════ */
.steps-grid { display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; max-width: 280px; text-align: center; padding: 24px; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%; background: #0891b2; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; margin: 0 auto 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: #6e7585; }
.step-divider { display: flex; align-items: center; padding-top: 40px; }
@media (max-width: 768px) { .step-divider { display: none; } }

/* ═══════════════════════════════════════════
   PAGE HEADER (inner pages)
   ═══════════════════════════════════════════ */
.page-header {
  position: relative; padding: 120px 0 60px; text-align: center;
  background-size: cover; background-position: center; color: #fff;
  margin-top: 64px;
}
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%); }
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 8px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.4); font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; font-weight: 500; }
.page-header .subtitle { font-size: 1.1rem; opacity: 0.9; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.about-story { max-width: 700px; margin: 0 auto; }
.about-story p { margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; color: #505664; }

.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.about-value { text-align: center; padding: 32px 24px; }
.about-value-icon { margin-bottom: 16px; }
.about-value h3 { font-size: 1.1rem; margin-bottom: 8px; }
.about-value p { font-size: 0.9rem; color: #6e7585; line-height: 1.6; }
@media (max-width: 768px) { .about-values { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-section { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eceef2; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: #242831; text-align: left; font-family: inherit;
}
.faq-icon { transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; }
.faq-item.active .faq-answer { display: block; }
.faq-answer p { font-size: 0.95rem; color: #6e7585; line-height: 1.7; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff; border-radius: 12px; padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.testimonial-stars { display: flex; gap: 2px; }
.testimonial-stars svg { color: #f59e0b; }
.testimonial-rating { font-size: 0.85rem; font-weight: 700; color: #0891b2; }
.testimonial-quote { font-size: 0.95rem; line-height: 1.7; color: #505664; font-style: italic; margin-bottom: 20px; }
.testimonial-footer { border-top: 1px solid #eceef2; padding-top: 16px; }
.testimonial-author { font-weight: 600; color: #242831; font-size: 0.9rem; }
.testimonial-resort { font-size: 0.8rem; color: #9aa0af; margin-top: 2px; }

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

/* ═══════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  display: block; background: #fff; border-radius: 12px; overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); color: inherit; }
.blog-card-image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-category { font-size: 0.8rem; color: #0891b2; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; font-size: 0.85rem; }
.blog-card-meta .date { color: #9aa0af; }
.blog-card-meta .read-more { color: #0891b2; font-weight: 600; }
.blog-card-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; color: #242831; }
.blog-card-excerpt { font-size: 0.9rem; color: #6e7585; line-height: 1.6; }

.blog-article { max-width: 720px; margin: 0 auto; padding: 40px 24px; }
.blog-article-meta { font-size: 0.85rem; color: #9aa0af; margin-bottom: 32px; }
.blog-article-content h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.blog-article-content p { margin-bottom: 16px; font-size: 1.05rem; line-height: 1.8; color: #505664; }

@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  position: relative; text-align: center; color: #fff;
  padding: 100px 0; overflow: hidden;
}
.cta-bg-image {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.cta-section::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%); z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: 2.2rem; margin-bottom: 16px; color: #fff; }
.cta-section p { font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.9; color: #fff; }
.cta-section .cta-actions { justify-content: center; }

/* ═══════════════════════════════════════════
   LISTINGS PAGE — Filter Bar
   ═══════════════════════════════════════════ */
.filter-bar {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end;
  margin-bottom: 32px; padding: 24px; background: #fff;
  border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.filter-bar label { display: block; font-weight: 600; font-size: 0.8rem; color: #505664; margin-bottom: 6px; }
.filter-bar select {
  width: 100%; padding: 10px 12px; border: 1px solid #dde1e8;
  border-radius: 6px; font-size: 0.9rem; color: #363b47; background: #fff;
}
.filter-group { flex: 1; min-width: 150px; }

.view-toggle { display: flex; gap: 4px; }
.view-toggle button {
  padding: 8px; border: 1px solid #dde1e8; background: #fff; cursor: pointer;
  border-radius: 6px; color: #9aa0af; transition: 0.2s;
}
.view-toggle button.active { background: #242831; border-color: #242831; color: #fff; }

#listingsGrid.list-view { grid-template-columns: 1fr; gap: 8px; }
#listingsGrid.list-view .property-card {
  display: flex; flex-direction: row; border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
#listingsGrid.list-view .property-card-image {
  width: 180px; min-width: 180px; aspect-ratio: auto; height: 120px;
}
#listingsGrid.list-view .property-card-body {
  flex: 1; padding: 12px 16px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
#listingsGrid.list-view .property-card-title { font-size: 0.9rem; margin-bottom: 0; }
#listingsGrid.list-view .property-card-location { margin-bottom: 0; }
#listingsGrid.list-view .property-card-details { margin-bottom: 0; }
#listingsGrid.list-view .property-card-weekly-price { margin-bottom: 0; }
#listingsGrid.list-view .property-card-savings-badge { margin-bottom: 0; }
#listingsGrid.list-view .btn-view-details { display: none; }
#listingsGrid.list-view .property-card-brand { display: none; }
@media (max-width: 768px) {
  #listingsGrid.list-view .property-card { flex-direction: column; }
  #listingsGrid.list-view .property-card-image { width: 100%; min-width: 0; height: 200px; }
  #listingsGrid.list-view .property-card-body { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { margin-bottom: 16px; font-size: 1.2rem; }
.contact-info p { margin-bottom: 12px; color: #6e7585; }
.contact-info a { color: #1a73c7; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: #505664; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #dde1e8;
  border-radius: 8px; font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #1a73c7; box-shadow: 0 0 0 3px rgba(26,115,199,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-primary { background: #0891b2; color: #fff; padding: 14px 32px; border: none; border-radius: 8px; font-weight: 600; font-size: 1rem; cursor: pointer; }
.btn-primary:hover { background: #0e7490; }
.success-message { text-align: center; padding: 40px; }
.success-message h3 { color: #28a060; margin-bottom: 8px; }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer { background: #242831; color: #9aa0af; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin-top: 12px; font-size: 0.85rem; line-height: 1.6; }
.footer-brand .nav-logo-text { color: #fff; }
.footer-brand .nav-logo-sub { color: #6e7585; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col a { color: #9aa0af; font-size: 0.85rem; display: block; padding: 4px 0; }
.footer-col a:hover { color: #fff; }

.social-icons { display: flex; gap: 8px; margin-top: 12px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #9aa0af; transition: 0.2s;
}
.social-icon:hover { background: rgba(255,255,255,0.15); color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════
   LISTING DETAIL PAGE
   ═══════════════════════════════════════════ */
.listing-detail-header { background: #fff; border-bottom: 1px solid #eceef2; }
.listing-detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 768px) { .listing-detail-grid { grid-template-columns: 1fr; } }
.listing-detail-left { }
.listing-detail-right { }

.listing-gallery { margin-bottom: 32px; border-radius: 12px; overflow: hidden; position: relative; }
.listing-gallery-main { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.listing-gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; }
.listing-gallery-thumb { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: 0.6; transition: 0.2s; }
.listing-gallery-thumb.active, .listing-gallery-thumb:hover { opacity: 1; }
.listing-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.listing-gallery-nav.prev { left: 12px; }
.listing-gallery-nav.next { right: 12px; }

.listing-section { margin-bottom: 32px; }
.listing-section h2 { font-size: 1.3rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #eceef2; }
.listing-highlights { display: flex; flex-direction: column; gap: 8px; }
.listing-highlight { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #505664; }
.unit-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.unit-detail { text-align: center; padding: 16px; background: #f8f9fb; border-radius: 8px; }
.unit-detail .value { font-size: 1.1rem; font-weight: 700; color: #242831; }
.unit-detail .label { font-size: 0.75rem; color: #9aa0af; margin-top: 2px; }
.listing-amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.listing-amenity { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: #505664; }

.booking-card { position: sticky; top: 80px; background: #fff; border: 1px solid #eceef2; border-radius: 12px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.booking-card-price .rate { font-size: 2rem; font-weight: 700; color: #242831; }
.booking-card-price .per-night { color: #9aa0af; }
.booking-card-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.booking-card-date { padding: 12px; background: #f8f9fb; border-radius: 8px; text-align: center; }
.booking-card-date span { font-size: 0.75rem; color: #9aa0af; display: block; }
.booking-card-date strong { font-size: 0.85rem; }
.booking-card-savings { background: #e0faf6; border-radius: 8px; padding: 12px; margin-bottom: 16px; text-align: center; }
.booking-card-savings .amount { font-weight: 700; color: #1aab9c; }
.booking-card-savings .desc { font-size: 0.8rem; color: #6e7585; }

.listing-info { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.listing-info h1 { font-size: 1.8rem; margin-bottom: 8px; }
.listing-sidebar { padding: 24px; background: #f8f9fb; border-radius: 12px; }
.listing-sidebar .price { font-size: 2rem; font-weight: 700; color: #242831; }
.listing-sidebar .per-week { font-size: 0.9rem; color: #9aa0af; }
@media (max-width: 768px) { .listing-info { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   ADMIN ACCESS LINK
   ═══════════════════════════════════════════ */
.admin-access { text-align: center; padding: 12px; }
.admin-access a { font-size: 0.75rem; color: #c2c8d2; }
.admin-access a:hover { color: #9aa0af; }

/* ═══════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════ */
.error-page { text-align: center; padding: 120px 24px; margin-top: 64px; }
.error-page h1 { font-size: 4rem; color: #0891b2; }
.error-page h2 { font-size: 1.5rem; margin-bottom: 16px; }
.error-page p { color: #6e7585; margin-bottom: 32px; }

/* ═══════════════════════════════════════════
   TEXT UTILITIES
   ═══════════════════════════════════════════ */
.text-muted { color: #9aa0af; }
.text-sm { font-size: 0.85rem; }

/* ═══════════════════════════════════════════
   MOTION & POLISH
   ═══════════════════════════════════════════ */

/* Destination card hover lift */
.destination-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.destination-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

/* Section header animated underline */
.section-header h2 { position: relative; display: inline-block; }
.section-header h2::after {
  content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px; background: #0891b2; border-radius: 2px;
  transition: width 0.5s ease 0.3s;
}
.reveal.revealed .section-header h2::after,
.section-header.reveal.revealed h2::after { width: 50px; }

/* Button hover lift */
.btn { transition: all 0.25s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }

/* Smooth image loading */
.property-card-image img, .destination-card-bg, .insider-section-image img {
  transition: transform 0.5s ease, opacity 0.4s ease;
}

/* Blog card image zoom on hover */
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-image { overflow: hidden; }

/* Gold button upgrade */
.btn-gold {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  color: #fff; font-weight: 600; letter-spacing: 0.3px;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #0e7490, #0c5f73);
  color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(8,145,178,0.3);
}

/* Blog article content enhancements */
.blog-article-content h3 { font-size: 1.2rem; margin: 24px 0 8px; color: #363b47; }
.blog-article-content ul, .blog-article-content ol { padding-left: 1.5rem; margin-bottom: 16px; }
.blog-article-content li { margin-bottom: 8px; font-size: 1.02rem; line-height: 1.7; color: #505664; }
.blog-article-content strong { color: #242831; }
.blog-article-content em { color: #505664; }

/* Hero subtitle styling */
.hero-subtitle {
  font-size: 1.15rem; line-height: 1.6; margin-bottom: 32px;
  color: rgba(255,255,255,0.9); max-width: 600px; margin-left: auto; margin-right: auto;
}

/* Trust banner stats counter */
.trust-banner .trust-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
}

/* Smooth page transitions */
.blog-card, .property-card, .destination-card, .testimonial-card {
  will-change: transform;
}

/* Better blog grid for 8 posts */
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-bg-image { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
