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

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #002244;
  --navy-light: #003D6E;
  --red: #D3122A;
  --red-dark: #a80d1f;
  --blue: #00508F;
  --text: #333;
  --text-muted: #666;
  --border: #e0e0e0;
  --bg-light: #f7f8fa;
  --white: #fff;
  --card-bg: #fff;
  --max-width: 1280px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
}

body.dark-mode {
  --navy: #0b1120;
  --navy-light: #1e293b;
  --red: #ef4444;
  --red-dark: #b91c1c;
  --blue: #3b82f6;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --border: #334155;
  --bg-light: #0f172a;
  --white: #1e293b;
  --card-bg: #1e293b;
  --shadow: 0 4px 15px rgba(0,0,0,0.5);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.7);
  background-color: var(--bg-light);
  color: var(--text);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-light);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tb-select {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 3px;
  transition: background var(--transition);
  color: var(--navy);
}
.tb-select:hover { background: #e8e8e8; }
.tb-select select {
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  outline: none;
  font-family: inherit;
}
.tb-divider { color: rgba(255,255,255,0.4); font-size: 14px; margin: 0 4px; }
.tb-login {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  color: var(--navy);
  font-weight: 700;
  transition: color var(--transition);
}
.tb-login:hover { color: var(--red); }
.tb-login i { color: #0090d0; font-size: 13px; }
.tb-phone-group {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 3px 0;
}
.tb-phone-label {
  color: var(--red);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.tb-phone-label.mobil { color: #fff; }
.tb-phone-num { color: #fff; font-weight: 600; }
.tb-whatsapp { color: #25D366; font-size: 17px; transition: transform var(--transition); }
.tb-whatsapp:hover { transform: scale(1.15); }
.tb-btn {
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.tb-btn-find {
  background: var(--white);
  color: var(--navy);
  border-color: #ccc;
}
.tb-btn-find:hover { background: #eee; }
.tb-btn-appt {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.tb-btn-appt:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* ============================================================
   MAIN HEADER
   ============================================================ */
.main-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
}
.site-logo span { color: var(--red); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--red); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #1a2744;
}
.hero-section .swiper,
.hero-section .swiper-container { width: 100%; height: 100%; }
.hero-section .swiper-slide { overflow: hidden; }
.hero-section .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero-section .swiper-slide-active img { transform: scale(1.05); }
.hero-section .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
}
.slide-caption {
  position: absolute;
  bottom: 140px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--white);
  z-index: 5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.slide-caption h2 { font-size: 22px; font-weight: 600; }

/* Hero Search */
.hero-search {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 20px 30px;
  display: flex;
  justify-content: center;
}
.hero-search-inner {
  width: 100%;
  max-width: 900px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.search-text-row {
  position: relative;
  width: 100%;
}
.search-text-row input {
  width: 100%;
  padding: 14px 50px 14px 18px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  background: rgba(255,255,255,0.95);
}
.search-text-row input::placeholder { color: #999; }
.search-text-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 18px;
  pointer-events: none;
}
.search-selects-row {
  display: flex;
  gap: 10px;
}
.search-selects-row label {
  flex: 1;
  position: relative;
}
.search-selects-row select {
  width: 100%;
  padding: 12px 36px 12px 14px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  font-family: inherit;
  background: rgba(255,255,255,0.95);
  appearance: none;
  cursor: pointer;
  outline: none;
}
.search-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  pointer-events: none;
  font-size: 11px;
}
.search-btn-row { display: flex; gap: 10px; }
.btn-more-filters {
  flex: 1;
  padding: 13px;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition);
}
.btn-more-filters:hover { background: var(--white); }
.btn-search-main {
  flex: 2;
  padding: 13px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background var(--transition);
}
.btn-search-main:hover { background: var(--red-dark); }

/* Swiper Controls */
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  color: var(--white);
  opacity: 0.8;
}
.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after { font-size: 22px; }
.hero-section .swiper-pagination-bullet { background: var(--white); opacity: 0.6; }
.hero-section .swiper-pagination-bullet-active { opacity: 1; background: var(--white); }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-light);
  border-left: 4px solid var(--blue);
  margin-bottom: 20px;
  border-radius: 0 4px 4px 0;
}
.section-title-bar h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.section-title-bar a {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.section-title-bar a:hover { gap: 8px; }

/* ============================================================
   ABOUT SECTION (Homepage)
   ============================================================ */
.about-section {
  padding: 50px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}
.about-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  padding-bottom: 2px;
}
.about-read-more:hover { color: var(--red); border-color: var(--red); gap: 12px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-box {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--red); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.about-promises { display: grid; gap: 12px; }
.about-promises > div { display: grid; grid-template-columns: 44px 1fr; padding: 20px; border: 1px solid rgba(15,118,110,.18); background: rgba(255,255,255,.7); }
.about-promises i { grid-row: 1 / 3; align-self: center; color: var(--sea); font-size: 22px; }
.about-promises strong { color: var(--ink); font-size: 14px; }
.about-promises span { margin-top: 3px; color: var(--text-muted); font-size: 12px; }

/* ============================================================
   POPULAR LOCATIONS
   ============================================================ */
.popular-locations {
  background: var(--white);
  padding: 0 0 40px;
}
.popular-locations .section-title-bar { margin-bottom: 16px; }
.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 4px;
}
.location-list a {
  font-size: 14px;
  color: var(--text);
  transition: color var(--transition);
}
.location-list a strong { color: var(--text-muted); font-weight: 400; }
.location-list a:hover { color: var(--red); }
.location-list a:hover strong { color: var(--red); }

/* ============================================================
   BOX BANNERS
   ============================================================ */
.box-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.box-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
}
.box-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.box-banner:hover img { transform: scale(1.06); }
.box-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,10,30,0.75) 0%, transparent 60%);
}
.box-banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: var(--white);
}
.box-banner-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.box-banner-desc { font-size: 13px; opacity: 0.85; }

/* ============================================================
   PROPERTY LIST ITEMS (antalyahomes style)
   ============================================================ */
.property-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }

.property-item {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
  height: 275px;
}
.property-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

/* Left side - image slider */
.prop-img-side {
  width: 350px;
  min-width: 350px;
  position: relative;
  flex-shrink: 0;
}
.prop-img-side .swiper,
.prop-img-side .swiper-container { width: 100%; height: 100%; }
.prop-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-img-side .swiper-button-next,
.prop-img-side .swiper-button-prev {
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.prop-img-side .swiper-button-next::after,
.prop-img-side .swiper-button-prev::after { font-size: 18px; }
.property-item:hover .prop-img-side .swiper-button-next,
.property-item:hover .prop-img-side .swiper-button-prev { opacity: 0.9; }

.prop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.prop-badge.blue { background: var(--blue); }
.prop-badge.green { background: #1e8c43; }

.prop-code-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  background: rgba(0,0,0,0.4);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
}

/* Right side - info */
.prop-info-side {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
}
.prop-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color var(--transition);
}
.prop-title:hover { color: var(--red); }
.prop-location {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.prop-rooms {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.prop-rooms span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.prop-rooms i { color: var(--blue); font-size: 14px; }
.prop-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.prop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}
.prop-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.prop-price em {
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}
.prop-actions { display: flex; gap: 8px; }
.prop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: all var(--transition);
}
.prop-btn:hover { background: var(--bg-light); }
.prop-btn.primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.prop-btn.primary:hover { background: var(--navy-light); border-color: var(--navy-light); }

/* ============================================================
   PROPERTY CARDS (grid style for homepage)
   ============================================================ */
.prop-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.prop-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.prop-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prop-card:hover .prop-card-img img { transform: scale(1.06); }
.prop-card-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}
.prop-card-body { padding: 16px; }
.prop-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color var(--transition);
}
.prop-card:hover .prop-card-title { color: var(--red); }
.prop-card-loc {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.prop-card-features {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.prop-card-features span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}
.prop-card-features i { color: var(--blue); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 48px 0;
  color: var(--white);
}
.page-header h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 10px; }

/* ============================================================
   PAGE LAYOUT (inner pages)
   ============================================================ */
.page-content { padding: 40px 0 60px; }
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: start;
}
.content-with-sidebar.reverse {
  grid-template-columns: 320px 1fr;
}

/* ============================================================
   FILTER SIDEBAR
   ============================================================ */
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 90px;
}
.filter-sidebar h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-group { margin-bottom: 20px; }
.filter-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}
.filter-group select,
.filter-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.filter-group select:focus,
.filter-group input:focus { border-color: var(--blue); }
.btn-filter-search {
  width: 100%;
  padding: 12px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--transition);
  margin-top: 8px;
}
.btn-filter-search:hover { background: var(--red-dark); }
.btn-filter-reset {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  margin-top: 8px;
}
.btn-filter-reset:hover { border-color: var(--navy); color: var(--navy); }

/* Sort Bar */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 13px;
}
.sort-bar strong { color: var(--navy); }
.sort-bar select {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

/* ============================================================
   SELL PAGE
   ============================================================ */
.sell-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #004080 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.sell-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.sell-hero p { font-size: 17px; opacity: 0.85; max-width: 600px; margin: 0 auto; }

.sell-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 0;
}
.sell-step {
  text-align: center;
  padding: 40px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.sell-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.sell-step-icon {
  width: 72px;
  height: 72px;
  background: rgba(0,80,143,0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.sell-step:hover .sell-step-icon { background: var(--blue); color: var(--white); }
.sell-step h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sell-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}
.contact-form-card h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--blue); }
textarea.form-control { resize: vertical; min-height: 130px; }
.btn-submit {
  padding: 13px 32px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: background var(--transition);
}
.btn-submit:hover { background: var(--red-dark); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: all var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: transparent; }
.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(0,80,143,0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.contact-info-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.contact-info-card a { color: var(--blue); }
.contact-info-card a:hover { color: var(--red); }

/* Map */
.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}
.map-wrapper iframe { display: block; }

/* ============================================================
   BUYING GUIDE
   ============================================================ */
.guide-steps { display: flex; flex-direction: column; gap: 24px; }
.guide-step {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all var(--transition);
}
.guide-step:hover { box-shadow: var(--shadow-hover); border-color: transparent; }
.guide-step-num {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}
.guide-step-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.guide-step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CORPORATE PAGE
   ============================================================ */
