/* ================================================
   KASLIN HOMES — Black + Gold Premium Theme
   ================================================ */

/* === VARIABLES === */
:root {
  --primary: #9C7A2A;
  --primary-dark: #7C611F;
  --primary-darker: #5F4A18;
  --primary-light: #EDE3C2;
  --accent: #9C7A2A;
  --accent-dark: #7C611F;
  --accent-light: #EDE3C2;
  --dark: #0A0A0A;
  --dark-2: #1A1A1A;
  --dark-3: #2E2E2E;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --surface: #ffffff;
  --ink: #0C0B09;
  --ink-2: #17140F;

  --font-display: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Fixed header heights */
  --top-header-h: 64px;
  --nav-h: 64px;
  --total-header: 128px;

  --container: 1200px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.08);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.09), 0 4px 6px -2px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.2);
  --shadow-gold: 0 8px 30px rgba(156,122,42,.35);

  --transition: all 0.2s ease;
  --transition-med: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  --gradient-hero: none;
  --gradient-primary: linear-gradient(135deg, #7C611F, #B39440);
  --gradient-accent: linear-gradient(135deg, #7C611F, #A6812A);
  --gradient-card: linear-gradient(180deg, transparent 60%, rgba(10,10,10,.55) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(124,97,31,.72), rgba(156,122,42,.72));
}

/* === DARK MODE === */
[data-theme="dark"] {
  --dark: #F2F2F2;
  --dark-2: #D9D9D9;
  --dark-3: #B8B8B8;
  --gray: #9a9a9a;
  --gray-light: #7a7a7a;
  --border: #2B2620;
  --bg: #0C0B09;
  --surface: #181510;
  --primary-light: #2A2210;
  --accent-light: #2A2210;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.45);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.5), 0 4px 6px -2px rgba(0,0,0,.3);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.55), 0 10px 10px -5px rgba(0,0,0,.3);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.6);
}
body { transition: background-color .3s ease, color .3s ease; }

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; color: var(--dark); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--dark-3); line-height: 1.7; }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-badge {
  display: inline-block;
  background: var(--primary-light); color: var(--primary-darker);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: var(--radius-full); margin-bottom: .75rem;
  font-family: var(--font-display);
}
.section-title { margin-bottom: 1rem; }
.section-title span { color: var(--primary); }
.section-desc { color: var(--gray); font-size: 1.0625rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: var(--radius);
  font-size: .9375rem; font-weight: 700; transition: var(--transition-med);
  white-space: nowrap; font-family: var(--font-display);
}
.btn-primary { background: var(--gradient-primary); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(156,122,42,.4); }
.btn-accent { background: var(--gradient-accent); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(156,122,42,.45); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--ink); transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.55); color: white; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: white; }
.btn-white { background: var(--surface); color: var(--primary); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-dark { background: var(--ink); color: var(--accent); }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.125rem; font-size: .8125rem; }
.btn-block { width: 100%; justify-content: center; }

