/* ============================================
   TRINITY ABODE LTD — GLOBAL STYLESHEET
   Dark Navy + Warm Gold | Playfair + Jost
   ============================================ */

:root {
  --navy: #0D1B2A;
  --navy-mid: #152130;
  --navy-light: #1E2F44;
  --gold: #C5A55A;
  --gold-light: #D4B87A;
  --gold-pale: #F2E8D0;
  --cream: #F7F3EC;
  --white: #FFFFFF;
  --text-primary: #0D1B2A;
  --text-muted: #5A6A7A;
  --text-light: #A8B8C8;
  --border: rgba(197, 165, 90, 0.2);
  --border-dark: rgba(255,255,255,0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --radius: 4px;
  --shadow: 0 4px 32px rgba(13, 27, 42, 0.12);
  --shadow-gold: 0 0 0 1px rgba(197, 165, 90, 0.3);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
em { font-style: italic; color: var(--gold); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered p {
  max-width: 540px;
  margin: 16px auto 0;
  color: var(--text-muted);
}
.section-header h2 { margin-bottom: 0; }
.section-header p { margin-top: 12px; color: var(--text-muted); }
.section-header.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.mt-sm { margin-top: 20px; }

/* ============ LINK ARROW ============ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.link-arrow::after { content: '→'; transition: transform var(--transition); }
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow.small { font-size: 0.75rem; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 2px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.logo-text em { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 24px;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { padding: 12px 0; border-bottom: 1px solid var(--border-dark); }
.mobile-menu ul a { color: var(--white); font-size: 0.9rem; }
.mobile-menu.open { display: block; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1a2e45 50%, #0D1B2A 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(197, 165, 90, 0.08) 0%, transparent 70%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(197,165,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,165,90,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  padding-bottom: 80px;
  animation: fadeUp 0.9s ease both;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(197,165,90,0.35);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-heading {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: bounce 2s ease infinite;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  margin: 8px auto 0;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============ ABOUT STRIP ============ */
.about-strip { padding: 96px 0; }
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip-text h2 { margin-bottom: 20px; }
.about-strip-text p { color: var(--text-muted); margin-bottom: 28px; }

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
}
.about-card:hover { border-color: var(--gold); background: var(--cream); }
.about-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.about-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-card-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ============ SECTION TYPES ============ */
.section-dark {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0;
}
.section-dark .section-header p { color: var(--text-light); }
.section-dark h2 { color: var(--white); }

.section-cream {
  background: var(--cream);
  padding: 96px 0;
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}
.service-card {
  background: var(--navy-mid);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  display: block;
}
.service-card:hover { background: var(--navy-light); }
.service-card:hover .service-link { color: var(--gold-light); }

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(197,165,90,0.08);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}
.service-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.65;
}
.service-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}

/* ============ PROPERTIES ============ */
.properties-section { padding: 96px 0; }
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.property-card {
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.property-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.property-card.featured { border-color: var(--gold); }

.property-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.property-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.property-card:hover .property-img { transform: scale(1.04); }

.prop-img-1 { background-color: #1a2e45; background-image: repeating-linear-gradient(45deg, rgba(197,165,90,0.05) 0px, rgba(197,165,90,0.05) 1px, transparent 1px, transparent 20px); }
.prop-img-2 { background-color: #162233; background-image: repeating-linear-gradient(-45deg, rgba(197,165,90,0.06) 0px, rgba(197,165,90,0.06) 1px, transparent 1px, transparent 18px); }
.prop-img-3 { background-color: #1b2d40; background-image: repeating-linear-gradient(90deg, rgba(197,165,90,0.05) 0px, rgba(197,165,90,0.05) 1px, transparent 1px, transparent 22px); }

.property-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.property-badge.rent { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }
.property-badge.land { background: #2d5a27; color: #90c987; }

.property-price {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(4px);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 2px;
}
.property-info { padding: 20px 22px 24px; }
.property-info h4 { font-size: 1rem; margin-bottom: 8px; }
.property-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.property-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 2px;
}

/* ============ WHY CHOOSE US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.why-item { border-top: 2px solid var(--gold); padding-top: 24px; }
.why-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}
.why-item h4 { margin-bottom: 10px; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--white); font-size: 0.85rem; }
.author-role { font-size: 0.75rem; color: var(--text-light); }
.testimonial-cta { text-align: center; margin-top: 48px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  padding: 96px 0;
  background: var(--navy);
  overflow: hidden;
  text-align: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(197,165,90,0.06) 100%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: var(--text-light); max-width: 520px; margin: 0 auto 40px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer {
  background: #08131D;
  color: rgba(255,255,255,0.65);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 64px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.7; margin-bottom: 16px; }
.footer-contact-line a {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.footer-links h5,
.footer-address h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links ul a:hover { color: var(--gold); }

.footer-address address {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.footer-hours {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 64px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(197,165,90,0.05) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(197,165,90,0.02) 0, rgba(197,165,90,0.02) 1px, transparent 1px, transparent 40px);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 560px; font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ============ ABOUT PAGE ============ */
.about-story { padding: 96px 0; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-story-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.about-visual {
  position: relative;
}
.about-visual-block {
  background: var(--navy);
  height: 380px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(197,165,90,0.04) 0, rgba(197,165,90,0.04) 1px, transparent 1px, transparent 30px);
}
.about-visual-text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}
.about-visual-text .big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
}

.about-values { padding: 96px 0; background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--white);
  padding: 36px 28px;
  border-bottom: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.value-card h4 { margin-bottom: 12px; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ============ SERVICES PAGE ============ */
.services-list { padding: 80px 0; }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(13,27,42,0.08);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.service-detail h3 { font-size: 1.6rem; margin-bottom: 16px; }
.service-detail .service-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-detail p { color: var(--text-muted); margin-bottom: 16px; }
.service-detail ul { padding-left: 0; list-style: none; margin-bottom: 28px; }
.service-detail ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(13,27,42,0.06);
  display: flex;
  gap: 10px;
  align-items: center;
}
.service-detail ul li::before { content: '—'; color: var(--gold); font-weight: 600; flex-shrink: 0; }

.service-visual {
  background: var(--navy);
  height: 360px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(197,165,90,0.15);
  overflow: hidden;
  position: relative;
}
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(197,165,90,0.03) 0, rgba(197,165,90,0.03) 1px, transparent 1px, transparent 25px);
}

