/* ============================================================
   Aura Life Gayrimenkul — Ana Stil Dosyası
   Renk paleti, tipografi, bileşenler ve sayfa stilleri
   ============================================================ */

:root {
  --navy: #0B1F33;
  --anthracite: #17212B;
  --gold: #C6A15B;
  --gold-dark: #A8873F;
  --gold-light: #D4B87A;
  --cream: #F0EDE6;
  --fume: #2B2D34;
  --fume-mid: #353841;
  --logo-fume: #2B2D31;
  --white: #FFFFFF;
  --gray-light: #353841;
  --text: #E8E9EB;
  --text-muted: rgba(232, 233, 235, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.38);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --header-h: 120px;
  --transition: 0.3s ease;
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", "Inter", system-ui, sans-serif;
  --container: 1200px;
  --whatsapp: #25D366;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--fume);
  overflow-x: hidden;
}

body.menu-open,
body.drawer-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.section {
  padding: 90px 0;
}

.section--cream {
  background: var(--fume-mid);
}

.section--gray {
  background: var(--fume-mid);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.section--navy .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section--navy .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.875rem;
  min-height: 40px;
}

.btn--full {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.site-header--solid {
  background: var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 108px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.header-phone:hover {
  color: var(--gold);
}

.header-phone i {
  color: var(--gold);
  font-size: 1.1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  padding: 100px 32px 40px;
  transition: right var(--transition);
  overflow-y: auto;
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu nav a {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  color: var(--gold);
}

.mobile-menu__phone {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: calc(var(--header-h) + 24px) 0 0;
  background: var(--gray-light);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-bottom: 24px;
}

.breadcrumb__list a:hover {
  color: var(--gold);
}

.breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--border);
}

.breadcrumb__list li:last-child {
  color: var(--gold-light);
  font-weight: 500;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 161, 91, 0.08) 0%, transparent 60%);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 12px;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  font-size: 1.05rem;
}

/* ---------- Hero (Homepage) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 28%, rgba(198, 161, 91, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse at 50% 50%, #33353b 0%, var(--logo-fume) 48%, #222327 100%);
}

.hero__bg {
  display: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 28%, transparent 62%, rgba(0, 0, 0, 0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) 0 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__brand-logo {
  width: clamp(180px, 28vw, 260px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 20px;
  box-shadow: none;
  background: transparent;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  margin-bottom: 18px;
  max-width: 16ch;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero__desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  margin-bottom: 34px;
  line-height: 1.8;
  max-width: 38rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero .btn-group {
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}

.hero .btn--secondary {
  border-color: rgba(255, 255, 255, 0.55);
}

.hero .btn--secondary:hover {
  border-color: var(--white);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Search Box ---------- */
.search-box {
  position: relative;
  z-index: 3;
  margin-top: -40px;
  margin-bottom: 20px;
}

.search-box__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 28px;
}

.search-box__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.search-box__grid--full {
  grid-template-columns: repeat(4, 1fr);
}

.search-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.search-field select,
.search-field input,
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #1f2937;
  transition: border-color var(--transition);
  appearance: none;
  min-height: 48px;
}

.search-field select,
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.search-field select:focus,
.search-field input:focus,
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.search-box__submit {
  align-self: end;
}

.search-box__submit--wide {
  grid-column: span 2;
}

.search-submit-label {
  visibility: hidden;
}

/* ---------- Partners / Firmalar ---------- */
.section--partners {
  padding-top: 48px;
  padding-bottom: 64px;
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
  text-align: center;
  min-height: 140px;
}

.partner-card:hover {
  border-color: rgba(198, 161, 91, 0.45);
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.partner-card__logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.partner-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  padding: 6px;
}

.partner-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.partners-note {
  margin-top: 24px;
}

