/* =========================================
   PDC LETTINGS & MANAGEMENT
   Main Stylesheet — Modern Property Theme
   ========================================= */

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

/* CSS Variables
   ---------------------------------------------------------
   PALETTE SYSTEM — navy + warm gold
   Primary   : deep navy blue  (#13294B)  dark anchors + text
   Accent    : warm gold       (#C59A3C)  buttons / highlights
   Base      : white           (#FFFFFF)
   Surface   : warm near-white (#FAF7F0)  section separation
   --------------------------------------------------------- */
:root {
  --navy: #13294B;
  --navy-mid: #1C3A66;
  --navy-light: #28477A;
  --navy-deep: #0F2240;
  --gold: #C59A3C;
  --gold-light: #D4AE5A;
  --gold-pale: #FBF5E6;
  --gold-soft: #FAF7F0;
  --cream: #FAF7F0;
  --blue-tint: #FAF7F0;
  --white: #FFFFFF;
  --surface: #F5F7FA;
  --text-dark: #13294B;
  --text-body: #3D4759;
  --text-muted: #3E4C65;
  --text-light: #97A1B5;
  --border: #E2E7F0;
  --border-light: #EFF2F8;
  --success: #059669;
  --error: #DC2626;
  --shadow-sm: 0 1px 3px rgba(19,41,75,.08), 0 1px 2px rgba(19,41,75,.06);
  --shadow-md: 0 4px 14px rgba(19,41,75,.08), 0 2px 4px rgba(19,41,75,.05);
  --shadow-lg: 0 14px 40px rgba(19,41,75,.10);
  --shadow-xl: 0 24px 70px rgba(19,41,75,.16);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

/* Accent ampersand — Inter bold, accent colour */
.amp {
  font-weight: 700;
  color: var(--gold-light);
  padding: 0 0.04em;
}

/* ========================
   TYPOGRAPHY
   ======================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ========================
   LAYOUT
   ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197,154,60,.45);
}

.btn-outline {
  background: rgba(255,255,255,.10);
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13,31,61,.22);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.83rem;
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(10,22,45,0.97);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled .nav-links a {
  color: rgba(255,255,255,.85);
}

.navbar.scrolled .nav-links a:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.navbar.scrolled .nav-links a.active {
  background: var(--gold);
  color: var(--white);
}

.navbar.scrolled .nav-pill-wrap {
  border-color: rgba(255,255,255,.15);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar.nav-open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.navbar.scrolled .hamburger span {
  background: var(--white);
}

.navbar.scrolled .nav-cta .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Pill container wrapping all nav links */
.nav-pill-wrap {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 6px 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-close { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
  padding: 7px 18px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav-links a.active {
  color: var(--white);
  background: var(--gold);
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  animation: kenBurns 18s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0)      translateY(0); }
  50%  { transform: scale(1.07) translateX(-1%)    translateY(-1%); }
  100% { transform: scale(1)    translateX(0)      translateY(0); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,26,52,.60) 0%, rgba(10,26,52,.15) 65%, transparent 100%);
}

.hero::after { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(194,162,78,.12);
  border: 1px solid rgba(216,190,116,.4);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero h1 .accent { color: var(--gold-light); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.92);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================
   HERO ANIMATIONS
   ======================== */
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(38px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

.hero-bg { animation: heroZoom 8s cubic-bezier(.25,.46,.45,.94) forwards; }

.hero h1          { animation: fadeSlideUp .85s .1s  both ease; }
.hero-desc        { animation: fadeSlideUp .85s .35s both ease; }
.hero-actions     { animation: fadeSlideUp .85s .55s both ease; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: fadeSlideUp .85s .9s both ease;
}
.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-light));
  animation: scrollLine 2s ease infinite;
}

/* ========================
   SCROLL REVEAL
   ======================== */
.reveal, .reveal-left, .reveal-right {
  transition: opacity .7s ease, transform .7s ease;
}
.reveal      { opacity: 0; transform: translateY(36px); }
.reveal-left { opacity: 0; transform: translateX(-44px); }
.reveal-right{ opacity: 0; transform: translateX(44px); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .34s; }
.delay-4 { transition-delay: .46s; }
.delay-5 { transition-delay: .58s; }