/* === BADGES === */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: var(--radius-full); font-size: .75rem; font-weight: 700; font-family: var(--font-display); }
.badge-primary { background: var(--primary-light); color: var(--primary-darker); }
.badge-accent { background: var(--accent-light); color: var(--accent-dark); }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-new { background: #fce7f3; color: #9d174d; }

/* ================================================
   TOP HEADER BAR
   ================================================ */
.top-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001; height: var(--top-header-h);
  background: var(--ink);
  border-bottom: 2px solid var(--primary);
}
.top-header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: var(--top-header-h);
  gap: 1rem;
}
.top-header-left {
  display: flex; align-items: center;
}
.top-header-left a {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.top-header-left a:hover { color: var(--primary); }
.top-header-left i { color: var(--primary); font-size: .8rem; }
.top-header-center {
  display: flex; align-items: center; justify-content: center;
}
.top-header-center a { display: flex; align-items: center; }
.top-header-center img { height: 58px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.top-header-right {
  display: flex; align-items: center; justify-content: flex-end;
}
.top-header-right a {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.top-header-right a:hover { color: var(--primary); }
.top-header-right i { color: var(--primary); font-size: .8rem; }

/* ================================================
   NAVBAR (no logo, left-aligned links)
   ================================================ */
.navbar {
  position: fixed; top: var(--top-header-h); left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0; transition: var(--transition-med);
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center;
  width: 100%;
}

/* Links flush left — no logo in navbar */
.nav-links { display: flex; align-items: center; gap: .125rem; }
.nav-link {
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600;
  color: var(--dark-3);
  transition: var(--transition);
  font-family: var(--font-display);
}
.nav-link:hover, .nav-link.active { background: var(--primary-light); color: var(--primary); }

/* CTA pushed right */
.nav-cta { margin-left: auto; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem; margin-left: auto;
}
.nav-hamburger span {
  display: block; height: 2px; width: 24px;
  background: var(--dark); border-radius: var(--radius-full); transition: var(--transition-med);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Theme toggle */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--border); background: var(--surface);
  color: var(--primary); cursor: pointer; margin-left: .75rem;
  transition: var(--transition-med);
}
.theme-toggle:hover { background: var(--primary-light); border-color: var(--primary); transform: translateY(-1px); }
.theme-toggle i { font-size: .95rem; transition: transform .4s ease; }
.theme-toggle:active i { transform: rotate(20deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; background: var(--ink); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem;
  opacity: 0; visibility: hidden; transition: var(--transition-med);
}
.nav-drawer.open { opacity: 1; visibility: visible; }
.nav-drawer-logo { margin-bottom: .5rem; }
.nav-drawer-logo img { height: 52px; width: auto; }
.nav-drawer .nav-link { font-size: 1.5rem; font-weight: 700; color: white; padding: .75rem 2rem; }
.nav-drawer .nav-link:hover { color: var(--primary); background: transparent; }
.nav-drawer .nav-cta { margin-left: 0; margin-top: .5rem; }

/* ================================================
   PRELOADER (logo only)
   ================================================ */
#preloader {
  position: fixed; inset: 0; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo-img {
  height: 80px; width: auto;
  animation: preloaderPulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(156,122,42,.4));
}
.preloader-logo {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 800;
  color: white; letter-spacing: -.02em; margin-bottom: 1.5rem;
  animation: preloaderPulse 0.8s ease-in-out infinite;
}
.preloader-logo span { color: var(--primary); }
.preloader-bar {
  width: 200px; height: 3px; background: rgba(156,122,42,.18); border-radius: 9999px; overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0; background: var(--gradient-primary); border-radius: 9999px;
  animation: preloaderFill 0.5s ease-in-out forwards;
}
@keyframes preloaderFill { from { width: 0; } to { width: 100%; } }
@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .75; transform: scale(.96); }
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  padding: calc(var(--total-header) + 60px) 0 80px;
  background: #111; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1600&q=80') center/cover;
  opacity: 1;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.5) 100%);
}
.page-hero-content { position: relative; z-index: 2; color: white; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.page-hero h1 { color: white; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.0625rem; }

/* ================================================
   HOME HERO
   ================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: #111; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1920&q=80') center/cover;
  opacity: 1;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.38) 0%, rgba(0,0,0,.18) 50%, rgba(0,0,0,.42) 100%);
}
.hero-content { position: relative; z-index: 1; padding: calc(var(--total-header) + 60px) 0 80px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(156,122,42,.18); border: 1px solid rgba(156,122,42,.4);
  backdrop-filter: blur(10px); color: var(--primary); font-size: .8125rem; font-weight: 700;
  padding: .5rem 1rem; border-radius: var(--radius-full); margin-bottom: 1.25rem;
  font-family: var(--font-display);
}
.hero-badge i { color: var(--primary); }
.hero h1 { color: white; margin-bottom: 1.25rem; max-width: 660px; text-shadow: 0 2px 20px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.4); }
.hero h1 em { color: var(--primary); font-style: normal; display: block; }
.hero-desc { color: rgba(255,255,255,.92); font-size: 1.125rem; max-width: 520px; margin-bottom: 2rem; line-height: 1.7; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-stat-label { font-size: .8125rem; color: rgba(255,255,255,.85); margin-top: 3px; text-shadow: 0 1px 6px rgba(0,0,0,.45); }

/* Gold divider line */
.gold-divider { height: 3px; background: var(--gradient-primary); border: none; margin: 0; }

/* ================================================
   SEARCH WIDGET
   ================================================ */
.search-widget {
  background: var(--surface); border-radius: var(--radius-xl);
  padding: 1.5rem 2rem; box-shadow: 0 20px 60px rgba(0,0,0,.25);
  margin-top: 2.5rem; border: 1px solid var(--border);
}
.search-title {
  font-size: .8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gray); margin-bottom: 1rem;
  font-family: var(--font-display);
}
.search-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: .75rem; align-items: end; }
.search-field label { display: block; font-size: .8125rem; font-weight: 700; color: var(--dark-2); margin-bottom: .375rem; font-family: var(--font-display); }
.search-field input, .search-field select {
  width: 100%; padding: .75rem 1rem; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: .9375rem; color: var(--dark);
  background: var(--bg); transition: var(--transition);
}
.search-field input:focus, .search-field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(156,122,42,.12); }

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar { background: var(--ink); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: .875rem; color: rgba(255,255,255,.6); margin-top: .25rem; }