/* ============ PROPERTIES PAGE ============ */
.properties-filters { padding: 40px 0 0; background: var(--cream); }
.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}
.filter-select {
  padding: 10px 20px;
  border: 1px solid rgba(13,27,42,0.15);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-primary);
  cursor: pointer;
  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='%23C5A55A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  min-width: 160px;
}
.filter-btn {
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.06em;
}

.properties-full { padding: 64px 0 96px; }
.properties-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============ SINGLE PROPERTY ============ */
.property-gallery {
  padding: calc(var(--nav-h) + 40px) 0 0;
  background: var(--navy-mid);
}
.gallery-main {
  height: 480px;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding-bottom: 40px;
}
.gallery-thumb {
  width: 100px;
  height: 68px;
  background: var(--navy-light);
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--gold); }

.property-detail-body { padding: 72px 0; }
.property-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
}
.property-specs {
  display: flex;
  gap: 0;
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 36px;
}
.spec-item {
  flex: 1;
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(13,27,42,0.1);
}
.spec-item:last-child { border-right: none; }
.spec-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}
.spec-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

.contact-sidebar {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.contact-sidebar h4 { margin-bottom: 24px; }
.contact-sidebar .form-group { margin-bottom: 16px; }
.contact-sidebar input,
.contact-sidebar textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(13,27,42,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--white);
}
.contact-sidebar textarea { resize: vertical; min-height: 100px; }
.contact-sidebar input:focus,
.contact-sidebar textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* ============ CONTACT PAGE ============ */
.contact-body { padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info-value { font-size: 0.9rem; color: var(--text-primary); line-height: 1.6; }
.contact-info-value a { color: var(--navy); font-weight: 600; }

.map-embed {
  height: 280px;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 36px;
  border: 1px solid rgba(13,27,42,0.1);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

.contact-form-wrap { }
.contact-form-wrap h3 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(13,27,42,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============ BLOG PAGE ============ */
.blog-grid { padding: 80px 0; }
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card-img {
  height: 200px;
  background: var(--navy);
  position: relative;
}
.blog-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card h4 { font-size: 1rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 16px; }

/* ============ CONSULTATION PAGE ============ */
.consultation-body { padding: 80px 0; }
.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.consultation-info h3 { margin-bottom: 16px; }
.consultation-info p { color: var(--text-muted); margin-bottom: 28px; }
.consult-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.consult-benefit-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.consult-benefit h5 { font-size: 0.9rem; margin-bottom: 4px; }
.consult-benefit p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; }

.form-wrap {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
}
.form-wrap h3 { margin-bottom: 28px; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
  animation: pulse-wa 2.5s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip-inner,
  .about-story-grid,
  .service-detail,
  .properties-grid,
  .properties-full-grid,
  .contact-grid,
  .consultation-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse { direction: ltr; }
  .service-visual { height: 240px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid,
  .values-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .property-detail-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .blog-posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid, .values-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .hero-heading { font-size: 2.4rem; }
  .section-header.split { flex-direction: column; align-items: flex-start; }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 24px; }
  .consultation-grid { grid-template-columns: 1fr; }
}