/* ---------- Property Cards ---------- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
  color: var(--text);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.property-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #2a3a4a;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-card__image img {
  transform: scale(1.06);
}

.property-card__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.badge--sale {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(11, 31, 51, 0.15);
}

.badge--rent {
  background: var(--gold);
  color: var(--navy);
}

.badge--featured {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(198, 161, 91, 0.5);
}

.badge--new {
  background: #059669;
  color: var(--white);
}

.property-card__actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.icon-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.icon-btn.is-active {
  background: var(--gold);
  color: var(--navy);
}

.icon-btn--whatsapp:hover {
  background: var(--whatsapp);
  color: var(--white);
}

.property-card__body {
  padding: 20px;
  background: var(--white);
}

.property-card__category {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

.property-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-card__title a {
  color: var(--navy);
}

.property-card__title a:hover {
  color: var(--gold-dark);
}

.property-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.property-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #555555;
  margin-bottom: 14px;
}

.property-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: #555555;
  margin-bottom: 16px;
}

.property-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-card__meta i {
  color: var(--gold-dark);
}

.property-card__footer {
  display: flex;
  gap: 10px;
}

.property-card__footer .btn--outline {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
}

.property-card__footer .btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* List view */
.property-grid--list {
  grid-template-columns: 1fr;
}

.property-grid--list .property-card {
  display: grid;
  grid-template-columns: 320px 1fr;
}

.property-grid--list .property-card__image {
  aspect-ratio: auto;
  height: 100%;
  min-height: 240px;
}

/* ---------- Category Cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 51, 0.9) 0%, rgba(11, 31, 51, 0.2) 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.category-card h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.category-card__overlay i {
  color: var(--gold);
  margin-left: 8px;
  transition: transform var(--transition);
}

.category-card:hover .category-card__overlay i {
  transform: translateX(4px);
}

/* ---------- About Preview ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.about-preview__content > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-list li i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
  color: #333333;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--gold);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(198, 161, 91, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #0B1F33;
}

.service-card p {
  color: #6B7280;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card a {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card a:hover {
  color: var(--navy);
}

/* ---------- Why Us / Stats ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.why-item {
  text-align: center;
}

.why-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 1.5rem;
}

.why-item h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid rgba(198, 161, 91, 0.25);
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.stat-item__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 6px;
}

/* ---------- Region Cards ---------- */
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.region-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  display: block;
}

.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.region-card:hover img {
  transform: scale(1.08);
}

.region-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 51, 0.85), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.region-card h3 {
  color: var(--white);
  font-size: 1.15rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--anthracite) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 14px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-banner .btn-group {
  justify-content: center;
  position: relative;
}

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 16px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.testimonial-card__service {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-card__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  opacity: 0.7;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition);
}

.slider-dot.is-active {
  background: var(--gold);
}

/* ---------- Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--anthracite);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card__meta .category {
  color: var(--gold-dark);
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Contact CTA ---------- */
.contact-cta {
  text-align: center;
  padding: 88px 0 96px;
  background: var(--anthracite);
  color: var(--white);
}

.contact-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
  color: var(--white);
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto;
}

.contact-cta__phone {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin: 20px 0 32px;
}

.contact-cta__phone:hover {
  color: var(--gold-light);
}

.contact-cta .btn-group {
  justify-content: center;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}

.faq-item__question i {
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.is-open .faq-item__question i {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img {
  height: 96px;
  width: auto;
  border-radius: 0;
  margin-bottom: 16px;
  object-fit: contain;
  background: transparent;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom__links a:hover {
  color: var(--gold);
}

/* ---------- Floating Elements ---------- */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.float-phone,
.float-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.float-phone {
  background: var(--navy);
  box-shadow: 0 4px 16px rgba(11, 31, 51, 0.35);
}

.float-whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  font-size: 1.75rem;
}

.float-phone:hover,
.float-whatsapp:hover {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Mobile contact bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
}

.mobile-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-bar a i {
  font-size: 1.25rem;
}

.mobile-bar a:hover,
.mobile-bar a:active {
  background: rgba(198, 161, 91, 0.2);
}

.mobile-bar a.wa i {
  color: var(--whatsapp);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--anthracite);
  color: var(--white);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.9rem;
  flex: 1;
  min-width: 240px;
}

.cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

/* ---------- Toast ---------- */
.toast-container {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s ease;
  max-width: 360px;
  border-left: 3px solid var(--gold);
}

.toast--success {
  border-left-color: #059669;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Listings Page ---------- */
.listings-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}

.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.filter-sidebar h2 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 44px;
  background: var(--white);
}

