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

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.serif {
  font-family: "Source Serif 4", Georgia, serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.header-top {
  background: #1e3a5f;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.header-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top a {
  color: #fff;
  opacity: .9;
}

.header-top a:hover {
  opacity: 1;
}

.header-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #1e3a5f;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: "Source Serif 4", serif;
  font-size: 22px;
  font-weight: 600;
  color: #1e3a5f;
  letter-spacing: -.5px;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}

nav a:hover,
nav a.active {
  border-bottom-color: #1e3a5f;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all .2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #1e3a5f;
  color: #fff;
}

.btn-primary:hover {
  background: #2a4a73;
}

.btn-outline {
  background: transparent;
  color: #1e3a5f;
  border: 1px solid #1e3a5f;
}

.btn-outline:hover {
  background: #1e3a5f;
  color: #fff;
}

/* Hero */
.hero {
  margin-top: 113px;
  background: #1e3a5f;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80) center/cover;
  opacity: .15;
}

.hero-grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Source Serif 4", serif;
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.hero-feature svg {
  color: #4ade80;
}

/* Hero Form */
.hero-form-container {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.multi-step-form h2 {
  font-family: "Source Serif 4", serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.multi-step-form h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.multi-step-form p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.progress-steps {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 24px 0;
}

.progress-steps .step {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  border-bottom: 2px solid #ddd;
  font-size: 12px;
  font-weight: 500;
  color: #888;
}

.progress-steps .step.active {
  font-weight: 600;
  color: #1e3a5f;
  border-bottom-color: #1e3a5f;
}

.progress-steps .step.completed {
  color: #1a1a1a;
  border-bottom-color: #4ade80;
}

/* Service Choice */
.service-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.service-option input {
  display: none;
}

.service-card-option {
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}

.service-card-option:hover {
  border-color: #1e3a5f;
}

.service-option input:checked + .service-card-option {
  border-color: #1e3a5f;
  background: #f8fafc;
  box-shadow: 0 0 0 1px #1e3a5f;
}

.service-card-option svg {
  color: #1e3a5f;
  margin-bottom: 12px;
}

.service-card-option span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Form Elements */
.multi-step-form label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin-bottom: 6px;
  padding-left: 2px;
}

.multi-step-form input[type="text"],
.multi-step-form input[type="number"],
.multi-step-form input[type="email"],
.multi-step-form input[type="tel"],
.multi-step-form select,
.multi-step-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 16px;
  font-family: inherit;
}

.multi-step-form input:focus,
.multi-step-form select:focus,
.multi-step-form textarea:focus {
  border-color: #1e3a5f;
}

.multi-step-form textarea {
  min-height: 100px;
  resize: vertical;
}

.multi-step-form select {
  appearance: auto;
  cursor: pointer;
}

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

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.step-header h3 {
  margin: 0;
}

/* Checkbox */
.terms-row {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 2px;
}

/* Buttons */
.d-flex {
  display: flex;
}

.justify-end {
  justify-content: flex-end;
  gap: 12px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  background: #1e3a5f;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}

.action-button:hover {
  background: #2a4a73;
  transform: scale(0.98);
}

.prev-step {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: #666;
  border: none;
  cursor: pointer;
  transition: color .2s;
}

.prev-step:hover {
  color: #1a1a1a;
}

/* Glow Animation */
.glow {
  overflow: hidden;
  animation: pulse2 1.75s 2;
}

.glow:after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(180deg, rgba(255,255,255, .5), transparent 100%);
  transform: rotate(60deg) translate(-5em, 8.5em);
  opacity: 0;
  pointer-events: none;
  animation: shine 7s infinite forwards;
  animation-delay: .75s;
}

@keyframes shine {
  0% { opacity: 0; }
  10% { opacity: 1; }
  20%, 100% { opacity: 0; transform: rotate(60deg) translate(1em,-9em); }
}

@keyframes pulse2 {
  0% { transform: scale(0.95); }
  70% { transform: scale(1); }
  100% { transform: scale(0.95); }
}

/* Legacy hero-content for backwards compatibility */
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

.hero h1 {
  font-family: "Source Serif 4", serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  max-width: 600px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin-bottom: 32px;
}

/* Search Box */
.search-box {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  max-width: 640px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.search-box h3 {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.search-input-wrapper {
  display: flex;
  gap: 12px;
}

.search-input {
  flex: 1;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color .2s;
}

.search-input:focus {
  border-color: #1e3a5f;
}

.search-input::placeholder {
  color: #999;
}

/* Quick Links */
.quick-links {
  background: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
}

.quick-links-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}

.quick-link:hover {
  color: #1e3a5f;
  border-bottom-color: #1e3a5f;
}

.quick-link svg {
  width: 20px;
  height: 20px;
  color: #1e3a5f;
}

/* Sections */
section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-family: "Source Serif 4", serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}