/* ========================
   SERVICES
   ======================== */
.services { background: var(--surface); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke: var(--gold);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-body);
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ========================
   HOW IT WORKS  (light blue-tint band)
   ======================== */
.how-it-works { background: var(--white); }
.how-it-works .section-title { color: var(--navy); }
.how-it-works .section-label { color: var(--gold); }
.how-it-works .section-subtitle { color: var(--text-muted) !important; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  opacity: .5;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(19,41,75,.10);
}

.step-item h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.step-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================
   FEATURED PROPERTIES
   ======================== */
.featured-props { background: var(--white); }

.props-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

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

.prop-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: var(--white);
}

.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.prop-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prop-card:hover .prop-image img { transform: scale(1.05); }

.prop-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.3);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
}

.prop-image-placeholder svg { opacity: 0.3; }

.prop-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-available { background: var(--success); color: var(--white); }
.badge-let-agreed { background: #F59E0B; color: var(--white); }
.badge-let { background: var(--text-muted); color: var(--white); }

.prop-body { padding: 22px 22px 18px; }

.prop-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.prop-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.prop-title {
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prop-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.prop-meta {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.prop-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.prop-meta-item svg { color: var(--gold); }

/* Empty state */
.props-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

/* ========================
   WHY CHOOSE US
   ======================== */
.why-us { background: var(--surface); }

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.why-us-image img { width: 100%; height: 100%; object-fit: cover; }

.why-us-image::after { display: none; }

.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.3);
  font-size: 0.82rem;
  text-align: center;
  padding: 30px;
}

.why-us-image .badge-float {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  min-width: 160px;
}

.badge-float .num {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.badge-float .txt {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg { color: var(--gold); width: 20px; height: 20px; }

.why-text h4 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================
   PRICING
   ======================== */
.pricing { background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 56px auto 0;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  transition: all var(--transition);
}

.pricing-card.standard {
  background: var(--white);
  border: 2px solid var(--border);
}

.pricing-card.premium {
  background: var(--navy);
  border: 2px solid var(--navy);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card.standard .pricing-plan-name { color: var(--navy); }
.pricing-card.premium .pricing-plan-name { color: var(--white); }

.pricing-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-card.standard .pricing-desc { color: var(--text-muted); }
.pricing-card.premium .pricing-desc { color: rgba(255,255,255,.6); }

.pricing-price {
  margin-bottom: 32px;
  padding-bottom: 28px;
}

.pricing-card.standard .pricing-price { border-bottom: 1px solid var(--border); }
.pricing-card.premium .pricing-price { border-bottom: 1px solid rgba(255,255,255,.15); }

.price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-card.standard .price-amount { color: var(--navy); }
.pricing-card.premium .price-amount { color: var(--gold); }

.price-note {
  font-size: 0.8rem;
  margin-top: 6px;
}

.pricing-card.standard .price-note { color: var(--text-muted); }
.pricing-card.premium .price-note { color: rgba(255,255,255,.5); }

.pricing-features { margin-bottom: 36px; }

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
}

.pricing-card.standard .pricing-features li { color: var(--text-body); }
.pricing-card.premium .pricing-features li { color: rgba(255,255,255,.85); }

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.standard .check-icon { background: var(--gold-pale); color: var(--gold); }
.pricing-card.premium .check-icon { background: rgba(201,168,76,.2); color: var(--gold); }

.pricing-card.premium .btn-primary { width: 100%; justify-content: center; }
.pricing-card.standard .btn-outline-dark { width: 100%; justify-content: center; }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================
   TESTIMONIALS
   ======================== */
/* ========================
   TESTIMONIALS CAROUSEL
   ======================== */
.testimonials {
  position: relative;
  background-image: url('../images/reviews.png');
  background-size: cover;
  background-position: center top;
  padding: 110px 0;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 45, 0.65);
  z-index: 0;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}

.tcarousel {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 80px;
  align-items: center;
}

/* Left */
.tcarousel-heading {
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}

.tcarousel-sub {
  color: rgba(255,255,255,.5);
  font-size: 0.95rem;
  line-height: 1.78;
  margin-bottom: 48px;
  max-width: 300px;
}

.tcarousel-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}

.tcnav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .28s ease;
  flex-shrink: 0;
}
.tcnav-btn svg { width: 18px; height: 18px; }
.tcnav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.06);
}