.corporate-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
}
.corporate-intro img { border-radius: 12px; width: 100%; height: 360px; object-fit: cover; }
.corporate-intro h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.corporate-intro p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,80,143,0.08);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.value-card:hover .value-icon { background: var(--blue); color: var(--white); }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: transparent; }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 20px; }
.blog-card-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red);
  background: rgba(211,18,42,0.08);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--red); }
.blog-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.blog-card-meta a { color: var(--blue); font-weight: 700; }
.blog-card-meta a:hover { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: var(--navy);
  color: #b0b8c8;
  padding: 60px 0 0;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col-logo .site-logo { color: var(--white); font-size: 26px; margin-bottom: 16px; display: block; }
.footer-col-logo .site-logo span { color: var(--red); }
.footer-col-logo p { font-size: 14px; line-height: 1.8; color: #8494aa; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: #8494aa;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: #8494aa;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a i { font-size: 11px; color: var(--red); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact-item i { color: var(--red); font-size: 15px; margin-top: 2px; min-width: 16px; }
.footer-contact-item span { color: #8494aa; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #5a6a7e;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { background: #1ebe5d; transform: scale(1.08); }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.section-pad { padding: 50px 0; }

.section-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-intro h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-intro p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.section-divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 12px auto 16px;
  border-radius: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .prop-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .hero-section { height: 480px; }
  .slide-caption { bottom: 160px; }
  .search-selects-row { flex-wrap: wrap; }
  .property-item { flex-direction: column; height: auto; }
  .prop-img-side { width: 100%; min-width: unset; height: 220px; }
  .content-with-sidebar,
  .content-with-sidebar.reverse { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .prop-cards-grid { grid-template-columns: 1fr; }
  .corporate-intro { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .sell-steps { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .box-banners { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .top-bar .container { justify-content: center; gap: 4px; }
  .tb-phone-group { display: none; }
}

/* --- Advanced Search Tabs --- */
.hero-search {
  flex-direction: column;
  align-items: center;
}
.hero-search-tabs {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 900px;
}
.search-tab {
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.search-tab:hover {
  background: rgba(0,0,0,0.6);
}
.search-tab.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-top: 2px solid var(--primary);
}
.hero-search-inner {
  border-top-left-radius: 0;
}
.search-selects-row.advanced-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .search-selects-row.advanced-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .search-selects-row.advanced-grid {
    grid-template-columns: 1fr;
  }
}

/* Mega Menu Custom Styles */
.mega-link { text-decoration:none; color:#555; transition:color 0.2s; }
.mega-link:hover { color:var(--red); }
.mega-link.active { color:var(--red); font-weight:bold; }
.tb-mega-btn { background:transparent; border:none; color:#fff; font-size:13px; font-weight:500; cursor:pointer; display:flex; align-items:center; gap:5px; }
.tb-mega-btn:hover { opacity:0.8; }
@media(max-width:768px){
  #megaMenuModal { width:95%; top:20px; padding:20px; height:80vh; overflow-y:auto; }
  #megaMenuModal > div { grid-template-columns:1fr !important; gap:20px !important; }
  #megaMenuModal > div > div { border-left:none !important; padding-left:0 !important; }
}

/* Premium Social Media Hovers */
.footer-social a {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.footer-social a::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--red);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.footer-social a:hover::before {
  transform: translateY(0);
}
.footer-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.footer-social a:hover i {
  color: #fff;
}
.footer-social a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  border-color: var(--red);
}

/* Custom Scrollbar for Thumbnails */
.custom-scrollbar::-webkit-scrollbar {
    height: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* --- TOP HEADER BAR --- */
.top-header-bar {
  background-color: #0b1120;
  color: #a0aec0;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.thb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.thb-left {
  display: flex;
  gap: 20px;
}
.thb-left a {
  color: #a0aec0;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.thb-left a:hover {
  color: #fff;
}
.thb-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.thb-dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.thb-dropbtn {
  background: transparent;
  color: #a0aec0;
  border: none;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  padding: 4px 8px;
  border-radius: 4px;
}
.thb-dropbtn:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.thb-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #1a202c;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
  z-index: 1000;
  border-radius: 6px;
  overflow: hidden;
  margin-top: -5px; /* Adjust margin to bridge visually */
  border: 1px solid rgba(255,255,255,0.1);
}
.thb-dropdown-content a {
  color: #e2e8f0;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: 0.2s;
}
.thb-dropdown-content a:hover {
  background-color: var(--red);
  color: #fff;
}
.thb-dropdown:hover .thb-dropdown-content {
  display: block;
}
.thb-login-btn {
  background-color: var(--red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.thb-login-btn:hover {
  background-color: #cc0000;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .thb-container {
    flex-direction: column;
    gap: 10px;
  }
  .thb-left {
    justify-content: center;
  }
}

/* ============================================================
   DARK MODE TEXT CONTRAST FIXES
   ============================================================ */
body.dark-mode .site-logo {
  color: var(--text) !important;
}
body.dark-mode .main-nav a {
  color: var(--text) !important;
}
body.dark-mode .search-tabs button {
  color: var(--text) !important;
  background: rgba(255,255,255,0.05) !important;
}
body.dark-mode .search-tabs button.active {
  color: #fff !important;
  background: var(--blue) !important;
}
body.dark-mode h1, 
body.dark-mode h2, 
body.dark-mode h3, 
body.dark-mode h4, 
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .section-title {
  color: var(--text) !important;
}
body.dark-mode .about-section,
body.dark-mode .about-desc,
body.dark-mode .stats-grid strong {
  color: var(--text) !important;
}
body.dark-mode .prop-title {
  color: var(--text) !important;
}
body.dark-mode .contact-info h3,
body.dark-mode .footer-col h4,
body.dark-mode .stat-box h3 {
  color: var(--text) !important;
}
body.dark-mode .stat-box {
  background: var(--navy-light) !important;
  border-color: var(--border) !important;
}
body.dark-mode .top-bar {
  background: var(--navy-light) !important;
}
body.dark-mode .tb-phone-label,
body.dark-mode .tb-phone-num,
body.dark-mode .tb-divider,
body.dark-mode .tb-mega-btn {
  color: var(--text) !important;
}


/* Floating WhatsApp Button */
.float-wa {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}
.float-wa:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  color: #fff;
}
.float-wa i {
  margin-top: 2px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}

/* Mobile Side Menu */
.mobile-side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  z-index: 10001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-side-menu.active {
  right: 0;
}
.msm-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.msm-header img {
  height: 40px;
}
.msm-close {
  font-size: 24px;
  cursor: pointer;
  color: var(--navy);
}
.msm-nav {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}
.msm-nav a {
  padding: 15px 20px;
  color: var(--navy);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f9f9f9;
  transition: background 0.2s;
}
.msm-nav a:hover, .msm-nav a.active {
  background-color: #f1f5f9;
  color: var(--red);
}
.msm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.msm-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Enhancements for mobile at 768px */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .top-bar .container {
    justify-content: space-between;
  }
  .float-wa {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 15px;
    right: 15px;
  }
  .hero-search-tabs {
    flex-wrap: wrap;
  }
  .search-tab {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    font-size: 13px;
  }
  .prop-meta {
    font-size: 13px;
    flex-wrap: wrap;
  }
}

/* ============================================================
   PROFESSIONAL UPGRADE - ANIMATIONS & EFFECTS
   ============================================================ */

/* Scroll Fade-in Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky Header Shrink */
.main-header {
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.main-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.main-header.scrolled .site-logo {
  font-size: 24px;
  transition: font-size 0.3s ease;
}

/* Property Card Premium Hover */
.property-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.property-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.property-item .prop-img-side img,
.prop-card-img img {
  transition: transform 0.5s ease;
}
.property-item:hover .prop-img-side img,
.prop-card:hover .prop-card-img img {
  transform: scale(1.08);
}
.prop-img-side, .prop-card-img {
  overflow: hidden;
}

/* WHY CHOOSE US SECTION */
.why-choose-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #003D6E 100%);
  color: #fff;
  margin: 40px 0;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.why-choose-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}
.why-choose-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
}
.why-choose-icon {
  font-size: 42px;
  margin-bottom: 18px;
  display: block;
}
.why-choose-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-choose-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 60px 0 40px;
}
.testimonials-section h2 {
  text-align: center;
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.testimonial-card::before {
  content: '\201C';
  font-size: 60px;
  color: var(--red);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 15px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-author-info strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}
.testimonial-author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* LIGHTBOX */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.92);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10003;
  transition: 0.3s;
}
.lightbox-close:hover { color: var(--red); transform: scale(1.2); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  z-index: 10003;
  transition: 0.3s;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.25); }
.lightbox-arrow.left { left: 20px; }
.lightbox-arrow.right { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* MOBILE BOTTOM NAVIGATION */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 9998;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
}
.mobile-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  gap: 3px;
  transition: 0.2s;
  padding: 4px 8px;
}
.mob-nav-item i {
  font-size: 20px;
}
.mob-nav-item.active,
.mob-nav-item:hover {
  color: var(--red);
}