/* ================================================
   PROPERTY CARDS
   ================================================ */
.properties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.property-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition-med);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }
.card-image { position: relative; height: 240px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.property-card:hover .card-image img { transform: scale(1.06); }
.card-overlay { position: absolute; inset: 0; background: var(--gradient-card); }
.card-badges { position: absolute; top: .75rem; left: .75rem; display: flex; gap: .5rem; }
.card-wishlist {
  position: absolute; top: .75rem; right: .75rem;
  width: 36px; height: 36px; background: var(--surface); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.card-wishlist:hover, .card-wishlist.active { color: #ef4444; }
.card-price-tag {
  position: absolute; bottom: .75rem; right: .75rem;
  background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
  color: white; border-radius: var(--radius); padding: .375rem .75rem; font-size: .875rem;
}
.card-price-tag strong { font-size: 1.1rem; color: var(--primary); }
.card-body { padding: 1.25rem; }
.card-rating { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--gray); margin-bottom: .375rem; }
.card-rating .stars { color: var(--primary); }
.card-title { font-size: 1.125rem; font-weight: 700; color: var(--dark); margin-bottom: .375rem; transition: var(--transition); }
.property-card:hover .card-title { color: var(--primary); }
.card-location { display: flex; align-items: center; gap: .375rem; font-size: .875rem; color: var(--gray); margin-bottom: 1rem; }
.card-location i { color: var(--primary); }
.card-meta { display: flex; flex-wrap: wrap; gap: .75rem; padding-top: .875rem; border-top: 1px solid var(--border); margin-bottom: 1rem; }
.card-meta-item { display: flex; align-items: center; gap: .375rem; font-size: .8125rem; color: var(--gray); }
.card-meta-item i { color: var(--primary); font-size: .75rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.card-price-value { font-size: 1.375rem; font-weight: 800; color: var(--primary); font-family: var(--font-display); }
.card-price-value small { font-size: .875rem; font-weight: 400; color: var(--gray); }

/* ================================================
   FILTER SIDEBAR
   ================================================ */
.property-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
.filter-sidebar {
  position: sticky; top: calc(var(--total-header) + 1rem); background: var(--surface);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden;
}
.filter-header {
  background: var(--gradient-primary); color: var(--ink); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.filter-header h3 { color: var(--ink); font-size: 1rem; margin: 0; }
.filter-clear { font-size: .8125rem; color: rgba(10,10,10,.7); cursor: pointer; transition: var(--transition); background: none; border: none; font-family: var(--font-body); }
.filter-clear:hover { color: var(--ink); }
.filter-body { padding: 1.5rem; }
.filter-group { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-label { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray); margin-bottom: .75rem; display: block; font-family: var(--font-display); }
.filter-options { display: flex; flex-direction: column; gap: .375rem; }
.filter-check { display: flex; align-items: center; gap: .75rem; cursor: pointer; padding: .375rem; border-radius: var(--radius-sm); transition: var(--transition); }
.filter-check:hover { background: var(--bg); }
.filter-check input[type="checkbox"], .filter-check input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; }
.filter-check-label { font-size: .9rem; color: var(--dark-3); }
.price-range-row { display: flex; justify-content: space-between; font-size: .8125rem; color: var(--gray); margin-bottom: .5rem; }
.range-slider { width: 100%; -webkit-appearance: none; height: 4px; background: var(--border); border-radius: var(--radius-full); outline: none; cursor: pointer; }
.range-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: var(--primary); border-radius: 50%; cursor: pointer; box-shadow: var(--shadow-gold); }

/* ================================================
   LISTING CONTROLS
   ================================================ */
.listing-controls { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: .75rem; }
.listing-count { font-size: .9rem; color: var(--gray); }
.listing-count strong { color: var(--dark); }
.listing-sort-wrap { display: flex; align-items: center; gap: .75rem; }
.listing-sort { padding: .5rem 1rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: .875rem; color: var(--dark); background: var(--surface); cursor: pointer; }
.view-toggle { display: flex; gap: .25rem; }
.view-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); color: var(--gray); border: 2px solid var(--border); background: var(--surface); transition: var(--transition); }
.view-btn.active, .view-btn:hover { background: var(--primary); color: var(--ink); border-color: var(--primary); }
.properties-list { display: flex; flex-direction: column; gap: 1.25rem; }
.property-card.list-view { display: grid; grid-template-columns: 280px 1fr; }
.property-card.list-view .card-image { height: 100%; min-height: 200px; }