.tcarousel-counter {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-cur {
  color: var(--gold-light);
  font-size: 1.15rem;
  font-weight: 700;
}
.tc-divider {
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,.18);
}
.tc-tot {
  color: rgba(255,255,255,.3);
  font-size: 0.9rem;
}

/* Right */
.tcarousel-right { position: relative; }

.tc-track { position: relative; }

.tc-slide {
  display: none;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: 52px 52px 44px;
  position: relative;
}
.tc-slide.active { display: block; }

@keyframes tcIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes tcInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: none; }
}
.tc-slide.tc-anim-right { animation: tcIn .42s ease forwards; }
.tc-slide.tc-anim-left  { animation: tcInLeft .42s ease forwards; }

.tc-quote-mark {
  font-size: 5.5rem;
  line-height: .7;
  color: var(--gold);
  opacity: .5;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 20px;
  user-select: none;
}

.tc-body {
  color: rgba(255,255,255,.85);
  font-size: 1.08rem;
  line-height: 1.88;
  font-style: italic;
  margin-bottom: 40px;
}

.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
  gap: 16px;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tc-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.tc-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.tc-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  margin-top: 3px;
}

.tc-rating-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

.tc-stars {
  display: flex;
  gap: 3px;
}
.tc-stars svg {
  width: 17px;
  height: 17px;
  color: var(--gold-light);
}

.tc-score {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
}

/* Dots */
.tc-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  justify-content: flex-end;
  padding-right: 4px;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .32s ease;
}
.tc-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
  padding: 70px 0;
  background: var(--white);
}

.cta-banner .container {
  background:
    radial-gradient(600px 300px at 90% 20%, rgba(194,162,78,.16) 0%, rgba(194,162,78,0) 60%),
    linear-gradient(125deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 52px 52px;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

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

.cta-banner p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
}

.cta-banner-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* primary CTA button = gold */
.btn-navy {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-navy:hover {
  background: var(--gold-light);
  color: var(--navy);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* secondary CTA button = light outline */
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

/* ========================
   CONTACT — full-bleed image, floating form card
   ======================== */
.contact {
  background: var(--white);
  padding: 90px 0;
}

.contact .container {
  display: flex;
  align-items: center;
}

.contact-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 72px;
  width: 100%;
}

.contact-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-visual .section-label { color: var(--gold); margin-bottom: 16px; }

.contact-visual h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 18px;
  font-weight: 800;
}

.contact-visual > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 32px;
}