/* SHARE BUTTONS */
.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  text-decoration: none;
  color: #fff;
}
.share-btn.whatsapp { background: #25d366; }
.share-btn.whatsapp:hover { background: #128C7E; }
.share-btn.copy-link { background: var(--navy); }
.share-btn.copy-link:hover { background: var(--navy-light); }

/* RESPONSIVE UPGRADES */
@media (max-width: 768px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 70px; }
  .float-wa { bottom: 80px; }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section h2 { font-size: 22px; }
  .why-choose-card { padding: 20px 15px; }
  .why-choose-icon { font-size: 32px; }
  .lightbox-arrow { font-size: 24px; padding: 10px; }
  .share-buttons { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .why-choose-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROPERTY DETAIL REDESIGN (ANTALYA HOMES STYLE)
   ============================================================ */

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .separator { color: #cbd5e1; font-size: 11px; }

.detail-page-wrapper {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 30px;
  margin-top: 20px;
  align-items: start;
}

/* Left Column */
.detail-left-col {
  min-width: 0; /* Prevents flex/grid blowouts */
}
.detail-main-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.detail-location-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.detail-location-subtitle i {
  color: var(--red);
}

/* Gallery */
.detail-gallery-container {
  margin-bottom: 30px;
  position: relative;
}
.detail-main-img-box {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #f0f0f0;
  position: relative;
}
.detail-main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.detail-main-img-box:hover img {
  transform: scale(1.02);
}
.detail-badge-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--red);
  color: #fff;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 12px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 10;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.detail-fav-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.detail-fav-overlay:hover {
  color: var(--red);
  transform: scale(1.1);
}
.detail-thumbs-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.detail-thumbs-scroll::-webkit-scrollbar { height: 6px; }
.detail-thumbs-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.detail-thumb {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s;
  border: 2px solid transparent;
}
.detail-thumb:hover, .detail-thumb.active {
  opacity: 1;
}
.detail-thumb.active {
  border-color: var(--red);
}

/* Specs Table */
.detail-specs-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
}
.detail-specs-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.detail-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}
.spec-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
}
.spec-label {
  color: var(--text-muted);
  font-size: 14px;
}
.spec-value {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}

/* Description */
.detail-desc-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
}
.detail-desc-text {
  color: #444;
  line-height: 1.8;
  font-size: 15px;
}