/* ================================================
   PAGINATION
   ================================================ */
.pagination { display: flex; justify-content: center; align-items: center; gap: .5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.page-btn { min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); font-size: .9rem; font-weight: 600; color: var(--dark-3); border: 2px solid var(--border); background: var(--surface); cursor: pointer; transition: var(--transition); padding: 0 .75rem; font-family: var(--font-display); }
.page-btn:hover, .page-btn.active { background: var(--primary); color: var(--ink); border-color: var(--primary); box-shadow: var(--shadow-gold); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ================================================
   GALLERY
   ================================================ */
.gallery-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.gallery-tab { padding: .5rem 1.25rem; border-radius: var(--radius-full); font-size: .875rem; font-weight: 700; color: var(--gray); background: var(--surface); border: 2px solid var(--border); cursor: pointer; transition: var(--transition-med); font-family: var(--font-display); }
.gallery-tab:hover, .gallery-tab.active { background: var(--primary); color: var(--ink); border-color: var(--primary); box-shadow: var(--shadow-gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; min-height: 300px; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: var(--gradient-overlay); opacity: 0; transition: var(--transition-med); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .5rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 1.75rem; }
.gallery-overlay span { color: white; font-size: .875rem; font-weight: 700; font-family: var(--font-display); }

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.97); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; }
.lightbox-img { max-width: 100%; max-height: 85vh; border-radius: var(--radius); display: block; margin: 0 auto; }
.lightbox-close { position: fixed; top: 1.25rem; right: 1.5rem; color: white; font-size: 1.5rem; cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(156,122,42,.15); transition: var(--transition); z-index: 10000; border: none; }
.lightbox-close:hover { background: rgba(156,122,42,.3); }
.lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); color: white; cursor: pointer; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(156,122,42,.25); transition: var(--transition); font-size: 1.25rem; border: none; }
.lightbox-nav:hover { background: rgba(156,122,42,.5); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-caption { text-align: center; color: rgba(255,255,255,.7); font-size: .875rem; margin-top: 1rem; font-family: var(--font-display); }
.lightbox-counter { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.55); font-size: .8125rem; }