.contact-trust-row {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-trust-item {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.contact-trust-item:last-child { border-right: none; }

.contact-trust-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.contact-trust-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.contact-info-block { display: flex; flex-direction: column; gap: 22px; }

.contact-detail { display: flex; gap: 14px; align-items: flex-start; }

.contact-detail-icon {
  width: 38px; height: 38px;
  background: rgba(197,154,60,.1);
  border: 1px solid rgba(197,154,60,.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { color: var(--gold); width: 17px; height: 17px; }

.contact-detail h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail p, .contact-detail a {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
}

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

/* Right: white card floating/popped over the image */
.contact-form-panel {
  width: 550px;
  flex-shrink: 0;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-panel .section-label { margin-bottom: 6px; }

.contact-form-panel h3 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}

.contact-form-panel > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Minimal underline inputs */
.form-group-minimal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.form-label-minimal {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.form-control-minimal {
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: transparent;
  width: 100%;
  transition: border-color var(--transition);
}

.form-control-minimal:focus { outline: none; border-bottom-color: var(--gold); }
.form-control-minimal::placeholder { color: var(--text-light); }
select.form-control-minimal { cursor: pointer; appearance: none; }
textarea.form-control-minimal { resize: none; min-height: 90px; }

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

/* Tablet */
@media (max-width: 1024px) {
  .contact-form-panel { width: 460px; height: auto; padding: 36px 36px; }
}

/* Mobile + small tablet */
@media (max-width: 860px) {
  .contact { padding: 60px 0; }
  .contact-inner { flex-direction: column; align-items: stretch; gap: 36px; }
  .contact-visual { padding: 0; }
  .contact-visual > p { max-width: 100%; margin-bottom: 28px; }
  .contact-form-panel { width: 100%; padding: 32px 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* kept for flash messages only */
.contact-form-card { background: transparent; padding: 0; box-shadow: none; }

/* ========================
   FORMS
   ======================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}

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

select.form-control { cursor: pointer; }

.form-submit { margin-top: 10px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* Flash messages */
.flash {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.flash-success {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.flash-error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ========================
   FOOTER
   ======================== */
/* Partners strip */
.partners-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 68px;
  text-align: center;
}

.partners-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--navy);
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.partners-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px 80px;
  margin-bottom: 44px;
}

.partners-logos img {
  height: 72px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(20%);
  transition: opacity var(--transition), filter var(--transition);
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partners-company {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .partners-logos { gap: 36px 52px; }
  .partners-logos img { height: 52px; }
}

.footer { background: var(--navy-deep); padding: 72px 0 28px; border-top: none; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: rgba(255,255,255,.78);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(255,255,255,.80);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-item svg { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }

.footer-contact-item span {
  color: rgba(255,255,255,.80);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,.4);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.4);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold-light); }

/* ========================
   PAGE HERO — flat variant (no curve)
   ======================== */
.page-hero.no-curve::after { display: none; }
.page-hero.no-curve { min-height: 90vh; padding-bottom: 100px; }

/* ========================
   BENEFITS GRID (landlords)
   ======================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.benefit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.benefit-icon {
  width: 52px; height: 52px;
  background: rgba(197,154,60,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon svg { width: 24px; height: 24px; color: var(--gold); }
.benefit-card h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin: 0; }

/* ========================
   FAQ ACCORDION (landlords)
   ======================== */
.faq-list { max-width: 780px; margin: 0 auto; }

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-question-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.faq-icon svg { width: 14px; height: 14px; color: var(--navy); transition: transform 0.25s ease; }
.faq-item.open .faq-icon { background: var(--navy); border-color: var(--navy); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  padding: 0 28px;
}

.faq-item.open .faq-answer { max-height: 400px; padding: 0 28px 24px; }

@media (max-width: 860px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ========================
   PROPERTIES PAGE
   ======================== */
.page-hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(800px 460px at 85% 8%, rgba(92,138,226,.20) 0%, rgba(92,138,226,0) 60%),
    radial-gradient(700px 500px at 8% 100%, rgba(40,71,122,.55) 0%, rgba(40,71,122,0) 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  padding: 150px 0 170px;
  position: relative;
  overflow: hidden;
}

/* faint oversized watermark ampersand for premium depth */
.page-hero::before {
  content: '&';
  position: absolute;
  right: 3%;
  bottom: -6%;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 32rem;
  line-height: 1;
  color: rgba(255,255,255,.03);
  pointer-events: none;
  z-index: 0;
}

/* deep curved transition into the page */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -8%; right: -8%;
  height: 170px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); position: relative; z-index: 2; font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.1; }
.page-hero p { color: rgba(255,255,255,.90); margin-top: 14px; font-size: 1.08rem; position: relative; z-index: 2; }
.page-hero .section-label { color: var(--gold-light); }

/* About hero two-column */
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

.about-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-hero-text p {
  color: rgba(255,255,255,.90);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 16px;
}

.about-hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 32px 0 36px;
}

.about-hero-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 110px;
}

.about-hero-stat .stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.about-hero-stat .stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.75);
}

.about-hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

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

.about-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* About page hero — full bleed, left-aligned, background image */
.about-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('../images/about.png');
  background-size: cover;
  background-position: center;
  padding: 160px 0 120px;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,26,52,.58) 0%, rgba(10,26,52,.28) 60%, transparent 100%);
  z-index: 0;
}
.about-hero .container {
  position: relative;
  z-index: 1;
  text-align: left;
}
.about-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 640px;
}
.about-hero .hero-lead {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 540px;
}
.about-hero .about-hero-actions {
  justify-content: flex-start;
  margin-top: 36px;
}