/* Right Column (Sidebar) */
.detail-right-col {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Price Box */
.sidebar-price-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.sidebar-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
}
.sidebar-ref {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Contact Form Box */
.sidebar-contact-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.sidebar-agent {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.sidebar-agent-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.sidebar-agent-info h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}
.sidebar-agent-info p {
  font-size: 13px;
  color: var(--text-muted);
}
.sidebar-form input, .sidebar-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}
.sidebar-form button {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.sidebar-form button:hover {
  background: var(--navy-light);
}
.sidebar-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}
.sidebar-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.sidebar-action-btn.wa {
  background: #25d366;
  color: #fff;
}
.sidebar-action-btn.wa:hover { background: #128C7E; }
.sidebar-action-btn.call {
  background: var(--bg-light);
  color: var(--navy);
  border: 1px solid var(--border);
}
.sidebar-action-btn.call:hover { background: #e2e8f0; }

/* Similar Props in Detail */
.detail-similar-title {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

@media (max-width: 992px) {
  .detail-page-wrapper {
    grid-template-columns: 1fr;
  }
  .detail-right-col {
    position: static;
  }
  .detail-main-img-box {
    height: 350px;
  }
  .detail-specs-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .detail-main-img-box {
    height: 250px;
  }
}

/* Jasmine Group 2026 homepage refresh */
:root {
  --sea: #0f766e;
  --sea-deep: #083f3b;
  --sand: #f6f1e8;
  --ink: #12231e;
  --gold: #d59a3a;
}

body { background: #fffdf9; }
.main-header { border-bottom-color: rgba(18, 35, 30, .1); box-shadow: 0 8px 30px rgba(18, 35, 30, .06); }
.site-logo { color: var(--ink); font-family: 'Playfair Display', Georgia, serif; letter-spacing: .02em; }
.site-logo span, .main-nav a:hover, .main-nav a.active { color: var(--sea); }
.main-nav a { color: var(--ink); font-size: 12px; letter-spacing: .07em; }
.main-nav a:focus-visible, .search-tab:focus-visible, .btn-search-main:focus-visible, .location-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.hero-section { height: min(760px, calc(100vh - 88px)); min-height: 620px; background: var(--sea-deep); }
.hero-section .swiper-slide::after { background: linear-gradient(90deg, rgba(5, 29, 27, .78) 4%, rgba(5, 29, 27, .36) 58%, rgba(5, 29, 27, .16)); }
.hero-content { position: absolute; z-index: 6; top: 16%; left: 50%; transform: translateX(-50%); width: 100%; color: #fff; pointer-events: none; }
.hero-eyebrow, .section-kicker { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .18em; margin-bottom: 14px; }
.hero-eyebrow i { margin-right: 7px; }
.hero-content h1 { max-width: 720px; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(44px, 5.5vw, 80px); line-height: .98; letter-spacing: -.045em; }
.hero-lead { max-width: 510px; margin-top: 22px; font-size: clamp(16px, 1.55vw, 20px); color: rgba(255, 255, 255, .86); }
.slide-caption { display: none; }
.hero-search { bottom: 32px; padding: 0 20px; }
.hero-search-tabs { align-self: flex-start; width: min(1080px, 100%); margin: 0 auto 8px; display: flex; gap: 6px; }
.search-tab { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(5, 29, 27, .45); color: #fff; font-size: 11px; letter-spacing: .12em; padding: 10px 18px; }
.search-tab.active { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.hero-search-inner { max-width: 1080px; padding: 18px; border: 1px solid rgba(255,255,255,.3); border-radius: 16px; background: rgba(255,255,255,.93); box-shadow: 0 24px 60px rgba(0,0,0,.18); backdrop-filter: blur(18px); }
.search-text-row input, .search-selects-row select { background: #fff; border: 1px solid #dfe6e1; color: var(--ink); border-radius: 8px; }
.search-selects-row select { font-size: 12px; }
.search-btn-row { align-items: stretch; }
.btn-more-filters { border: 1px solid #dfe6e1; border-radius: 8px; background: #fff; color: var(--ink); }
.btn-search-main { border-radius: 8px; background: var(--sea); color: #fff; letter-spacing: .08em; }
.btn-search-main:hover { background: var(--sea-deep); }

.trust-ribbon { position: relative; z-index: 11; background: var(--ink); color: #fff; }
.trust-ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-ribbon-grid > div { min-height: 105px; padding: 22px 20px; display: flex; gap: 13px; align-items: center; border-right: 1px solid rgba(255,255,255,.12); }
.trust-ribbon-grid > div:last-child { border-right: 0; }
.trust-ribbon i { color: var(--gold); font-size: 19px; }
.trust-ribbon strong, .trust-ribbon span { display: block; }
.trust-ribbon strong { font-size: 13px; letter-spacing: .02em; }
.trust-ribbon span { color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.4; }

.location-explorer { padding-top: 100px; padding-bottom: 42px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-heading h2 { color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(30px, 3vw, 43px); line-height: 1; }
.text-link { color: var(--sea); font-size: 13px; font-weight: 800; white-space: nowrap; }
.text-link i { margin-left: 7px; transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.location-card { position: relative; isolation: isolate; display: flex; min-height: 280px; padding: 24px; flex-direction: column; justify-content: end; overflow: hidden; color: #fff; background-size: cover; background-position: center; transition: transform .3s ease, box-shadow .3s ease; }
.location-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6, 24, 20, .05), rgba(6, 24, 20, .83)); }
.location-card:hover { transform: translateY(-6px); box-shadow: 0 18px 35px rgba(18,35,30,.22); }
.location-card span { font-family: 'Playfair Display', Georgia, serif; font-size: 30px; line-height: 1; }
.location-card small { margin-top: 9px; color: rgba(255,255,255,.8); font-size: 12px; }
.location-oba { background-image: url('images/apartment.jpg'); }
.location-mahmutlar { background-image: url('images/hero1.jpg'); }
.location-kargicak { background-image: url('images/villa.jpg'); }
.location-center { background-image: url('images/office.jpg'); }

.about-section { background: var(--sand); border-left: 4px solid var(--gold); }
.section-title-bar h2 { color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: 30px; }
.section-title-bar h2::after { background: var(--gold); }
.property-item { border-color: #e3e8e4; border-radius: 12px; overflow: hidden; }
.property-item:hover { border-color: rgba(15,118,110,.35); }
.prop-price, .prop-title:hover { color: var(--sea); }
.property-empty-state { min-height: 180px; display: flex; align-items: center; gap: 20px; padding: 30px; border: 1px dashed rgba(15,118,110,.36); border-radius: 12px; background: #f3faf8; color: var(--ink); }
.property-empty-state > i { color: var(--gold); font-size: 30px; }
.property-empty-state h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; margin-bottom: 4px; }
.property-empty-state p { color: var(--text-muted); font-size: 13px; }
.property-empty-state a { margin-left: auto; white-space: nowrap; color: var(--sea); font-size: 12px; font-weight: 800; }
.why-choose-section { background: linear-gradient(118deg, var(--sea-deep), var(--sea)); }
.why-choose-icon { color: var(--gold); }
.why-choose-icon i { font-size: 28px; }
.testimonial-card { border-top: 3px solid var(--gold); }

@media (max-width: 900px) {
  .hero-section { min-height: 650px; }
  .hero-content { top: 11%; }
  .trust-ribbon-grid { grid-template-columns: 1fr 1fr; }
  .trust-ribbon-grid > div:nth-child(2) { border-right: 0; }
  .trust-ribbon-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .location-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .main-header { padding: 12px 0; }
  .site-logo { font-size: 24px; }
  .hero-section { min-height: 720px; height: auto; }
  .hero-content { top: 8%; padding: 0 24px; }
  .hero-content h1 { font-size: 45px; }
  .hero-lead { display: none; }
  .hero-search { bottom: 24px; }
  .hero-search-inner { padding: 12px; }
  .search-selects-row { display: grid; grid-template-columns: 1fr 1fr; }
  .search-btn-row { flex-direction: column-reverse; }
  .trust-ribbon-grid > div { min-height: 86px; padding: 16px 10px; }
  .trust-ribbon strong { font-size: 11px; }
  .trust-ribbon span { font-size: 10px; }
  .location-explorer { padding-top: 64px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .location-card { min-height: 200px; padding: 18px; }
  .location-card span { font-size: 25px; }
  .property-empty-state { align-items: flex-start; flex-wrap: wrap; }
  .property-empty-state a { width: 100%; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Trust, lead capture and legal foundation */
.client-journey { padding: 92px 0; }
.client-journey .section-heading { max-width: 1200px; margin-right: auto; margin-left: auto; padding: 0 20px; }
.journey-grid { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #dfe5e1; }
.journey-grid article { min-height: 250px; padding: 30px; background: #fffdf9; }
.journey-grid span { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid rgba(15,118,110,.3); border-radius: 50%; color: var(--sea); font-size: 12px; font-weight: 800; }
.journey-grid h3 { margin: 45px 0 12px; color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: 22px; }
.journey-grid p { color: var(--text-muted); font-size: 13px; line-height: 1.75; }

.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; }
.consent-field { display: flex !important; align-items: flex-start; gap: 9px; margin: 4px 0 15px; color: var(--text-muted); font-size: 11px; line-height: 1.45; cursor: pointer; }
.consent-field input { width: 16px !important; min-width: 16px; height: 16px; margin-top: 1px; accent-color: var(--sea); }
.consent-field a { color: var(--sea); text-decoration: underline; }
.form-status { min-height: 18px; margin-top: 12px; font-size: 12px; line-height: 1.5; }
.form-status.is-success { color: #176b43; }
.form-status.is-error { color: #a52a2a; }
button[type="submit"]:disabled { cursor: wait; opacity: .65; }

.price-verification { margin: 12px 0 0; color: #557069; font-size: 11px; line-height: 1.45; }
.price-verification i { color: var(--sea); margin-right: 5px; }
.sidebar-agent-mark { display: grid; width: 58px; height: 58px; flex: 0 0 58px; place-items: center; border-radius: 50%; background: var(--sand); color: var(--sea); font-size: 20px; }
.sidebar-form h4 { margin-bottom: 15px; color: var(--ink); font-size: 16px; }
.sidebar-form > label:not(.consent-field) { display: block; margin: 9px 0 5px; color: var(--ink); font-size: 11px; font-weight: 700; }
.sidebar-form > label small { color: var(--text-muted); font-weight: 400; }
.similar-property-card { display: block; overflow: hidden; border: 1px solid var(--border); border-radius: 10px; background: var(--card-bg); text-decoration: none; transition: transform .3s ease, box-shadow .3s ease; }
.similar-property-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,.12); }
.similar-property-card img { width: 100%; height: 180px; object-fit: cover; }
.similar-property-card h4 { margin: 0 0 8px; color: var(--navy); font-size: 15px; line-height: 1.3; }
.similar-property-card p { margin: 0 0 8px; color: var(--text-muted); font-size: 13px; }

.footer-legal-links { display: inline-flex; flex-wrap: wrap; gap: 12px; margin-left: 18px; }
.footer-legal-links a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.legal-page { min-height: 100vh; background: linear-gradient(145deg, #fffdf9 0%, #f6f1e8 100%); color: var(--ink); }
.legal-header { display: flex; max-width: 1100px; margin: 0 auto; padding: 26px 24px; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(18,35,30,.12); }
.legal-header > a:last-child { color: var(--sea); font-size: 13px; font-weight: 800; }
.legal-content { max-width: 800px; margin: 0 auto; padding: 80px 24px 120px; }
.legal-content h1 { margin-bottom: 8px; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(40px, 6vw, 64px); line-height: 1; }
.legal-content h2 { margin: 38px 0 10px; font-family: 'Playfair Display', Georgia, serif; font-size: 24px; }
.legal-content p { color: #485b55; font-size: 15px; line-height: 1.85; }
.legal-content a { color: var(--sea); text-decoration: underline; text-underline-offset: 3px; }
.legal-updated { margin-bottom: 50px; font-size: 12px !important; }
.legal-back { display: inline-block; margin-top: 35px; font-weight: 800; }

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

@media (max-width: 640px) {
  .client-journey { padding: 64px 0; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid article { min-height: auto; }
  .journey-grid h3 { margin-top: 25px; }
  .footer-legal-links { display: flex; justify-content: center; margin: 12px 0 0; }
  .legal-content { padding-top: 58px; }
}

/* Premium property marketplace */
.listing-hero { position: relative; overflow: hidden; padding: 92px 0 64px; color: white; background: linear-gradient(110deg, rgba(8,63,59,.96), rgba(15,118,110,.82)), url('images/hero1.jpg') center 56%/cover; text-align: left; }
.listing-hero::after { content: ''; position: absolute; right: -100px; bottom: -210px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.listing-hero .container { position: relative; z-index: 1; }
.listing-hero .section-kicker { color: var(--gold); }
.listing-hero h1 { max-width: 720px; margin: 0; color: white; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(42px, 5vw, 68px); line-height: 1; }
.listing-hero-lead { max-width: 650px; margin: 20px 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; }
.listing-hero .breadcrumb { justify-content: flex-start !important; color: rgba(255,255,255,.6); }
.listing-hero .breadcrumb a { color: white; }
.listing-trust-points { display: flex; flex-wrap: wrap; gap: 12px 25px; margin-top: 28px; }
.listing-trust-points span { color: rgba(255,255,255,.82); font-size: 12px; }
.listing-trust-points i { margin-right: 7px; color: var(--gold); }
.listing-layout { align-items: start; gap: 24px; }
.listing-layout .filter-sidebar { position: sticky; top: 24px; width: 280px; max-height: calc(100vh - 48px); overflow: auto; flex: 0 0 280px; padding: 25px; border: 1px solid #dfe7e2; border-radius: 10px; background: #fffdf9; box-shadow: 0 12px 36px rgba(18,35,30,.06); }
.filter-heading { margin-bottom: 25px; padding-bottom: 18px; border-bottom: 1px solid #e4e9e6; }
.filter-heading h3 { margin: 0; color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: 25px; text-transform: none; }
.filter-sidebar .filter-group label { color: var(--ink); font-size: 10px; letter-spacing: .08em; }
.filter-sidebar .filter-group input, .filter-sidebar .filter-group select { width: 100%; min-height: 44px; padding: 0 12px; border: 1px solid #dce4df; border-radius: 6px; color: var(--ink); background: white; }
.filter-sidebar .filter-group input:focus, .filter-sidebar .filter-group select:focus { border-color: var(--sea); outline: 3px solid rgba(15,118,110,.1); }
.btn-filter-search { border-radius: 6px; background: var(--sea); }
.btn-filter-reset { border-radius: 6px; color: var(--sea); }
.filter-advisor { display: grid; margin-top: 24px; padding: 20px; border-radius: 8px; color: white; background: var(--ink); }
.filter-advisor i { margin-bottom: 18px; color: var(--gold); font-size: 21px; }
.filter-advisor strong { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; }
.filter-advisor span { margin: 8px 0 14px; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.55; }
.filter-advisor a { color: var(--gold); font-size: 11px; font-weight: 800; }
.listings-area { min-width: 0; flex: 1; }
.listings-area .sort-bar { min-height: 67px; margin-bottom: 18px; padding: 0 18px; border: 1px solid #dfe7e2; border-radius: 9px; background: white; }
.sort-bar .section-kicker { margin: 0 0 4px; }
.sort-bar strong { color: var(--ink); font-size: 15px; }
.sort-bar select { min-width: 190px; padding: 10px 12px; border: 1px solid #dce4df; border-radius: 6px; background: white; }
.listing-discovery-tools { display: flex; min-height: 46px; margin: -7px 0 18px; align-items: center; justify-content: space-between; gap: 12px; }
.active-filter-chips { display: flex; flex: 1; flex-wrap: wrap; align-items: center; gap: 7px; }
.active-filter-chips > button, .listing-discovery-actions button { padding: 8px 10px; border: 1px solid #d8e2dd; border-radius: 999px; color: var(--sea-deep); background: white; font-size: 9px; font-weight: 800; cursor: pointer; }
.active-filter-chips > button i { margin-left: 5px; color: #8a9994; }
.active-filter-chips .clear-all-filters { border-color: transparent; color: #8b4a34; background: #fff3ed; }
.filter-result-summary { color: var(--ink); font-size: 11px; font-weight: 800; }
.filter-empty-note { color: #7a8b85; font-size: 10px; }
.listing-discovery-actions { display: flex; flex: 0 0 auto; gap: 7px; }
.listing-discovery-actions button { border-radius: 6px; color: var(--sea); }
.listing-discovery-actions button:hover { color: white; background: var(--sea); }
.property-list.listing-grid, .property-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.property-card-v2 { display: block; min-width: 0; border: 1px solid #dfe7e2; border-radius: 10px; overflow: hidden; background: white; box-shadow: none; }
.property-card-v2:hover { border-color: rgba(15,118,110,.45); box-shadow: 0 18px 44px rgba(18,35,30,.12); transform: translateY(-4px); }
.property-card-v2 .property-card-media { width: 100%; height: 250px; flex: none; }
.property-card-v2 .prop-swiper { height: 100%; }
.property-card-v2 .prop-swiper img { width: 100%; height: 100%; object-fit: cover; }
.property-card-v2 .property-card-content { display: block; min-width: 0; padding: 21px; }
.property-card-eyebrow { margin-bottom: 10px; color: var(--sea); font-size: 9px; font-weight: 800; letter-spacing: .11em; }
.property-card-v2 .prop-title { display: -webkit-box; min-height: 48px; overflow: hidden; color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: 20px; line-height: 1.2; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.property-card-v2 .prop-location { margin: 12px 0 16px; overflow: hidden; color: #667770; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.property-card-v2 .prop-rooms { display: flex; padding: 13px 0; gap: 14px; border-top: 1px solid #edf0ee; border-bottom: 1px solid #edf0ee; }
.property-card-v2 .prop-rooms span { color: #4d615a; font-size: 11px; }
.property-card-v2 .prop-rooms i { color: var(--sea); }
.property-card-v2 .prop-footer { margin-top: 17px; align-items: end; }
.property-card-v2 .prop-footer small { display: block; margin-bottom: 3px; color: #82908b; font-size: 9px; text-transform: uppercase; }
.property-card-v2 .prop-price { color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: 22px; }
.property-card-v2 .prop-actions { display: flex; align-items: center; gap: 7px; }
.property-card-v2 .wishlist-btn { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid #dfe7e2 !important; border-radius: 50%; background: white !important; color: var(--ink); cursor: pointer; }
.property-quick-contact { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: white; background: #25a765; }
.property-card-v2 .prop-btn.primary { padding: 11px 13px; border-radius: 5px; background: var(--sea); font-size: 10px; }
.property-card-verification { margin: 13px 0 0; color: #7a8b85; font-size: 9px; }
.property-card-verification i { margin-right: 4px; color: var(--sea); }
.media-pending-badge { position: absolute; z-index: 5; left: 12px; bottom: 36px; padding: 7px 9px; border-radius: 4px; color: white; background: rgba(8,63,59,.88); font-size: 9px; font-weight: 700; }
.detail-media-notice { position: absolute; z-index: 5; bottom: 15px; left: 15px; padding: 9px 12px; border-radius: 5px; color: white; background: rgba(8,63,59,.9); font-size: 11px; }
.listing-empty-state { grid-column: 1 / -1; padding: 70px 30px; border: 1px dashed rgba(15,118,110,.35); border-radius: 10px; background: #f4faf8; text-align: center; }
.listing-empty-state i { color: var(--gold); font-size: 30px; }
.listing-empty-state h3 { margin: 18px 0 8px; color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: 27px; }
.listing-empty-state p { color: var(--text-muted); }
.listing-empty-state a { display: inline-block; margin-top: 15px; color: var(--sea); font-weight: 800; }
.load-more-properties { display: block; width: 100%; margin-top: 24px; padding: 15px; border: 1px solid rgba(15,118,110,.35); border-radius: 6px; color: var(--sea); background: #f4faf8; font-size: 10px; font-weight: 800; letter-spacing: .06em; cursor: pointer; }
.load-more-properties:hover { color: white; background: var(--sea); }
.load-more-properties[hidden] { display: none; }
.listing-support { margin: 70px 0 20px; padding: 42px; color: white; background: linear-gradient(120deg, var(--ink), var(--sea-deep)); }
.listing-support h2 { max-width: 600px; margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 4vw, 43px); }
.listing-support-grid { display: grid; margin: 35px 0; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.13); }
.listing-support-grid span { padding: 22px; border-right: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.76); font-size: 12px; }
.listing-support-grid span:last-child { border-right: 0; }
.listing-support-grid i { display: block; margin-bottom: 12px; color: var(--gold); font-size: 20px; }
.listing-support > a { color: var(--gold); font-size: 12px; font-weight: 800; }
.detail-feature-box, .detail-distance-box { margin-top: 25px; padding: 25px; border: 1px solid #dfe7e2; border-radius: 9px; background: white; }
.detail-feature-box .detail-specs-title i, .detail-distance-box .detail-specs-title i { margin-right: 8px; color: var(--sea); }
.detail-feature-grid { display: grid; margin-top: 20px; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.detail-feature-grid span { padding: 12px; border-radius: 5px; color: #42544e; background: #f3f7f5; font-size: 11px; }
.detail-feature-grid span i { margin-right: 7px; color: var(--sea); }
.detail-distance-grid { display: grid; margin-top: 20px; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.detail-distance-grid > div { display: grid; padding: 18px; grid-template-columns: auto 1fr; align-items: center; gap: 4px 12px; border: 1px solid #e0e7e3; border-radius: 7px; }
.detail-distance-grid i { grid-row: span 2; color: var(--gold); font-size: 22px; }
.detail-distance-grid span { color: #7a8b85; font-size: 10px; }
.detail-distance-grid strong { color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: 22px; }
.detail-distance-box > p { margin: 14px 0 0; color: #7a8b85; font-size: 9px; }

@media (max-width: 1050px) {
  .listing-layout { display: block; }
  .listing-layout .filter-sidebar { position: static; width: 100%; max-height: none; margin-bottom: 24px; overflow: visible; }
  .filter-sidebar .filter-advisor { display: none; }
}

@media (max-width: 700px) {
  .listing-hero { padding: 65px 0 45px; }
  .listing-hero h1 { font-size: 41px; }
  .listing-trust-points { display: grid; }
  .property-list.listing-grid, .property-list { grid-template-columns: 1fr; }
  .property-card-v2 .property-card-media { height: 245px; }
  .listing-support { padding: 28px 22px; }
  .listing-support-grid { grid-template-columns: 1fr 1fr; }
  .listing-support-grid span:nth-child(2) { border-right: 0; }
  .listing-support-grid span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .listing-discovery-tools { align-items: stretch; flex-direction: column; }
  .listing-discovery-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .listing-discovery-actions button { width: 100%; }
  .detail-feature-grid { grid-template-columns: 1fr 1fr; }
  .detail-distance-grid { grid-template-columns: 1fr; }
}

/* Editorial service, region and trust pages */
.editorial-hero { position: relative; overflow: hidden; padding: 125px 0 100px; color: white; background: linear-gradient(122deg, var(--ink), var(--sea-deep)); }
.editorial-hero::before { content: ''; position: absolute; inset: 0; opacity: .2; background: repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,.14) 25%); }
.editorial-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr); gap: 80px; align-items: end; }
.editorial-hero h1 { max-width: 850px; margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(50px, 6.5vw, 86px); line-height: .98; letter-spacing: -.045em; }
.editorial-hero > .container > div > p:not(.section-kicker), .editorial-hero-grid > div:first-child > p:not(.section-kicker) { max-width: 680px; margin: 27px 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.75; }
.editorial-cta { display: inline-flex; padding: 15px 19px; align-items: center; gap: 28px; border-radius: 5px; color: var(--ink); background: var(--gold); font-size: 12px; font-weight: 800; }
.editorial-hero-note { padding: 28px; border-top: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.editorial-hero-note > span { display: block; margin-bottom: 55px; color: var(--gold); font-family: 'Playfair Display', Georgia, serif; font-size: 44px; }
.editorial-hero-note strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 24px; }
.editorial-hero-note p { color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.7; }
.content-section { padding-top: 100px; padding-bottom: 100px; }
.service-matrix { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #dfe7e2; border-left: 1px solid #dfe7e2; }
.service-matrix article { position: relative; min-height: 340px; padding: 32px; border-right: 1px solid #dfe7e2; border-bottom: 1px solid #dfe7e2; background: #fffdf9; transition: background .25s ease, transform .25s ease; }
.service-matrix article:hover { z-index: 2; background: var(--sand); transform: translateY(-5px); }
.service-matrix article > i { color: var(--sea); font-size: 27px; }
.service-matrix article > span { position: absolute; top: 32px; right: 32px; color: #9aa8a2; font-size: 11px; }
.service-matrix h3 { margin: 70px 0 14px; color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: 25px; }
.service-matrix p { color: var(--text-muted); font-size: 13px; line-height: 1.75; }
.service-matrix a { position: absolute; bottom: 32px; color: var(--sea); font-size: 11px; font-weight: 800; }
.process-band { padding: 90px 0; color: white; background: var(--ink); }
.process-band > .container > div:first-child { display: flex; margin-bottom: 50px; align-items: end; justify-content: space-between; }
.process-band h2 { max-width: 580px; margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(34px, 4vw, 50px); }
.process-band ol { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(5, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.process-band li { position: relative; padding: 28px 20px 0 0; }
.process-band li::before { content: ''; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.process-band li span { display: block; color: rgba(255,255,255,.4); font-size: 10px; }
.process-band li strong { display: block; margin: 25px 0 8px; font-family: 'Playfair Display', Georgia, serif; font-size: 19px; }
.process-band li p { color: rgba(255,255,255,.55); font-size: 11px; }
.content-cta { display: flex; margin-top: 90px; margin-bottom: 90px; padding: 50px; align-items: end; justify-content: space-between; gap: 30px; border-left: 4px solid var(--gold); background: var(--sand); }
.content-cta h2 { max-width: 680px; margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(30px, 4vw, 45px); line-height: 1.1; }
.content-cta > a, .feedback-cta > a { flex: 0 0 auto; padding: 15px 20px; border-radius: 5px; color: white; background: var(--sea); font-size: 11px; font-weight: 800; }
.compact-footer { padding: 45px 0; }
.compact-footer > .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.compact-footer p { max-width: 430px; margin-top: 12px; color: #8494aa; font-size: 12px; }
.compact-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.compact-footer nav a { color: #9aa7b7; font-size: 11px; }
.region-guide-grid { padding-top: 90px; padding-bottom: 70px; }
.region-guide-grid article { display: grid; min-height: 360px; padding: 55px 0; grid-template-columns: 180px 1fr; border-bottom: 1px solid #dfe7e2; }
.region-number { color: var(--gold); font-family: 'Playfair Display', Georgia, serif; font-size: 60px; }
.region-guide-grid h2 { margin: 0 0 16px; color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(42px, 6vw, 70px); }
.region-guide-grid article p:not(.section-kicker) { max-width: 700px; color: var(--text-muted); font-size: 15px; line-height: 1.8; }
.region-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.region-tags span { padding: 7px 10px; border: 1px solid rgba(15,118,110,.25); border-radius: 99px; color: var(--sea); font-size: 10px; font-weight: 700; }
.region-guide-grid article a { color: var(--sea); font-size: 12px; font-weight: 800; }
.region-guide-grid article a i { margin-left: 8px; }
.region-hub-grid { display: grid; padding-top: 90px; padding-bottom: 90px; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.region-hub-card { overflow: hidden; border: 1px solid #dfe7e2; background: #fffdf9; transition: transform .25s ease, box-shadow .25s ease; }
.region-hub-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(18,35,30,.11); }
.region-hub-media { position: relative; display: block; height: 285px; overflow: hidden; }
.region-hub-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(18,35,30,.64)); }
.region-hub-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.region-hub-card:hover .region-hub-media img { transform: scale(1.035); }
.region-hub-media > span { position: absolute; z-index: 1; right: 22px; bottom: 17px; color: white; font-family: 'Playfair Display', Georgia, serif; font-size: 42px; }
.region-hub-card > div { padding: 32px; }
.region-hub-card h2 { margin: 9px 0 14px; font-family: 'Playfair Display', Georgia, serif; font-size: 35px; }
.region-hub-card h2 a { color: var(--ink); }
.region-hub-card > div > p:not(.section-kicker) { min-height: 70px; color: var(--text-muted); font-size: 13px; line-height: 1.75; }
.region-hub-footer { display: flex; padding-top: 18px; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid #dfe7e2; }
.region-hub-footer strong { color: var(--ink); font-size: 11px; }
.region-hub-footer strong span { color: var(--sea); font-family: 'Playfair Display', Georgia, serif; font-size: 22px; }
.region-hub-footer > a { color: var(--sea); font-size: 11px; font-weight: 800; }
.region-detail-hero { position: relative; overflow: hidden; padding: 105px 0 90px; color: white; background: linear-gradient(125deg, var(--ink), var(--sea-deep)); }
.region-detail-hero::before { content: ''; position: absolute; top: -220px; right: 38%; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.region-detail-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: 80px; align-items: center; }
.breadcrumb-link { display: inline-flex; margin-bottom: 45px; align-items: center; gap: 9px; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.region-detail-hero h1 { max-width: 760px; margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(50px, 6vw, 80px); line-height: .98; letter-spacing: -.04em; }
.region-detail-hero-grid > div > p:not(.section-kicker) { max-width: 680px; margin: 25px 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; }
.region-detail-hero .region-tags span { color: #d5c18f; border-color: rgba(213,193,143,.38); }
.region-detail-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.region-detail-actions a { padding: 14px 17px; border: 1px solid rgba(255,255,255,.25); border-radius: 5px; color: white; font-size: 10px; font-weight: 800; }
.region-detail-actions a:first-child { color: var(--ink); border-color: var(--gold); background: var(--gold); }
.region-detail-hero figure { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); }
.region-detail-hero figure img { width: 100%; height: 500px; object-fit: cover; }
.region-detail-hero figcaption { padding: 13px 16px; color: rgba(255,255,255,.58); font-size: 9px; line-height: 1.5; }
.region-proof-strip { color: white; background: var(--sea); }
.region-proof-strip > .container { display: grid; min-height: 120px; grid-template-columns: auto 1fr auto; align-items: center; gap: 45px; }
.region-proof-strip small, .region-proof-strip strong { display: block; }
.region-proof-strip small { color: rgba(255,255,255,.55); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.region-proof-strip strong { margin-top: 5px; font-family: 'Playfair Display', Georgia, serif; font-size: 25px; }
.region-proof-strip p { color: rgba(255,255,255,.66); font-size: 11px; line-height: 1.65; }
.region-proof-strip a { color: var(--gold); font-size: 10px; font-weight: 800; }
.region-decision-section { padding-top: 95px; padding-bottom: 95px; }
.region-decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #dfe7e2; border-left: 1px solid #dfe7e2; }
.region-decision-grid article { position: relative; min-height: 400px; padding: 34px; border-right: 1px solid #dfe7e2; border-bottom: 1px solid #dfe7e2; background: white; }
.region-decision-grid article > span { position: absolute; top: 30px; right: 30px; color: #a8b4ae; font-size: 10px; }
.region-decision-grid article > i { color: var(--sea); font-size: 26px; }
.region-decision-grid h3 { margin: 90px 0 18px; font-family: 'Playfair Display', Georgia, serif; font-size: 27px; }
.region-decision-grid p { color: var(--text-muted); font-size: 13px; line-height: 1.8; }
.region-checklist-band { padding: 90px 0; background: var(--sand); }
.region-checklist-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.region-checklist-grid h2 { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(35px, 4vw, 52px); line-height: 1.05; }
.region-checklist-grid > div > p:not(.section-kicker) { margin-top: 22px; color: var(--text-muted); font-size: 13px; line-height: 1.8; }
.region-checklist-grid ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(18,35,30,.16); }
.region-checklist-grid li { display: grid; min-height: 105px; padding: 22px 0; grid-template-columns: 65px 1fr; align-items: center; border-bottom: 1px solid rgba(18,35,30,.16); }
.region-checklist-grid li span { color: var(--gold); font-family: 'Playfair Display', Georgia, serif; font-size: 25px; }
.region-checklist-grid li p { margin: 0; color: var(--ink); font-size: 13px; line-height: 1.7; }
.region-faq { padding-top: 90px; padding-bottom: 90px; }
.region-faq details { border-top: 1px solid #dfe7e2; }
.region-faq details:last-child { border-bottom: 1px solid #dfe7e2; }
.region-faq summary { display: flex; padding: 25px 0; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: 20px; cursor: pointer; list-style: none; }
.region-faq summary::-webkit-details-marker { display: none; }
.region-faq details[open] summary i { transform: rotate(45deg); }
.region-faq summary i { color: var(--sea); font-size: 13px; transition: transform .2s ease; }
.region-faq details > p { max-width: 850px; margin: -5px 0 25px; color: var(--text-muted); font-size: 13px; line-height: 1.8; }
.region-related { padding-bottom: 90px; }
.region-related > div:last-child { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.region-related > div:last-child > a { display: flex; min-height: 210px; padding: 28px; flex-direction: column; color: var(--ink); border: 1px solid #dfe7e2; background: #fffdf9; transition: background .2s ease, transform .2s ease; }
.region-related > div:last-child > a:hover { background: var(--sand); transform: translateY(-4px); }
.region-related a > span { font-family: 'Playfair Display', Georgia, serif; font-size: 27px; }
.region-related a > small { margin-top: 15px; color: var(--text-muted); font-size: 10px; line-height: 1.6; }
.region-related a > strong { margin-top: auto; color: var(--sea); font-size: 9px; text-transform: uppercase; }
.guide-hub-intro { display: grid; padding-top: 90px; padding-bottom: 55px; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.guide-hub-intro h2 { max-width: 720px; margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(38px, 4.5vw, 58px); line-height: 1.05; }
.guide-hub-intro > p { color: var(--text-muted); font-size: 13px; line-height: 1.85; }
.guide-hub-grid { display: grid; padding-bottom: 95px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #dfe7e2; border-left: 1px solid #dfe7e2; }
.guide-hub-grid article { position: relative; min-height: 430px; padding: 34px; border-right: 1px solid #dfe7e2; border-bottom: 1px solid #dfe7e2; background: #fffdf9; transition: background .25s ease, transform .25s ease; }
.guide-hub-grid article:hover { z-index: 2; background: var(--sand); transform: translateY(-5px); }
.guide-hub-grid article > i { color: var(--sea); font-size: 28px; }
.guide-hub-grid article > span { position: absolute; top: 34px; right: 34px; color: #9aa8a2; font-size: 10px; }
.guide-hub-grid .section-kicker { margin-top: 65px; }
.guide-hub-grid h2 { margin: 12px 0 15px; font-family: 'Playfair Display', Georgia, serif; font-size: 25px; line-height: 1.18; }
.guide-hub-grid h2 a { color: var(--ink); }
.guide-hub-grid article > p:not(.section-kicker) { color: var(--text-muted); font-size: 12px; line-height: 1.75; }
.guide-hub-grid article > a:last-child { position: absolute; bottom: 32px; color: var(--sea); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.source-standard-band { padding: 85px 0; color: white; background: var(--sea-deep); }
.source-standard-band > .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.source-standard-band h2 { max-width: 680px; margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(37px, 4.5vw, 57px); line-height: 1.05; }
.source-standard-band p:not(.section-kicker) { max-width: 700px; margin-top: 20px; color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.8; }
.source-authorities { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.source-authorities span { padding: 11px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.process-band-light { display: grid; margin-top: 90px; padding-top: 70px; padding-bottom: 70px; grid-template-columns: .7fr 1.3fr; gap: 70px; border-top: 1px solid #dfe7e2; border-bottom: 1px solid #dfe7e2; }
.process-band-light h2 { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(34px, 4vw, 49px); line-height: 1.08; }
.process-band-light ol { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(2, 1fr); gap: 1px; list-style: none; background: #dfe7e2; }
.process-band-light li { min-height: 170px; padding: 24px; background: white; }
.process-band-light li span { color: var(--gold); font-family: 'Playfair Display', Georgia, serif; font-size: 25px; }
.process-band-light li strong { display: block; margin: 30px 0 8px; font-size: 12px; }
.process-band-light li p { color: var(--text-muted); font-size: 10px; }
.guide-detail-hero { position: relative; overflow: hidden; padding: 110px 0 95px; color: white; background: linear-gradient(122deg, var(--ink), var(--sea-deep)); }
.guide-detail-hero::before { content: ''; position: absolute; inset: 0; opacity: .14; background: repeating-linear-gradient(90deg, transparent 0, transparent calc(20% - 1px), rgba(255,255,255,.15) 20%); }
.guide-detail-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 90px; align-items: end; }
.guide-detail-hero h1 { max-width: 900px; margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(49px, 6vw, 79px); line-height: .98; letter-spacing: -.04em; }
.guide-detail-hero-grid > div > p:not(.section-kicker) { max-width: 720px; margin: 26px 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; }
.guide-detail-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.guide-detail-actions a { padding: 14px 17px; border: 1px solid rgba(255,255,255,.25); border-radius: 5px; color: white; font-size: 10px; font-weight: 800; }
.guide-detail-actions a:first-child { color: var(--ink); border-color: var(--gold); background: var(--gold); }
.guide-detail-hero aside { padding: 35px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.04); }
.guide-detail-hero aside > i { display: block; margin-bottom: 90px; color: var(--gold); font-size: 48px; }
.guide-detail-hero aside small, .guide-detail-hero aside strong { display: block; }
.guide-detail-hero aside small { color: rgba(255,255,255,.48); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.guide-detail-hero aside strong { margin-top: 13px; font-family: 'Playfair Display', Georgia, serif; font-size: 19px; line-height: 1.45; }
.guide-authority-bar { color: white; background: var(--sea); }
.guide-authority-bar > .container { display: grid; min-height: 150px; grid-template-columns: auto 1fr; align-items: center; gap: 28px; }
.guide-authority-bar > .container > i { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--gold); }
.guide-authority-bar strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 22px; }
.guide-authority-bar p { max-width: 1000px; margin: 9px 0 0; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.7; }
.guide-process-section { padding-top: 95px; padding-bottom: 95px; }
.guide-process-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #dfe7e2; border-left: 1px solid #dfe7e2; }
.guide-process-grid article { min-height: 310px; padding: 35px; border-right: 1px solid #dfe7e2; border-bottom: 1px solid #dfe7e2; background: white; }
.guide-process-grid article > span { color: var(--gold); font-family: 'Playfair Display', Georgia, serif; font-size: 33px; }
.guide-process-grid h3 { margin: 65px 0 15px; font-family: 'Playfair Display', Georgia, serif; font-size: 26px; }
.guide-process-grid p { color: var(--text-muted); font-size: 13px; line-height: 1.8; }
.guide-checklist-band { padding: 90px 0; background: var(--sand); }
.guide-checklist-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.guide-checklist-layout h2 { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(36px, 4vw, 52px); line-height: 1.05; }
.guide-checklist-layout > div > p:not(.section-kicker) { margin-top: 22px; color: var(--text-muted); font-size: 13px; line-height: 1.8; }
.guide-checklist-layout ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(18,35,30,.15); }
.guide-checklist-layout li { display: grid; min-height: 84px; padding: 20px 0; grid-template-columns: 45px 1fr; align-items: center; border-bottom: 1px solid rgba(18,35,30,.15); color: var(--ink); font-size: 13px; line-height: 1.6; }
.guide-checklist-layout li i { color: var(--sea); }
.official-sources { padding-top: 95px; padding-bottom: 40px; }
.official-source-list { border-top: 1px solid #dfe7e2; }
.official-source-list a { display: grid; min-height: 92px; padding: 20px 0; grid-template-columns: 150px 1fr auto; align-items: center; gap: 24px; color: var(--ink); border-bottom: 1px solid #dfe7e2; }
.official-source-list a > span { color: var(--sea); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.official-source-list a > strong { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; }
.official-source-list a > i { color: var(--gold); }
.official-source-note { display: flex; margin-top: 18px; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 10px; line-height: 1.65; }
.official-source-note i { margin-top: 2px; color: var(--sea); }
.guide-faq { padding-top: 50px; }
.guide-related { padding-bottom: 90px; }
.guide-related > div:last-child { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.guide-related > div:last-child > a { display: flex; min-height: 260px; padding: 28px; flex-direction: column; color: var(--ink); border: 1px solid #dfe7e2; background: #fffdf9; transition: background .2s ease, transform .2s ease; }
.guide-related > div:last-child > a:hover { background: var(--sand); transform: translateY(-4px); }
.guide-related a > i { color: var(--sea); font-size: 23px; }
.guide-related a > small { margin-top: 65px; color: var(--gold); font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.guide-related a > span { margin-top: 10px; font-family: 'Playfair Display', Georgia, serif; font-size: 22px; line-height: 1.2; }
.guide-related a > strong { margin-top: auto; color: var(--sea); font-size: 9px; text-transform: uppercase; }
.team-role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.team-role-grid article { min-height: 330px; padding: 35px; border: 1px solid #dfe7e2; background: white; }
.team-role-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; color: var(--sea); background: var(--sand); font-size: 20px; }
.team-role-grid h3 { margin: 58px 0 15px; font-family: 'Playfair Display', Georgia, serif; font-size: 27px; }
.team-role-grid p { color: var(--text-muted); font-size: 13px; line-height: 1.7; }
.team-role-grid span { display: block; margin-top: 25px; color: var(--sea); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.proof-standard, .story-status, .feedback-cta { display: grid; margin-top: 10px; margin-bottom: 90px; padding: 50px; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; color: white; background: var(--sea-deep); }
.proof-standard h2, .story-status h2, .feedback-cta h2 { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(32px, 4vw, 48px); }
.proof-standard > p, .story-status p, .feedback-cta p { color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.8; }
.story-status { grid-template-columns: 1fr auto; }
.story-status > i { color: var(--gold); font-size: 70px; opacity: .6; }
.verification-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #dfe7e2; }
.verification-steps article { padding: 28px; background: white; }
.verification-steps span { color: var(--gold); font-family: 'Playfair Display', Georgia, serif; font-size: 30px; }
.verification-steps h3 { margin: 50px 0 12px; font-family: 'Playfair Display', Georgia, serif; font-size: 21px; }
.verification-steps p { color: var(--text-muted); font-size: 12px; line-height: 1.7; }
.feedback-cta { grid-template-columns: 1fr auto; }

@media (max-width: 900px) {
  .editorial-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-matrix { grid-template-columns: 1fr 1fr; }
  .process-band ol { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .verification-steps { grid-template-columns: 1fr 1fr; }
  .region-detail-hero-grid, .region-checklist-grid { grid-template-columns: 1fr; gap: 45px; }
  .region-detail-hero figure img { height: 390px; }
  .region-decision-grid { grid-template-columns: 1fr 1fr; }
  .region-proof-strip > .container { grid-template-columns: auto 1fr; }
  .region-proof-strip a { grid-column: 2; padding-bottom: 24px; }
  .guide-hub-grid { grid-template-columns: 1fr 1fr; }
  .source-standard-band > .container, .process-band-light, .guide-detail-hero-grid, .guide-checklist-layout { grid-template-columns: 1fr; gap: 45px; }
  .source-authorities { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .editorial-hero { padding: 85px 0 65px; }
  .editorial-hero h1 { font-size: 47px; }
  .service-matrix, .team-role-grid { grid-template-columns: 1fr; }
  .process-band ol { grid-template-columns: 1fr 1fr; }
  .content-cta, .proof-standard, .story-status, .feedback-cta { display: block; padding: 30px 24px; }
  .content-cta > a, .feedback-cta > a { display: inline-block; margin-top: 24px; }
  .compact-footer > .container { align-items: flex-start; flex-direction: column; }
  .compact-footer nav { justify-content: flex-start; }
  .region-guide-grid article { min-height: auto; grid-template-columns: 70px 1fr; }
  .region-number { font-size: 40px; }
  .verification-steps { grid-template-columns: 1fr; }
  .region-hub-grid, .region-decision-grid, .region-related > div:last-child { grid-template-columns: 1fr; }
  .region-hub-grid { padding-top: 55px; padding-bottom: 55px; }
  .region-hub-media { height: 230px; }
  .region-hub-card > div { padding: 25px 22px; }
  .region-hub-card > div > p:not(.section-kicker) { min-height: 0; }
  .region-hub-footer { align-items: flex-start; flex-direction: column; }
  .region-detail-hero { padding: 75px 0 60px; }
  .region-detail-hero h1 { font-size: 46px; }
  .region-detail-hero figure img { height: 300px; }
  .region-proof-strip > .container { padding-top: 25px; padding-bottom: 25px; grid-template-columns: 1fr; gap: 14px; }
  .region-proof-strip a { grid-column: auto; padding-bottom: 0; }
  .region-decision-section, .region-faq { padding-top: 65px; padding-bottom: 65px; }
  .region-decision-grid article { min-height: auto; }
  .region-checklist-band { padding: 65px 0; }
  .region-checklist-grid { gap: 35px; }
  .guide-hub-intro { padding-top: 60px; grid-template-columns: 1fr; gap: 25px; }
  .guide-hub-grid, .guide-process-grid, .guide-related > div:last-child { grid-template-columns: 1fr; }
  .guide-hub-grid { padding-bottom: 65px; }
  .guide-hub-grid article { min-height: 390px; }
  .source-standard-band { padding: 65px 0; }
  .process-band-light { margin-top: 60px; padding-top: 55px; padding-bottom: 55px; }
  .process-band-light ol { grid-template-columns: 1fr; }
  .guide-detail-hero { padding: 75px 0 60px; }
  .guide-detail-hero h1 { font-size: 45px; }
  .guide-detail-hero aside > i { margin-bottom: 50px; }
  .guide-authority-bar > .container { padding-top: 28px; padding-bottom: 28px; align-items: start; }
  .guide-process-section, .official-sources { padding-top: 65px; padding-bottom: 65px; }
  .guide-process-grid article { min-height: auto; }
  .guide-checklist-band { padding: 65px 0; }
  .guide-checklist-layout { gap: 35px; }
  .official-source-list a { grid-template-columns: 1fr auto; gap: 8px 20px; }
  .official-source-list a > span { grid-column: 1 / -1; }
}

.cookie-consent { position: fixed; z-index: 10050; right: 22px; bottom: 22px; left: 22px; display: flex; max-width: 980px; margin: 0 auto; padding: 20px 22px; align-items: center; justify-content: space-between; gap: 25px; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; color: white; background: rgba(18,35,30,.97); box-shadow: 0 18px 60px rgba(0,0,0,.25); backdrop-filter: blur(16px); }
.cookie-consent strong { display: block; margin-bottom: 5px; font-family: 'Playfair Display', Georgia, serif; font-size: 18px; }
.cookie-consent p { margin: 0; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.6; }
.cookie-consent a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-actions button { padding: 11px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 5px; color: white; background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }
.cookie-actions button[data-cookie="accept"] { border-color: var(--gold); color: var(--ink); background: var(--gold); }

@media (max-width: 640px) {
  .cookie-consent { right: 12px; bottom: 78px; left: 12px; align-items: stretch; flex-direction: column; }
  .cookie-actions button { flex: 1; }
}

/* English SEO routes */
.en-hero { min-height: 720px; padding: 145px 0 95px; color: white; background: linear-gradient(90deg, rgba(6,37,33,.88), rgba(6,37,33,.28)), url('images/hero1.jpg') center/cover; }
.en-hero h1 { max-width: 800px; margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(58px, 7vw, 96px); line-height: .93; letter-spacing: -.05em; }
.en-hero > .container > p:not(.section-kicker) { max-width: 620px; margin: 28px 0; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.7; }
.en-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.en-hero-actions a { padding: 15px 20px; border: 1px solid rgba(255,255,255,.45); border-radius: 5px; color: white; font-size: 11px; font-weight: 800; }
.en-hero-actions a:first-child { border-color: var(--gold); color: var(--ink); background: var(--gold); }
.en-filter-bar { display: grid; margin-bottom: 18px; padding: 20px; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; border: 1px solid #dfe7e2; border-radius: 9px; background: white; }
.en-filter-bar label:first-child { grid-column: span 2; }
.en-filter-bar label { color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .05em; }
.en-filter-bar input, .en-filter-bar select { display: block; width: 100%; height: 44px; margin-top: 7px; padding: 0 11px; border: 1px solid #dfe7e2; border-radius: 5px; background: white; }
.en-results-heading { display: flex; margin-bottom: 18px; align-items: end; justify-content: space-between; }
.en-results-heading p { margin: 0; }
.en-results-heading strong { font-size: 13px; }
.english-site .property-card-media { position: relative; height: 250px; overflow: hidden; }
.english-site .property-card-media > img { width: 100%; height: 100%; object-fit: cover; }
.english-site .property-card-content { padding: 21px; }
.english-site .main-nav { gap: 0; }
.english-site .main-nav a { padding-inline: 9px; font-size: 10px; letter-spacing: .055em; }
.english-site .mobile-menu-btn,
.english-site .msm-close { border: 0; background: transparent; }
.en-card-actions { display: flex; align-items: center; gap: 7px; }
.en-card-actions .prop-btn { padding-inline: 12px; }
.en-card-actions .compare-btn { flex: 0 0 38px; }
.compact-listing-hero { min-height: 330px; }
.en-detail-layout { display: grid; padding: 70px 0; grid-template-columns: minmax(0, 1.2fr) minmax(380px, .8fr); align-items: start; gap: 42px; }
.en-detail-media { position: relative; min-height: 560px; overflow: hidden; border-radius: 10px; background: #edf0eb; }
.en-detail-media > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.en-detail-summary { padding: 12px 0; }
.en-detail-summary h2 { margin: 10px 0 14px; color: var(--ink); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(38px, 4vw, 60px); line-height: 1.02; letter-spacing: -.035em; }
.en-detail-summary > p { color: #52635e; line-height: 1.8; }
.en-detail-price { display: block; margin: 26px 0; color: var(--sea); font-size: 32px; }
.en-detail-facts { display: grid; margin: 25px 0; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.en-detail-facts span { padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 700; }
.en-detail-facts small { display: block; margin-bottom: 5px; color: #778782; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.en-detail-summary .en-hero-actions { margin-top: 26px; }
.en-detail-summary .en-hero-actions a { border-color: var(--sea); color: var(--ink); }
.en-detail-summary .en-hero-actions a:first-child { color: white; background: var(--sea); }
.en-detail-summary .en-hero-actions .compare-btn { width: auto; height: auto; padding: 14px 17px; border-radius: 5px; color: var(--sea); font-size: 11px; font-weight: 800; }
.en-contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.en-contact-grid h2 { margin: 0 0 20px; font-family: 'Playfair Display', Georgia, serif; font-size: 45px; }
.en-contact-grid > div p { color: var(--text-muted); line-height: 1.75; }
.en-contact-grid > div a { display: block; margin-top: 12px; color: var(--sea); font-weight: 700; }
.en-contact-grid form { padding: 35px; border: 1px solid #dfe7e2; border-radius: 9px; background: white; }
.en-contact-grid form > label:not(.consent-field) { display: block; margin-bottom: 15px; color: var(--ink); font-size: 11px; font-weight: 800; }
.en-contact-grid input, .en-contact-grid textarea, .en-contact-grid select { display: block; width: 100%; margin-top: 7px; padding: 12px; border: 1px solid #dfe7e2; border-radius: 5px; color: var(--ink); background: white; }

@media (max-width: 850px) {
  .en-filter-bar { grid-template-columns: 1fr 1fr; }
  .en-contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .en-detail-layout { grid-template-columns: 1fr; gap: 26px; padding: 42px 0; }
  .en-detail-media,
  .en-detail-media > img { min-height: 360px; }
}

@media (max-width: 600px) {
  .en-hero { min-height: 650px; padding-top: 100px; }
  .en-hero h1 { font-size: 54px; }
  .en-filter-bar { grid-template-columns: 1fr; }
  .en-card-actions { width: 100%; }
}
.blog-index {
  min-height: 80vh;
  background:
    radial-gradient(circle at 12% 28%, rgba(189, 150, 78, 0.1), transparent 32%),
    var(--off-white);
}

.blog-index-hero {
  padding: 96px 0 88px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 24, 45, 0.96), rgba(8, 24, 45, 0.76)),
    url('images/hero1.jpg') center 58% / cover;
}

.blog-index-hero h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  color: #fff;
  font: 700 clamp(42px, 6vw, 74px) / 1.03 'Playfair Display', serif;
}

.blog-index-hero > .container > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.blog-index-content {
  padding-top: 76px;
  padding-bottom: 100px;
}

.blog-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-editorial-grid .blog-card {
  border: 1px solid rgba(8, 24, 45, 0.08);
}

@media (max-width: 900px) {
  .blog-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .blog-index-hero {
    padding: 70px 0 64px;
  }

  .blog-index-hero h1 {
    font-size: 42px;
  }

  .blog-editorial-grid {
    grid-template-columns: 1fr;
  }

  .top-bar .tb-divider {
    display: none;
  }
}

.compare-btn,
.wishlist-btn {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.compare-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(8, 24, 45, 0.12);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
}

.compare-btn.active,
.wishlist-btn.active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.compare-btn.limit-reached {
  animation: compare-shake 300ms ease 2;
}

.detail-compare-button { width: 100%; height: auto; margin-top: 14px; padding: 12px 14px; border-radius: 6px; color: var(--sea); font-size: 11px; font-weight: 800; }
.detail-compare-button.active { color: white; }
.compare-floating-action { position: fixed; z-index: 10040; right: 24px; bottom: 24px; display: none; align-items: center; gap: 9px; padding: 13px 17px; border: 0; border-radius: 999px; color: white; background: var(--ink); box-shadow: 0 14px 30px rgba(8,24,45,.26); font-size: 11px; font-weight: 800; cursor: pointer; }
.compare-floating-action #compare-count { display: grid; min-width: 20px; min-height: 20px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--gold); }
.compare-modal .collection-modal-panel { width: min(1060px, 94vw); }
.compare-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 16px; }
.compare-modal .compare-content { padding: 28px 36px 36px; }
.en-compare-card { position: relative; display: block; padding: 0; overflow: hidden; }
.en-compare-card > button { position: absolute; z-index: 2; top: 10px; right: 10px; display: grid; width: 32px; height: 32px; place-items: center; border: 0; border-radius: 50%; color: var(--ink); background: white; cursor: pointer; }
.en-compare-card > img { width: 100%; height: 150px; object-fit: cover; }
.en-compare-card > div { padding: 18px; }
.en-compare-card dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 16px 0; gap: 8px; }
.en-compare-card dl div { padding: 9px; background: #f4f7f5; }
.en-compare-card dt { color: #708078; font-size: 9px; text-transform: uppercase; }
.en-compare-card dd { margin: 4px 0 0; color: var(--ink); font-size: 12px; font-weight: 700; }
.en-compare-card a { display: block; padding: 10px; border-radius: 4px; color: white; background: var(--sea); font-size: 10px; font-weight: 800; text-align: center; }

@keyframes compare-shake {
  50% { transform: translateX(4px); }
}

.collection-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  visibility: hidden;
  place-items: center;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.collection-modal.active {
  visibility: visible;
  opacity: 1;
}

.collection-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(3, 15, 29, 0.72);
  backdrop-filter: blur(6px);
}

.collection-modal-panel {
  position: relative;
  width: min(920px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 4px;
  background: #f8f7f3;
  box-shadow: 0 36px 100px rgba(3, 15, 29, 0.34);
  transform: translateY(18px);
  transition: transform 220ms ease;
}

.collection-modal.active .collection-modal-panel {
  transform: translateY(0);
}

.collection-modal-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 36px 24px;
  border-bottom: 1px solid rgba(8, 24, 45, 0.1);
}

.collection-modal-panel h2 {
  margin: 5px 0 0;
  color: var(--navy);
  font: 700 34px/1.1 'Playfair Display', serif;
}

.collection-modal-panel > header > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(8, 24, 45, 0.14);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.collection-modal-content {
  display: grid;
  gap: 14px;
  padding: 28px 36px 36px;
}

.collection-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(8, 24, 45, 0.08);
}

.collection-item > img {
  width: 150px;
  height: 104px;
  object-fit: cover;
}

.collection-item h3 {
  margin: 5px 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.collection-item small {
  color: #6e7783;
}

.collection-item strong {
  color: var(--red);
}

.collection-item > div:last-child {
  display: grid;
  gap: 8px;
}

.collection-item a,
.collection-item button,
.collection-empty a {
  min-width: 96px;
  padding: 10px 14px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.collection-item a,
.collection-empty a {
  color: #fff;
  background: var(--navy);
}

.collection-empty,
.collection-loading {
  padding: 72px 24px;
  color: #596473;
  text-align: center;
}

.collection-empty > i {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 42px;
}

.collection-empty h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font: 700 28px/1.2 'Playfair Display', serif;
}

.collection-empty p {
  max-width: 520px;
  margin: 0 auto 26px;
}

.collection-empty a {
  display: inline-block;
}

@media (max-width: 680px) {
  .collection-modal-panel {
    max-height: calc(100vh - 20px);
  }

  .collection-modal-panel > header,
  .collection-modal-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .collection-item {
    grid-template-columns: 92px 1fr;
  }

  .collection-item > img {
    width: 92px;
    height: 92px;
  }

  .collection-item > div:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

.blog-static-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid rgba(8, 24, 45, 0.08);
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 24, 45, 0.08);
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.blog-static-article header > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-static-article h1 {
  margin: 14px 0 20px;
  color: var(--navy);
  font: 700 clamp(36px, 5vw, 58px) / 1.08 'Playfair Display', serif;
}

.blog-static-article header > p {
  max-width: 760px;
  color: #586273;
  font-size: 19px;
  line-height: 1.7;
}

.blog-static-article time {
  display: block;
  margin-top: 22px;
  color: #7b8492;
  font-size: 13px;
}

.blog-static-cover {
  width: 100%;
  max-height: 520px;
  margin: 36px 0;
  object-fit: cover;
}

.blog-static-content {
  color: #303a49;
  font-size: 17px;
  line-height: 1.9;
}

.blog-static-content h3 {
  margin: 34px 0 10px;
  color: var(--navy);
  font: 700 27px/1.2 'Playfair Display', serif;
}

.blog-static-note {
  margin-top: 46px;
  padding: 30px;
  border-left: 4px solid var(--red);
  background: #f3f5f7;
}

.blog-static-note p {
  margin: 8px 0 18px;
  color: #586273;
  line-height: 1.7;
}

.blog-static-note a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 620px) {
  .blog-static-article {
    padding: 28px 20px;
  }
}