.filter-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

.filter-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  min-height: auto;
}

.filter-clear {
  width: 100%;
  margin-top: 8px;
}

.listings-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.listings-count {
  font-weight: 600;
  color: var(--navy);
}

.listings-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.listings-controls select {
  padding: 10px 36px 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 44px;
  appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 12px center;
}

.view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.view-toggle button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.view-toggle button.is-active {
  background: var(--navy);
  color: var(--white);
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--cream);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
}

.filter-tag button {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1;
  padding: 0 2px;
}

.filter-tag button:hover {
  color: #dc2626;
}

.filter-toggle-btn {
  display: none;
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-state i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.empty-state h1,
.empty-state h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.empty-state p {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 24px;
}

/* Filter Drawer (mobile) */
.filter-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.filter-drawer-overlay.is-open {
  display: block;
}

/* ---------- Property Detail ---------- */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.detail-gallery {
  margin-bottom: 32px;
}

.detail-gallery__main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--anthracite);
  cursor: pointer;
}

.detail-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery__count {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(11, 31, 51, 0.8);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.detail-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.detail-gallery__thumbs button {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all var(--transition);
}

.detail-gallery__thumbs button.is-active,
.detail-gallery__thumbs button:hover {
  border-color: var(--gold);
  opacity: 1;
}

.detail-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-header {
  margin-bottom: 28px;
}

.detail-header__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.detail-header h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.detail-header__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.detail-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.detail-header__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-header__actions {
  display: flex;
  gap: 10px;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
}

.spec-item {
  text-align: center;
}

.spec-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.spec-item__value {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.spec-item__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.detail-section {
  margin-bottom: 36px;
}

.detail-section h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream);
}

.detail-section p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.features-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.features-grid li i {
  color: var(--gold);
}

.map-placeholder {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 60px 24px;
  text-align: center;
  border: 2px dashed var(--border);
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.map-placeholder p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Consultant Card */
.consultant-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.consultant-card__profile {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.consultant-card__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid var(--gold);
}

.consultant-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultant-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.consultant-card__firm {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.consultant-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.inquiry-form h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0B1F33;
  margin-bottom: 6px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .error-msg {
  display: none;
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #dc2626;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-check a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

a.contact-info-card:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(198, 161, 91, 0.35);
}

a.contact-info-card:hover p {
  color: var(--gold);
}

.contact-info-card i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  margin-bottom: 4px;
  color: var(--white);
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-card a:hover {
  color: var(--gold);
}

.footer-contact a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  color: #333333;
}

.contact-form-wrap h2 {
  font-size: 1.35rem;
  margin-bottom: 24px;
  color: #0B1F33;
}

.contact-form-wrap .form-check label {
  color: #374151;
}

.contact-form-wrap .form-check a {
  color: var(--gold-dark);
}

.map-section {
  margin-top: 48px;
}

.map-section iframe,
.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius);
  background: var(--gray-light);
}

/* ---------- About Page ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #333333;
}

.value-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.value-card h3 {
  color: #0B1F33;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  padding: 40px;
  border-radius: var(--radius);
  background: #F0EDE6;
}

.mv-card h2 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #0B1F33;
}

.mv-card p {
  color: #6B7280;
}

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

.team-card {
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: #333333;
}

.team-card__photo {
  aspect-ratio: 1;
  background: var(--anthracite);
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__body {
  padding: 24px;
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: #0B1F33;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.team-placeholder-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ---------- Services Detail Page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail .service-card__icon {
  background: rgba(198, 161, 91, 0.12);
  color: var(--gold);
}

.service-detail h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--white);
}

.service-detail p {
  color: var(--text-muted);
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 24px 60px;
}

.error-page__code {
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h1 {
  margin-bottom: 12px;
}

.error-page p {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 420px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: var(--white);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__close {
  top: 20px;
  right: 20px;
}

.lightbox__prev {
  left: 20px;
}

.lightbox__next {
  right: 20px;
}

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.demo-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.8;
}