/* Portfolio / Properties section */
.portfolio { background: var(--white); }

.portfolio-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}

.portfolio-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-top: 12px;
}

.portfolio-kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.pkpi {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
}

.pkpi-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.pkpi-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

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

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

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

.prop-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--navy);
}

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

.prop-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.prop-badge.available { background: var(--gold); color: var(--white); }
.prop-badge.let { background: #22C55E; color: var(--white); }
.prop-badge.rented { background: #22C55E; color: var(--white); }

.prop-info { padding: 18px 20px 20px; }

.prop-info-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.prop-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.prop-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.prop-meta {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-hero-inner { grid-template-columns: 1fr 340px; gap: 48px; }
  .portfolio-kpi { grid-template-columns: repeat(2, 1fr); }
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-image { height: 280px; order: -1; }
  .about-hero-stats { gap: 12px; }
  .about-hero-stat { min-width: calc(50% - 6px); flex: 1; }
  .portfolio-kpi { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .prop-grid { grid-template-columns: 1fr; }
  .prop-img { height: 420px; }
}

.filters-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.filters-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.filters-form .form-control {
  padding: 9px 14px;
  font-size: 0.85rem;
}

.filters-form .btn { padding: 10px 22px; font-size: 0.85rem; }

.properties-section { padding: 48px 0 80px; }

.properties-results {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.properties-results strong { color: var(--text-dark); }

/* Property detail */
.prop-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

.prop-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-gallery img { width: 100%; height: 100%; object-fit: cover; }

.prop-detail-info { position: sticky; top: 100px; }

.prop-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.prop-detail-price {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.prop-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.spec-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.prop-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 20px 0;
}

.prop-features-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-body);
}

.prop-features-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ========================
   HOME PRICING CARDS — compact 2-col
   ======================== */
.home-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 840px;
  margin: 44px auto 0;
}

.home-pricing-card {
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.home-pricing-card.light {
  background: var(--white);
  border: 1.5px solid var(--border);
}

.home-pricing-card.dark {
  background: var(--navy);
  border: 1.5px solid var(--navy);
}

.hpc-popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.hpc-header { margin-bottom: 14px; }

.hpc-header h3 { font-size: 1.2rem; margin-bottom: 6px; }
.home-pricing-card.light .hpc-header h3 { color: var(--navy); }
.home-pricing-card.dark .hpc-header h3 { color: var(--white); }

.hpc-header p { font-size: 0.84rem; line-height: 1.55; }
.home-pricing-card.light .hpc-header p { color: var(--text-muted); }
.home-pricing-card.dark .hpc-header p { color: rgba(255,255,255,.88); }

.hpc-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 3px; }

.hpc-amount { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.home-pricing-card.light .hpc-amount { color: var(--navy); }
.home-pricing-card.dark .hpc-amount { color: var(--gold-light); }

.hpc-vat { font-size: 0.88rem; font-weight: 600; }
.home-pricing-card.light .hpc-vat { color: var(--text-muted); }
.home-pricing-card.dark .hpc-vat { color: rgba(255,255,255,.85); }

.hpc-period {
  font-size: 0.74rem;
  margin-bottom: 16px;
  padding-bottom: 14px;
}
.home-pricing-card.light .hpc-period { color: var(--text-muted); border-bottom: 1px solid var(--border); }
.home-pricing-card.dark .hpc-period { color: rgba(255,255,255,.80); border-bottom: 1px solid rgba(255,255,255,.15); }

.hpc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.hpc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
}
.home-pricing-card.light .hpc-features li { color: var(--text-body); }
.home-pricing-card.dark .hpc-features li { color: rgba(255,255,255,.92); }
.home-pricing-card.light .hpc-features svg { color: var(--navy); flex-shrink: 0; }
.home-pricing-card.dark .hpc-features svg { color: var(--gold-light); flex-shrink: 0; }

.hpc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

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

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

@media (max-width: 600px) {
  .home-pricing-grid { grid-template-columns: 1fr; }
}

/* ========================
   WHY PDC COMPACT STRIP
   ======================== */
.why-strip {
  background: var(--white);
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.why-strip-header {
  text-align: center;
  margin-bottom: 52px;
}
.why-strip-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.why-strip-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}
.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.why-strip-card {
  padding: 36px 28px;
  position: relative;
  background: var(--white);
  transition: background var(--transition);
}
.why-strip-card:hover {
  background: var(--surface);
}
.why-strip-card:not(:last-child) {
  border-right: 1px solid var(--border);
}
.wsc-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.wsc-icon svg { width: 22px; height: 22px; }
.why-strip-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-strip-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}
@media (max-width: 860px) {
  .why-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .why-strip-card:nth-child(2) { border-right: none; }
  .why-strip-card:nth-child(1),
  .why-strip-card:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .why-strip-grid { grid-template-columns: 1fr; }
  .why-strip-card:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .why-strip-card:nth-child(1),
  .why-strip-card:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ========================
   PROCESS (home) — Domun-style: navy header band + floating cards
   ======================== */
.process {
  background: var(--white);
  padding-bottom: 90px;
}

.process-header {
  position: relative;
  background-image: url('../images/how-it-works.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 90px 24px 130px;
}

.process-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 52, 0.45);
  z-index: 0;
}