/* Properties Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.property-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

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

.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1e3a5f;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
}

.property-badge.sold {
  background: #c0392b;
}

.property-info {
  padding: 20px;
}

.property-address {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.property-area {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.property-details {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #666;
}

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

.property-price {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a5f;
  margin-top: 16px;
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* Services */
.services-section {
  background: #f8f8f8;
}

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

.service-card {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card a {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a5f;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.service-card a:hover {
  text-decoration: underline;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid #f0f0f0;
}

.team-name {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.team-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.team-contact {
  font-size: 13px;
  color: #1e3a5f;
}

/* CTA Section */
.cta-section {
  background: #1e3a5f;
  text-align: center;
}

.cta-section h2 {
  font-family: "Source Serif 4", serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 32px;
}

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

.btn-white {
  background: #fff;
  color: #1e3a5f;
}

.btn-white:hover {
  background: #f0f0f0;
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Footer */
footer {
  background: #0f1f2e;
  color: #fff;
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Content Split (Two-column with image) */
.content-split {
  padding: 80px 0;
}

.content-split:nth-child(even) {
  background: #f8f9fa;
}

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

.content-split.reverse .split-grid {
  direction: rtl;
}

.content-split.reverse .split-grid > * {
  direction: ltr;
}

.split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.split-text h2 {
  font-family: "Source Serif 4", serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e3a5f;
}

.split-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.split-text .btn {
  margin-top: 8px;
}

/* Values List (in split layout) */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-item svg {
  flex-shrink: 0;
  color: #1e3a5f;
  margin-top: 4px;
}

.value-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1e3a5f;
}

.value-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* CTA Split variation */
.cta-split {
  background: #f8f9fa;
}

/* Page Hero (Subpages) */
.page-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
  padding: 160px 0 80px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-family: "Source Serif 4", serif;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* About Content */
.about-content {
  padding: 80px 0;
}

.about-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.about-intro h2 {
  font-family: "Source Serif 4", serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1e3a5f;
}

.about-intro p {
  font-size: 17px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-svg {
  color: #1e3a5f;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e3a5f;
}

.value-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* Vertical Timeline */
.timeline-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1e3a5f, #3d5a80);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  
  /* Animation initial state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #1e3a5f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
  z-index: 1;
}

.timeline-number {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.timeline-content {
  flex: 1;
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.timeline-content h3 {
  font-family: "Source Serif 4", serif;
  font-size: 20px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Property Listings */
.listings-section {
  padding: 80px 0;
}

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

.listing-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.listing-card.sold {
  opacity: 0.8;
}

.listing-card.sold:hover {
  transform: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.listing-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.listing-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1e3a5f;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}

.listing-sold-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc3545;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}

.listing-content {
  padding: 20px;
}

.listing-address {
  font-family: "Source Serif 4", serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1e3a5f;
}

.listing-area {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.listing-details {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.listing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.listing-price {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a5f;
}

.listing-price.sold-price {
  text-decoration: line-through;
  color: #999;
}

.listing-fee {
  font-size: 13px;
  color: #666;
}

/* Sold Section */
.sold-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.sold-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Responsive */
@media (max-width: 1024px) {
  .properties-grid,
  .services-grid,
  .team-grid,
  .footer-grid,
  .values-grid,
  .listings-grid,
  .sold-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .split-grid {
    gap: 40px;
  }
}

/* Empathy Section */
.empathy-section {
  background: #f8f8f8;
  padding: 64px 24px;
}

.empathy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.empathy-content h2 {
  font-family: "Source Serif 4", serif;
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.empathy-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.empathy-content p:last-child {
  margin-bottom: 0;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 24px;
}

.process-number {
  width: 56px;
  height: 56px;
  background: #1e3a5f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* USP Section */
.usp-section {
  background: #f8f8f8;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e5e5e5;
}

.usp-icon {
  width: 64px;
  height: 64px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #1e3a5f;
}

.usp-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.usp-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  padding: 28px;
  background: #f8f8f8;
  border-radius: 8px;
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-text h1 {
    font-size: 36px;
  }
  
  .service-choice {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-grid,
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .hero h1,
  .hero-text h1 {
    font-size: 32px;
  }
  
  .hero-grid {
    padding: 40px 24px;
  }
  
  .hero-form-container {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .service-choice {
    grid-template-columns: 1fr;
  }
  
  .quick-links-inner {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .empathy-content h2 {
    font-size: 26px;
  }
  
  .properties-grid,
  .services-grid,
  .team-grid,
  .footer-grid,
  .process-grid,
  .usp-grid,
  .faq-grid,
  .values-grid,
  .listings-grid,
  .sold-grid {
    grid-template-columns: 1fr;
  }
  
  .page-hero {
    padding: 120px 0 60px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  .split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .content-split.reverse .split-grid {
    direction: ltr;
  }
  
  .split-image img {
    height: 300px;
  }
  
  .content-split {
    padding: 60px 0;
  }
  
  .timeline-item {
    gap: 16px;
  }
  
  .timeline-marker {
    width: 32px;
    height: 32px;
  }
  
  .timeline-number {
    font-size: 14px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline::before {
    left: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
