/* ============================================================
   Wenzell Stays — Main Stylesheet
   Corporate Housing & Furnished Rentals, Dayton, OH
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --primary:       #1a3a5c;
  --primary-light: #254e7a;
  --primary-dark:  #12293f;
  --accent:        #c9952a;
  --accent-light:  #e8b84b;
  --accent-dark:   #a87820;
  --bg:            #f5f7fa;
  --white:         #ffffff;
  --text-dark:     #1a202c;
  --text-body:     #4a5568;
  --text-light:    #718096;
  --border:        #e2e8f0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 14px rgba(0,0,0,0.10);
  --shadow-lg:     0 12px 36px rgba(0,0,0,0.14);
  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --max-w:         1200px;
  --nav-h:         70px;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text-body); background: var(--bg); line-height: 1.65; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: var(--font); }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { color: var(--text-dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem,   5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section      { padding: 5rem 0; }
.section-alt  { background: var(--white); }
.section-dark { background: var(--primary); color: #fff; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  {
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-dark .section-header h2,
.section-dark .section-header p { color: rgba(255,255,255,0.9); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,149,42,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* ---- NAVIGATION ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(18, 41, 63, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-name {
  font-size: 1.25rem; font-weight: 800;
  color: #fff; letter-spacing: -0.02em;
}
.nav-logo-name span { color: var(--accent-light); }
.nav-logo-sub {
  font-size: 0.6rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.1em;
}
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem; font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  transition: all 0.18s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-links .nav-cta {
  background: var(--accent);
  color: #fff;
  margin-left: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
}
.nav-links .nav-cta:hover { background: var(--accent-light); }
/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/the-land-of-cleve/dining-room.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,41,63,0.96) 0%,
    rgba(26,58,92,0.88) 55%,
    rgba(26,58,92,0.70) 100%
  );
}
/* subtle grid pattern */
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,149,42,0.18);
  border: 1px solid rgba(201,149,42,0.4);
  color: var(--accent-light);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--accent-light); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat-num {
  display: block;
  font-size: 1.75rem; font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-lbl {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
}
/* Hero card (right column) */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.hero-card-img {
  height: 240px;
  overflow: hidden;
}
.hero-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-card:hover .hero-card-img img { transform: scale(1.04); }
.hero-card-body { padding: 1.5rem; }
.hero-card-label {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 0.4rem;
}
.hero-card-title { color: #fff; font-size: 1.15rem; margin-bottom: 0.75rem; }
.hero-card-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hero-card-meta-item {
  display: flex; align-items: center; gap: 0.35rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-body);
}
.trust-icon { font-size: 1.1rem; }
.trust-divider {
  width: 1px; height: 28px;
  background: var(--border);
}

/* ---- FEATURES / WHY US ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,58,92,0.15);
}
.feature-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(26,58,92,0.25);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ---- PROPERTY CARDS ---- */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 2rem;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
/* Card image */
.property-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--border);
}
.property-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.property-card:hover .property-card-img img { transform: scale(1.06); }
.property-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.property-badge-available { background: #38a169; }
.property-badge-coming    { background: var(--text-light); }
/* Image placeholder for properties without photos yet */
.property-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #dde4ed 0%, #c8d4e3 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  color: #8fa3be;
}
.property-img-placeholder-icon { font-size: 2.5rem; }
.property-img-placeholder span { font-size: 0.8rem; font-weight: 500; }
/* Card body */
.property-card-body {
  padding: 1.5rem;
  flex: 1; display: flex; flex-direction: column;
}
.property-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.property-meta {
  display: flex; gap: 0.85rem; flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.property-meta-item {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.8rem; color: var(--text-light); font-weight: 500;
}
.meta-icon { font-size: 0.9rem; }
.property-desc {
  font-size: 0.87rem; color: var(--text-light);
  line-height: 1.65; flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.property-card-footer .btn { font-size: 0.85rem; padding: 0.55rem 1.2rem; }
.property-tag {
  display: inline-block;
  background: rgba(26,58,92,0.08);
  color: var(--primary);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

/* ---- WHO WE SERVE ---- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.serve-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.serve-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}
.serve-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.serve-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.serve-card p  { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* ---- PROCESS STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}
.step-card { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--accent);
  color: #fff;
  font-size: 1.3rem; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(201,149,42,0.35);
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  padding: 5.5rem 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p  {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 580px; margin: 0 auto 2.5rem;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   PROPERTY DETAIL PAGE
   ============================================================ */

/* Page hero (non-homepage) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
}
.page-hero-inner {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 0.7rem; }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.8rem); }
.page-hero-sub { color: rgba(255,255,255,0.7); font-size: 1rem; }
.page-hero-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 0.5rem;
}
.page-hero-meta-item {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem; font-weight: 500;
}
.page-hero-meta-icon { font-size: 1rem; }

/* ---- PHOTO GALLERY ---- */
.photo-gallery {
  display: grid;
  gap: 0.6rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
/* 2-column layout: main left, 2 right */
.gallery-layout-a {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 200px;
}
.gallery-layout-a .g-main {
  grid-column: 1; grid-row: 1 / 3;
}
/* 3-column layout: main left, 4 right in 2x2 */
.gallery-layout-b {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 190px;
}
.gallery-layout-b .g-main {
  grid-column: 1; grid-row: 1 / 3;
}
/* Full grid: 3 col, 3 row */
.gallery-layout-c {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 180px 180px;
}
.gallery-layout-c .g-main {
  grid-column: 1; grid-row: 1 / 3;
}
.gallery-item {
  overflow: hidden;
  background: var(--border);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-more {
  position: absolute; inset: 0;
  background: rgba(18,41,63,0.65);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 700;
  backdrop-filter: blur(2px);
}

/* ---- PROPERTY DETAIL LAYOUT ---- */
.property-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.property-detail-main {}
.detail-section { margin-bottom: 2.5rem; }
.detail-section h2 {
  font-size: 1.3rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.25rem;
}
.detail-section p { color: var(--text-body); line-height: 1.75; }

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 0.65rem;
}
.amenity-item {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.87rem; color: var(--text-body);
}
.amenity-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Floor plan */
.floor-plan-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.floor-plan-img img {
  width: 100%;
}

/* Booking card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.booking-card-header { margin-bottom: 1.5rem; text-align: center; }
.booking-card-header h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.booking-card-header p  { font-size: 0.87rem; color: var(--text-light); margin: 0; }

.booking-highlights {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.booking-hl {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.87rem;
}
.booking-hl-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.booking-hl-title { font-weight: 600; color: var(--text-dark); display: block; }
.booking-hl-sub   { color: var(--text-light); font-size: 0.82rem; }

.btn-book-airbnb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--accent);
  color: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-book-airbnb:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,149,42,0.4);
}
.booking-note {
  text-align: center;
  font-size: 0.77rem; color: var(--text-light);
  margin-top: 1rem; line-height: 1.5;
}
.booking-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}
.booking-contact-link {
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--primary);
  padding: 0.65rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.booking-contact-link:hover {
  border-color: var(--primary);
  background: rgba(26,58,92,0.04);
}

/* ============================================================
   PROPERTIES LISTING PAGE
   ============================================================ */
.properties-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  text-align: center;
}
.properties-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.properties-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.filter-inner {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.filter-label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.filter-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip {
  padding: 0.32rem 0.85rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.8rem; font-weight: 500;
  cursor: pointer; transition: all 0.18s;
  color: var(--text-body); background: transparent;
  line-height: 1.4;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { border-color: var(--primary); background: var(--primary); color: #fff; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
}
.contact-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.contact-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-header { margin-bottom: 2rem; }
.contact-info-header h2 { margin-bottom: 0.75rem; }
.contact-info-header p  { color: var(--text-light); }
.contact-detail-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(26,58,92,0.2);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-detail-text a,
.contact-detail-text span {
  color: var(--text-dark);
  font-weight: 500; font-size: 0.95rem;
}
.contact-detail-text a:hover { color: var(--primary); }

.contact-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(26,58,92,0.06);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem; color: var(--text-body);
}

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { margin-bottom: 0.4rem; }
.contact-form-card > p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; padding: 0.9rem;
  background: var(--primary);
  color: #fff;
  border: none; border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Map */
.map-section { padding: 0 0 5rem; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 420px;
  background: var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
  background: linear-gradient(135deg, #e8eef5 0%, #dde4ed 100%);
}
.map-placeholder-icon { font-size: 3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0d1f33;
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand-name {
  font-size: 1.3rem; font-weight: 800;
  color: #fff; margin-bottom: 0.2rem;
}
.footer-brand-name span { color: var(--accent-light); }
.footer-tagline {
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer-about {
  font-size: 0.87rem; line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.87rem; color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none; z-index: 900;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
  font-size: 1rem;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-accent  { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-light   { color: var(--text-light); }
.mt-auto { margin-top: auto; }

/* Highlight / callout box */
.callout {
  background: rgba(26,58,92,0.05);
  border: 1px solid rgba(26,58,92,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  font-size: 0.9rem; color: var(--text-body);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner              { grid-template-columns: 1fr; }
  .hero-card               { display: none; }
  .property-detail-wrap    { grid-template-columns: 1fr; }
  .booking-card            { position: static; }
  .footer-grid             { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-layout          { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-links {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(12,28,46,0.98);
    flex-direction: column; align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open    { display: flex; }
  .nav-links a       { padding: 0.75rem 1rem; font-size: 0.95rem; }
  .nav-links .nav-cta { text-align: center; margin-left: 0; margin-top: 0.5rem; padding: 0.75rem; }
  .nav-toggle        { display: flex; }

  /* Gallery stack on mobile */
  .gallery-layout-a,
  .gallery-layout-b,
  .gallery-layout-c {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-layout-a .g-main,
  .gallery-layout-b .g-main,
  .gallery-layout-c .g-main { grid-column: auto; grid-row: auto; }
  .gallery-item { height: 220px; }

  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
  .trust-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .properties-grid { grid-template-columns: 1fr; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .features-grid   { grid-template-columns: 1fr 1fr; }
  .serve-grid      { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 1.5rem; }
  .steps-grid      { grid-template-columns: 1fr; }
  .cta-actions     { flex-direction: column; align-items: center; }
}
