/* ========== VARIABLES ========== */
:root {
  /* Sharper, more saturated palette — no dull mustard */
  --navy: #0A2540;
  --navy-dark: #051628;
  --navy-light: #1E4870;
  --gold: #F59E0B;          /* vivid amber, replaces dull #C9A961 */
  --gold-light: #FBBF24;
  --gold-dark: #D97706;
  --emerald: #10B981;       /* for land / agriculture accents */
  --red: #DC2626;           /* sharp CTAs / "hot" tags */
  --cream: #FAFAFA;
  --cream-dark: #F1F1F1;
  --charcoal: #0F172A;
  --gray: #475569;
  --gray-light: #CBD5E1;
  --white: #FFFFFF;
  --success: #22C55E;       /* sharper WhatsApp green */
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.10);
  --shadow-md: 0 10px 28px rgba(10, 37, 64, 0.15);
  --shadow-lg: 0 18px 44px rgba(10, 37, 64, 0.20);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

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

section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.logo-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}

.logo-text .logo-name {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.logo-text .logo-amp {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.logo-sub {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

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

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

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

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm);
  font-size: 14px !important;
}
.nav-cta:hover { background: var(--gold); color: var(--navy-dark) !important; }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

/* ========== HERO (with slider) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--navy-dark);
}

/* Slider background layers — one per slide, cross-fade between them */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 22, 40, 0.88) 0%, rgba(10, 37, 64, 0.65) 55%, rgba(10, 37, 64, 0.35) 100%);
}

.hero-slide.active { opacity: 1; }

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

/* Slide text — fades in when its slide is active */
.hero-text {
  display: none;
  animation: heroFadeUp 0.9s ease both;
}
.hero-text.active { display: block; }

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.5vw, 60px);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.hero p {
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.slider-dot {
  width: 36px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.slider-dot.active {
  background: rgba(255, 255, 255, 0.4);
}

.slider-dot.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: dotProgress 5.5s linear forwards;
  transform-origin: left;
}

@keyframes dotProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Property-type pill row above headline */
.hero-property-types {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
  z-index: 2;
  position: relative;
}

.hero-property-types span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

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

.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px 50px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
}

/* ========== SEARCH BOX (on hero) ========== */
.search-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 720px;
  margin-top: 30px;
  box-shadow: var(--shadow-lg);
}

.search-field {
  flex: 1;
  min-width: 140px;
  padding: 14px 18px;
}

.search-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}

.search-field select,
.search-field input {
  border: none;
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  background: transparent;
  outline: none;
  cursor: pointer;
}

.search-btn {
  background: var(--navy);
  color: var(--white);
  padding: 0 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.search-btn:hover { background: var(--gold); color: var(--navy-dark); }

/* ========== FEATURES ========== */
.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--cream);
  transform: translateY(-6px);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 28px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(-5deg);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray);
  font-size: 15px;
}

/* ========== PROPERTIES GRID ========== */
.properties-section { background: var(--cream); }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.property-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.property-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.property-tag.sale { background: var(--navy); color: var(--white); }
.property-tag.featured { background: var(--gold); }

.property-favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}
.property-favorite:hover { background: var(--gold); color: var(--white); }

.property-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-price {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.property-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  font-family: Arial, Helvetica, sans-serif;
}

.property-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  font-family: Arial, Helvetica, sans-serif;
}

.property-location {
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.property-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--gray-light);
  margin-top: auto;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 13px;
}
.meta-item svg { color: var(--gold); }

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* ========== ABOUT SEHORE ========== */
.about-sehore {
  background: var(--white);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 540px;
  box-shadow: var(--shadow-lg);
}

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

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 22px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-badge-num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.about-badge-text { font-size: 14px; color: var(--charcoal); font-weight: 500; }

.about-text .eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 14px 0 22px;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  list-style: none;
  margin: 28px 0;
}

.about-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--charcoal);
  font-weight: 500;
}

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

/* ========== TEAM ========== */
.team {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.team-photo {
  height: 340px;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;     /* passport: face goes to top of frame */
  transition: transform 0.6s ease;
}

.team-card:hover .team-photo img { transform: scale(1.05); }

/* Subtle gradient overlay at bottom of photo for name-label legibility */
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 37, 64, 0.55) 100%);
}

.team-photo .photo-name-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.team-photo .photo-name-tag small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

.team-info { padding: 24px; }

.team-info h3 {
  font-size: 20px;
  margin-bottom: 4px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  font-weight: 600;
}

.team-role {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}
.team-social a:hover { background: var(--gold); color: var(--white); }

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--navy);
  color: var(--white);
}

.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255, 255, 255, 0.7); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.testi-stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-size: 18px;
}

.testi-text {
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

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

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

.testi-info strong {
  display: block;
  color: var(--white);
}

.testi-info span {
  color: var(--gold-light);
  font-size: 13px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.92), rgba(10, 37, 64, 0.78)),
    url('../assets/slides/farmhouse.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer .logo { color: var(--white); margin-bottom: 18px; }

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: 14px;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }

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

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

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

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-8deg);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-weight: 500;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-dark);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; right: 78px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ========== PAGE BANNER (inner pages) ========== */
.page-banner {
  padding: 160px 0 80px;
  background-image: linear-gradient(135deg, rgba(10, 37, 64, 0.82), rgba(10, 37, 64, 0.55)),
    url('../assets/slides/banner.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 14px;
}

.page-banner .breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 1px;
}

.page-banner .breadcrumb a { color: var(--gold); }

/* ========== FILTERS BAR (properties page) ========== */
.filters {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: end;
}

.filter-group { flex: 1; min-width: 160px; }

.filter-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}

.filter-group select:focus,
.filter-group input:focus {
  border-color: var(--gold);
  background: var(--white);
}

/* ========== CONTACT FORM ========== */
.contact-section { padding: 80px 0; background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-md);
  height: fit-content;
}

.contact-info h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 14px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: var(--white);
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
}

.contact-info-item a { color: rgba(255, 255, 255, 0.85); }
.contact-info-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

/* ========== PROPERTY DETAIL ========== */
.property-detail {
  padding: 140px 0 80px;
}

.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-main {
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.gallery-side > div {
  height: 253px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.gallery-side img { width: 100%; height: 100%; object-fit: cover; }

.detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.detail-main h1 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 10px;
}

.detail-location {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-overview {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}

.overview-item { text-align: center; }
.overview-item .label {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.overview-item .value {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.detail-section { margin-bottom: 36px; }
.detail-section h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.detail-section p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}

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

.detail-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.detail-price-card {
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.detail-price-card .price {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.detail-price-card .sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 24px;
}

.detail-price-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .about-grid, .contact-grid, .detail-content, .property-gallery { grid-template-columns: 1fr; }
  .about-image, .gallery-main { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stats { gap: 36px; padding: 22px 30px; }
  .detail-sidebar { position: static; }
  .detail-overview { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero { min-height: 90vh; padding: 110px 0 80px; }
  .hero-stats { position: static; transform: none; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-info, .contact-form { padding: 36px 24px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .slider-arrow { width: 40px; height: 40px; }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .slider-dot { width: 26px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .search-box { padding: 8px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .container { padding: 0 18px; }
  .logo { font-size: 18px; gap: 10px; }
  .logo-mark { width: 40px; height: 40px; }
  .logo-sub { font-size: 9px; letter-spacing: 1.8px; }
}