/* ================================================
   FEATURES GRID
   ================================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-card { background: var(--surface); border-radius: var(--radius-lg); padding: 2rem 1.75rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition-med); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.feature-icon { width: 64px; height: 64px; background: var(--gradient-primary); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--ink); margin: 0 auto 1.25rem; box-shadow: var(--shadow-gold); }
.feature-title { font-size: 1.0625rem; margin-bottom: .75rem; }
.feature-desc { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section { background: var(--ink-2); }
.testimonials-section .section-badge { background: rgba(156,122,42,.2); color: var(--primary); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-desc { color: rgba(255,255,255,.55); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem; }
.testimonial-card { background: rgba(156,122,42,.05); border: 1px solid rgba(156,122,42,.12); border-radius: var(--radius-lg); padding: 1.5rem; transition: var(--transition-med); }
.testimonial-card:hover { background: rgba(156,122,42,.09); border-color: rgba(156,122,42,.35); }
.testimonial-quote { font-size: 2.5rem; color: var(--primary); line-height: 1; margin-bottom: .5rem; font-family: var(--font-display); }
.testimonial-text { color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 1.25rem; font-size: .9375rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 2px solid var(--primary); flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; color: white; font-size: .9375rem; font-family: var(--font-display); }
.testimonial-meta { font-size: .8125rem; color: rgba(255,255,255,.45); }
.testimonial-stars { display: flex; gap: 2px; margin-top: 2px; }
.testimonial-stars i { color: var(--primary); font-size: .75rem; }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section { background: #111; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.48), rgba(0,0,0,.48)), url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?w=1600&q=80') center/cover; }
.cta-section::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); }
.cta-content { position: relative; z-index: 1; text-align: center; color: white; }
.cta-content h2 { color: white; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,.8); font-size: 1.125rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-image-wrap { border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.about-image-wrap img { width: 100%; height: 520px; object-fit: cover; }
.about-float-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--surface); border-radius: var(--radius-lg); padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); display: flex; gap: .75rem; align-items: center; }
.about-float-badge i { color: var(--primary); font-size: 1.5rem; }
.about-float-badge strong { display: block; font-size: 1.125rem; color: var(--dark); line-height: 1.2; font-family: var(--font-display); }
.about-float-badge span { font-size: .8125rem; color: var(--gray); }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.about-value { display: flex; gap: 1rem; padding: 1rem; background: var(--bg); border-radius: var(--radius); border-left: 3px solid var(--primary); }
.about-value-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--primary-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.125rem; }
.about-value h4 { font-size: .9375rem; margin-bottom: 3px; }
.about-value p { font-size: .875rem; color: var(--gray); margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition-med); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo { height: 200px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-body { padding: 1.25rem; }
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: .8125rem; color: var(--primary); font-weight: 600; margin-bottom: .75rem; }
.team-social { display: flex; justify-content: center; gap: .5rem; }
.team-social a { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border); color: var(--gray); font-size: .8125rem; transition: var(--transition); }
.team-social a:hover { background: var(--primary); color: var(--ink); border-color: var(--primary); }

/* ================================================
   PROPERTY DETAIL
   ================================================ */