.process-header > * { position: relative; z-index: 1; }

.process-header .section-label { color: var(--gold-light); }
.process-header h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 auto 16px;
  max-width: 600px;
}
.process-header p {
  color: rgba(255,255,255,.90);
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: -80px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0 32px 36px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(19,41,75,.18);
}

.pc-num {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 4px solid var(--white);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
  margin: -29px auto 28px;
  box-shadow: 0 8px 24px rgba(19,41,75,.28);
  position: relative;
  z-index: 1;
}

.pc-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

.pc-icon svg { width: 28px; height: 28px; color: var(--gold); }

.process-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.72;
}

@media (max-width: 860px) {
  .process-cards { grid-template-columns: 1fr; gap: 48px; max-width: 480px; }
  .process-header { padding-bottom: 100px; }
}

/* ========================
   VALUES (about) — split layout
   ======================== */
.values {
  padding: 100px 0;
  position: relative;
  background-image: url('../images/about-our-principles.png');
  background-size: cover;
  background-position: center;
}
.values::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,26,52,.55);
  z-index: 0;
}
.values .container { position: relative; z-index: 1; }

.values-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.values-left .section-title { color: var(--white); margin: 0 0 24px; }

.values-intro {
  color: rgba(255,255,255,.92);
  font-size: 0.95rem;
  line-height: 1.8;
}

.values-right { display: flex; flex-direction: column; }

.value-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.value-row:first-child { border-top: 1px solid rgba(255,255,255,.12); }

.value-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  min-width: 26px;
  padding-top: 3px;
  flex-shrink: 0;
}

.value-body h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 8px; font-weight: 700; }
.value-body p { color: rgba(255,255,255,.92); font-size: 0.92rem; line-height: 1.75; margin: 0; }

@media (max-width: 860px) {
  .values-split { grid-template-columns: 1fr; gap: 48px; }
}

/* ========================
   TENANT FLOW — steps + WhatsApp merged
   ======================== */
.tenant-flow { background: var(--white); }

.tf-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.tf-steps {
  list-style: none;
  position: relative;
  margin-top: 8px;
}

.tf-steps::before {
  content: '';
  position: absolute;
  left: 25px; top: 18px; bottom: 18px;
  width: 2px;
  background: repeating-linear-gradient(var(--gold) 0 6px, transparent 6px 14px);
  opacity: .45;
}

.tf-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  padding: 14px 0;
}

.tf-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(19,41,75,.20);
}

.tf-step-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.tf-step-body p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* WhatsApp card */
.tf-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 42px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(13,31,61,.10);
  border: 1px solid var(--border);
}

.tf-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(37,211,102,.08) 0%, rgba(37,211,102,0) 70%);
  pointer-events: none;
}

.tf-card-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  position: relative;
}

.tf-card-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: wa-pulse 2s infinite;
}