.detail-gallery-main { border-radius: var(--radius-lg); overflow: hidden; height: 480px; cursor: pointer; margin-bottom: .75rem; }
.detail-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.detail-gallery-main:hover img { transform: scale(1.03); }
.detail-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; }
.detail-thumb { height: 90px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; opacity: .7; transition: var(--transition); }
.detail-thumb:hover, .detail-thumb.active { opacity: 1; border-color: var(--primary); }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; margin-top: 2rem; }
.detail-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; gap: 1rem; }
.detail-title { font-size: clamp(1.5rem, 3vw, 2rem); }
.detail-location { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; color: var(--gray); margin-top: .5rem; }
.detail-location i { color: var(--primary); }
.detail-rating { display: flex; align-items: center; gap: .5rem; }
.detail-rating .stars { color: var(--primary); }
.detail-rating span { font-size: .875rem; color: var(--gray); }
.detail-meta { display: flex; flex-wrap: wrap; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.detail-meta-item { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; color: var(--dark-3); }
.detail-meta-item i { color: var(--primary); width: 18px; text-align: center; }
.detail-desc { color: var(--dark-3); line-height: 1.8; margin-bottom: 1.5rem; }
.detail-amenities h3 { margin-bottom: 1rem; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.amenity-item { display: flex; align-items: center; gap: .75rem; padding: .75rem; background: var(--bg); border-radius: var(--radius); font-size: .875rem; color: var(--dark-3); border: 1px solid var(--border); }
.amenity-item i { color: var(--primary); width: 18px; text-align: center; }
.reviews-section { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.review-card { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.review-card:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: .875rem; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: .9375rem; font-family: var(--font-display); }
.reviewer-date { font-size: .8125rem; color: var(--gray); }
.review-text { font-size: .9375rem; color: var(--dark-3); line-height: 1.6; }
.review-stars { display: flex; gap: 2px; color: var(--primary); font-size: .875rem; }

/* ================================================
   BOOKING WIDGET (property detail sidebar)
   ================================================ */
.booking-widget { position: sticky; top: calc(var(--total-header) + 1rem); background: var(--surface); border-radius: var(--radius-xl); border: 2px solid var(--border); box-shadow: var(--shadow-lg); overflow: hidden; }
.booking-widget-header { background: var(--gradient-primary); color: var(--ink); padding: 1.25rem 1.5rem; }
.bw-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.bw-price small { font-size: .9rem; font-weight: 400; opacity: .8; }
.bw-rating { display: flex; align-items: center; gap: .5rem; margin-top: .25rem; font-size: .875rem; opacity: .9; }
.bw-rating .stars { color: rgba(10,10,10,.75); }
.booking-widget-body { padding: 1.5rem; }
.bw-dates { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: .75rem; }
.bw-field label { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray); margin-bottom: .375rem; font-family: var(--font-display); }
.bw-field input, .bw-field select { width: 100%; padding: .625rem .75rem; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; color: var(--dark); transition: var(--transition); }
.bw-field input:focus, .bw-field select:focus { outline: none; border-color: var(--primary); }
.bw-summary { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1rem; }
.bw-row { display: flex; justify-content: space-between; font-size: .9rem; color: var(--dark-3); margin-bottom: .5rem; }
.bw-row.total { font-weight: 700; color: var(--dark); font-size: 1rem; padding-top: .75rem; border-top: 1px solid var(--border); margin-top: .5rem; }

/* ================================================
   BOOKING FLOW PAGE
   ================================================ */
.booking-page { background: var(--bg); min-height: 100vh; padding-top: var(--total-header); }
.booking-page-header { background: var(--surface); border-bottom: 1px solid var(--border); padding: 1.25rem 0; position: sticky; top: var(--total-header); z-index: 100; }
.steps-bar { display: flex; align-items: center; justify-content: center; gap: 0; }
.step-item { display: flex; align-items: center; gap: .75rem; padding: .5rem 1rem; font-size: .875rem; font-weight: 700; color: var(--gray-light); font-family: var(--font-display); }
.step-circle { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .8125rem; font-weight: 700; color: var(--gray-light); transition: var(--transition-med); flex-shrink: 0; }
.step-item.active .step-circle { background: var(--primary); border-color: var(--primary); color: var(--ink); }
.step-item.done .step-circle { background: #10b981; border-color: #10b981; color: white; }
.step-item.active { color: var(--primary); }
.step-item.done { color: #10b981; }
.step-line { width: 60px; height: 2px; background: var(--border); transition: var(--transition-med); }
.step-line.done { background: #10b981; }
.booking-page-body { padding: 2.5rem 0; }
.booking-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.booking-panel { background: var(--surface); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); border: 1px solid var(--border); padding: 2rem; }
.booking-panel h2 { font-size: 1.375rem; margin-bottom: .375rem; }
.booking-panel-sub { font-size: .9rem; color: var(--gray); margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: block; font-size: .8125rem; font-weight: 700; color: var(--dark-2); margin-bottom: .375rem; font-family: var(--font-display); }
.form-input { width: 100%; padding: .75rem 1rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: .9375rem; color: var(--dark); background: var(--surface); transition: var(--transition); }
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(156,122,42,.1); }
.form-input.error { border-color: #ef4444; }
.form-error { font-size: .8125rem; color: #ef4444; margin-top: .25rem; }
.form-hint { font-size: .8125rem; color: var(--gray); margin-top: .25rem; }
.payment-methods { display: flex; gap: .75rem; margin-bottom: 1.5rem; }
.pay-method { flex: 1; padding: 1rem; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; text-align: center; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: .75rem; font-size: .875rem; font-weight: 700; color: var(--dark-3); font-family: var(--font-display); }
.pay-method:hover { border-color: var(--primary); color: var(--primary); }
.pay-method.active { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.pay-method i { font-size: 1.25rem; }
.card-field-wrap { position: relative; }
.card-icons-row { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); display: flex; gap: .25rem; }
.card-icon { width: 32px; height: 22px; border-radius: 3px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 700; background: var(--surface); transition: var(--transition); }
.card-icon.visa { color: #1a1f71; }
.card-icon.mc { color: #eb001b; }
.card-icon.amex { color: #007bc1; }
.card-icon.inactive { opacity: .25; }
.security-note { display: flex; align-items: flex-start; gap: .75rem; padding: 1rem; background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); margin-top: 1.25rem; }
.security-note i { color: #16a34a; font-size: 1.125rem; margin-top: 1px; flex-shrink: 0; }
.security-note p { font-size: .8125rem; color: #166534; margin: 0; }
.security-note strong { display: block; margin-bottom: 2px; }
.booking-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.order-card { background: var(--surface); border-radius: var(--radius-xl); border: 1px solid var(--border); overflow: hidden; margin-bottom: 1rem; }
.order-card-head { background: var(--ink); color: white; padding: .875rem 1.25rem; font-weight: 700; font-size: .9375rem; font-family: var(--font-display); }
.order-property-row { padding: 1.25rem; border-bottom: 1px solid var(--border); display: flex; gap: 1rem; }
.order-prop-img { width: 80px; height: 60px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.order-prop-img img { width: 100%; height: 100%; object-fit: cover; }
.order-prop-name { font-weight: 700; font-size: .9375rem; margin-bottom: 3px; font-family: var(--font-display); }
.order-prop-loc { font-size: .8125rem; color: var(--gray); }
.order-lines { padding: 1.25rem; }
.order-line { display: flex; justify-content: space-between; font-size: .9rem; color: var(--dark-3); margin-bottom: .625rem; }
.order-line:last-child { margin-bottom: 0; }
.order-line.total { font-weight: 800; color: var(--dark); font-size: 1rem; padding-top: .75rem; border-top: 1px solid var(--border); margin-top: .5rem; font-family: var(--font-display); }
.order-line.discount { color: #16a34a; }
.trust-card { background: var(--surface); border-radius: var(--radius-xl); border: 1px solid var(--border); padding: 1.25rem; }
.trust-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.trust-item:last-child { margin-bottom: 0; }
.trust-item i { color: var(--primary); font-size: 1.125rem; margin-top: 1px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: .875rem; margin-bottom: 2px; font-family: var(--font-display); }
.trust-item span { font-size: .8125rem; color: var(--gray); }
.confirm-panel { text-align: center; padding: 3rem 2rem; }
.confirm-icon { width: 80px; height: 80px; background: #d1fae5; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #16a34a; margin: 0 auto 1.25rem; }
.confirm-panel h2 { margin-bottom: .75rem; }
.confirm-panel > p { color: var(--gray); margin-bottom: 1.5rem; }
.booking-id-box { display: inline-block; background: var(--primary-light); color: var(--primary-darker); font-weight: 800; letter-spacing: .1em; padding: .625rem 1.5rem; border-radius: var(--radius); font-size: 1.25rem; margin-bottom: 1.5rem; font-family: var(--font-display); }
.confirm-details { background: var(--bg); border-radius: var(--radius); padding: 1.25rem; text-align: left; margin-bottom: 1.5rem; border: 1px solid var(--border); }
.confirm-row { display: flex; justify-content: space-between; font-size: .9rem; color: var(--dark-3); padding: .5rem 0; border-bottom: 1px solid var(--border); }
.confirm-row:last-child { border-bottom: none; }
.confirm-row strong { color: var(--dark); }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-card { background: var(--surface); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; transition: var(--transition-med); }
.contact-info-card:hover { transform: translateX(4px); border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.contact-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--gradient-primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 1.1rem; }
.contact-info-card label { font-size: .8125rem; color: var(--gray); font-weight: 700; margin-bottom: 3px; display: block; font-family: var(--font-display); }
.contact-info-card strong { font-weight: 700; color: var(--dark); }
.contact-form-card { background: var(--surface); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-map { margin-top: 2.5rem; border-radius: var(--radius-xl); overflow: hidden; height: 380px; border: 2px solid var(--border); }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ================================================
   FOOTER
   ================================================ */
footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(156,122,42,.15); }
.footer-logo-img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: white; margin-bottom: 1rem; letter-spacing: -.02em; }
.footer-logo span { color: var(--primary); }
.footer-desc { font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(156,122,42,.3); display: flex; align-items: center; justify-content: center; color: rgba(156,122,42,.75); font-size: .875rem; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--ink); }
.footer-col-title { font-size: .8125rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: white; margin-bottom: 1.25rem; font-family: var(--font-display); }
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-link { font-size: .9rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-link:hover { color: var(--primary); padding-left: 4px; }
.footer-newsletter p { font-size: .875rem; margin-bottom: .75rem; color: rgba(255,255,255,.6); }
.newsletter-form { display: flex; gap: .5rem; }
.newsletter-form input { flex: 1; padding: .625rem 1rem; background: rgba(156,122,42,.07); border: 1px solid rgba(156,122,42,.18); border-radius: var(--radius); color: white; font-size: .875rem; }
.newsletter-form input::placeholder { color: rgba(156,122,42,.4); }
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.footer-bottom { padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; font-size: .8125rem; flex-wrap: wrap; gap: .75rem; }
.footer-bottom-logo { height: 28px; width: auto; opacity: .5; }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-legal a:hover { color: white; }

/* ================================================
   SCROLL TOP & TOAST
   ================================================ */
.scroll-top { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 44px; height: 44px; background: var(--gradient-primary); color: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); cursor: pointer; transition: var(--transition-med); opacity: 0; visibility: hidden; z-index: 999; border: none; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }
.toast-container { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: .75rem; }
.toast { background: var(--surface); border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow-xl); border-left: 4px solid; display: flex; align-items: center; gap: .75rem; min-width: 280px; max-width: 360px; animation: toastIn .3s ease; font-size: .9rem; }
.toast-success { border-color: #10b981; }
.toast-success .toast-icon { color: #10b981; }
.toast-error { border-color: #ef4444; }
.toast-error .toast-icon { color: #ef4444; }
.toast-info { border-color: var(--primary); }
.toast-info .toast-icon { color: var(--primary); }
.toast-close { margin-left: auto; color: var(--gray); cursor: pointer; line-height: 1; font-size: 1.25rem; background: none; border: none; }
@keyframes toastIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

/* ================================================
   FADE IN ANIMATION
   ================================================ */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .35s ease, transform .35s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ================================================
   UTILS
   ================================================ */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gray { color: var(--gray); }
.text-white { color: white; }
.text-center { text-align: center; }
.no-properties { text-align: center; padding: 4rem 2rem; color: var(--gray); }
.no-properties i { font-size: 3rem; color: var(--border); display: block; margin-bottom: 1rem; }
.mobile-filter-toggle { display: none; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .property-layout { grid-template-columns: 240px 1fr; }
  .detail-layout { grid-template-columns: 1fr 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .booking-layout { grid-template-columns: 1fr 320px; }
}
@media (max-width: 992px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .property-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; display: none; }
  .filter-sidebar.open { display: block; }
  .mobile-filter-toggle { display: flex; }
  .about-story { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 380px; }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .top-header-left a span, .top-header-right a span { display: none; }
  .top-header-left a, .top-header-right a { font-size: 0; gap: 0; }
  .top-header-left i, .top-header-right i { font-size: .9rem; }
  .properties-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .step-item .step-label { display: none; }
  .step-line { width: 30px; }
  .detail-thumbs { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .search-grid { grid-template-columns: 1fr; }
  .payment-methods { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-actions { flex-direction: column-reverse; gap: .75rem; }
  .booking-actions .btn { width: 100%; justify-content: center; }
  .bw-dates { grid-template-columns: 1fr; }
  .property-card.list-view { display: block; }
  .property-card.list-view .card-image { height: 240px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
}