.tf-card h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 12px; }
.tf-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; max-width: 360px; margin: 0 auto 28px; }

.wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 32px;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 10px 26px rgba(37,211,102,.32);
}

.wa-cta:hover { background: #1fba59; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37,211,102,.42); }

.tf-note { display: block; margin-top: 18px; font-size: 0.8rem; color: var(--text-muted); opacity: 0.65; }

@media (max-width: 860px) {
  .tf-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ========================
   REFURBISHMENT PROCESS — alternating timeline
   ======================== */
.refurb-process { background: var(--white); }

.rp-timeline {
  position: relative;
  max-width: 860px;
  margin: 64px auto 0;
}

.rp-timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--navy), var(--gold));
  transform: translateX(-50%);
}

.rp-item {
  position: relative;
  width: 50%;
  padding: 0 48px 44px;
  box-sizing: border-box;
}

.rp-item:nth-child(odd) { left: 0; text-align: right; }
.rp-item:nth-child(even) { left: 50%; text-align: left; }
.rp-item:last-child { padding-bottom: 0; }

.rp-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.rp-content:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.rp-content h3 { font-size: 1.2rem; margin-bottom: 8px; }
.rp-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

.rp-node {
  position: absolute;
  top: 4px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(19,41,75,.25);
  z-index: 2;
  border: 4px solid var(--white);
}

.rp-node span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-light);
}

/* node sits on the central line */
.rp-item:nth-child(odd) .rp-node { right: -27px; }
.rp-item:nth-child(even) .rp-node { left: -27px; }

@media (max-width: 768px) {
  .rp-timeline::before { left: 27px; }
  .rp-item, .rp-item:nth-child(even) { width: 100%; left: 0; text-align: left; padding: 0 0 40px 72px; }
  .rp-item:nth-child(odd) { text-align: left; }
  .rp-item:nth-child(odd) .rp-node,
  .rp-item:nth-child(even) .rp-node { left: 0; right: auto; }
}

/* ========================
   WHATSAPP BUTTON
   ======================== */
.whatsapp-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: var(--white);
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(37,211,102,.3);
  margin-top: 32px;
}

.whatsapp-btn:hover {
  background: #1fba59;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,.4);
}

.whatsapp-btn svg { flex-shrink: 0; }

.whatsapp-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(37,211,102,.15);
  border-radius: 50%;
  margin: 0 auto 28px;
  position: relative;
}

.whatsapp-pulse::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(37,211,102,.08);
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

/* Error page */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.error-code {
  font-family: 'Inter', sans-serif;
  font-size: 7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-us-inner { gap: 48px; }
}

/* Nav collapses to hamburger early so it never crowds */
@media (max-width: 980px) {
  .nav-pill-wrap, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-close {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
    opacity: 0.75;
    transition: opacity 0.2s;
  }
  .nav-close:hover { opacity: 1; }
  .nav-pill-wrap.open .nav-close { display: block; }

  .nav-pill-wrap.open,
  .navbar.scrolled .nav-pill-wrap.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep) !important;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: none;
    padding: 0;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-pill-wrap.open .nav-links {
    flex-direction: column;
    gap: 12px;
  }

  .nav-pill-wrap.open .nav-links a { font-size: 1.4rem; padding: 12px 32px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .props-grid { grid-template-columns: 1fr; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-image { aspect-ratio: 16/9; order: -1; }
  .why-us-image .badge-float { right: 14px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .tcarousel { grid-template-columns: 1fr; gap: 40px; }
  .tc-slide { padding: 36px 28px 32px; }
  .tcarousel-sub { max-width: 100%; }
  .tcarousel-heading { font-size: 2rem; }
  .cta-banner-inner { flex-direction: column; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .prop-detail-grid { grid-template-columns: 1fr; }
  .prop-detail-info { position: static; }
  .props-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .table-swipe-hint { display: block !important; }
  .comparison-table { min-width: 420px !important; }
  .comparison-table th,
  .comparison-table td { padding: 14px 14px !important; font-size: 0.82rem !important; }
  .req-grid { grid-template-columns: 1fr !important; }
  .req-grid > div { border-right: none !important; padding: 28px 22px !important; }
}
