/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1B4B7F;
  margin-bottom: 16px;
}

h1 { font-size: 48px; letter-spacing: -1px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p { margin-bottom: 16px; }

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li { margin-bottom: 8px; }

a {
  color: #1B4B7F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #C19A6B;
}

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(27, 75, 127, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  width: auto;
}

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

.main-nav a {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #C19A6B;
  color: #1B4B7F;
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #1B4B7F;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(27, 75, 127, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #143A63;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1B4B7F 0%, #143A63 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: #FFFFFF;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 10px;
  color: #C19A6B;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background: linear-gradient(135deg, #1B4B7F 0%, #2E5F8F 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.indicator {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

/* ========================================
   HERO INTERNAL
   ======================================== */

.hero-internal {
  background: linear-gradient(135deg, #1B4B7F 0%, #2E5F8F 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.hero-internal h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #C19A6B;
  color: #FFFFFF;
  border-color: #C19A6B;
}

.btn-primary:hover {
  background: #A67C52;
  border-color: #A67C52;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(193, 154, 107, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #1B4B7F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ========================================
   CARDS & GRIDS
   ======================================== */

.services-grid,
.neighborhoods-grid,
.values-grid,
.benefits-grid,
.categories-grid,
.info-grid,
.team-grid,
.properties-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-card,
.neighborhood-card,
.value-card,
.benefit-card,
.category-card,
.info-card,
.team-card,
.property-card,
.action-card,
.contact-card,
.team-contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27, 75, 127, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.neighborhood-card:hover,
.value-card:hover,
.benefit-card:hover,
.category-card:hover,
.info-card:hover,
.team-card:hover,
.property-card:hover,
.action-card:hover,
.contact-card:hover,
.team-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(27, 75, 127, 0.15);
}

.service-card h3,
.neighborhood-card h3,
.value-card h3,
.benefit-card h3,
.category-card h3,
.info-card h3,
.team-card h3,
.property-card h3,
.action-card h3,
.contact-card h3,
.team-contact-card h3 {
  color: #1B4B7F;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p,
.neighborhood-card p,
.value-card p,
.benefit-card p,
.category-card p,
.info-card p,
.team-card p,
.property-card p,
.action-card p,
.contact-card p,
.team-contact-card p {
  color: #5A6C7D;
  line-height: 1.7;
  margin-bottom: 12px;
}

.price,
.price-range {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #C19A6B;
  margin-top: 16px;
  font-family: 'Playfair Display', serif;
}

.pricing {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1B4B7F;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #E8F4F8;
}

.role {
  font-size: 14px;
  color: #C19A6B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin: 48px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  min-width: 200px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #1B4B7F;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5A6C7D;
  font-weight: 600;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  background: #E8F4F8;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1B4B7F;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27, 75, 127, 0.08);
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 80px;
  color: #E8F4F8;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: #1B4B7F;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.testimonial-featured {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27, 75, 127, 0.08);
  margin-top: 32px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-featured p {
  font-size: 18px;
  line-height: 1.7;
  color: #2C3E50;
  margin-bottom: 16px;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, #1B4B7F 0%, #2E5F8F 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 24px;
  margin: 60px auto;
  max-width: 1200px;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.contact-info {
  margin-top: 24px;
  font-size: 16px;
  opacity: 0.9;
}

/* ========================================
   SECTION TITLES
   ======================================== */

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  max-width: 700px;
  margin: 0 auto 48px;
}

section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 16px;
  color: #1B4B7F;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
  padding: 60px 20px;
}

.content-section h2 {
  text-align: left;
  margin-bottom: 32px;
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #2C3E50;
  margin-bottom: 24px;
}

.mission-statement {
  font-size: 20px;
  font-weight: 600;
  color: #1B4B7F;
  padding: 32px;
  background: #E8F4F8;
  border-left: 6px solid #C19A6B;
  border-radius: 8px;
  margin: 32px 0;
}

/* ========================================
   TIMELINE
   ======================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 48px 0;
  padding-left: 32px;
  border-left: 4px solid #C19A6B;
}

.timeline-item {
  position: relative;
  padding: 24px;
  background: #E8F4F8;
  border-radius: 12px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 30px;
  width: 20px;
  height: 20px;
  background: #C19A6B;
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(193, 154, 107, 0.3);
}

.timeline-item h3 {
  color: #1B4B7F;
  margin-bottom: 12px;
}

.timeline-item p {
  color: #5A6C7D;
}

/* ========================================
   PROCESS STEPS
   ======================================== */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 48px 0;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27, 75, 127, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.step::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #C19A6B;
  border-radius: 50%;
}

.step h3 {
  color: #C19A6B;
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.step p {
  color: #5A6C7D;
  font-size: 15px;
}

/* ========================================
   SERVICE DETAILS
   ======================================== */

.service-detail {
  padding: 40px;
  margin-bottom: 40px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27, 75, 127, 0.08);
  border-left: 6px solid #C19A6B;
}

.service-detail h2 {
  text-align: left;
  color: #1B4B7F;
  margin-bottom: 24px;
}

.service-detail ul {
  list-style: none;
  margin: 24px 0;
}

.service-detail ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2C3E50;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C19A6B;
  font-weight: 700;
  font-size: 18px;
}

/* ========================================
   FILTERS
   ======================================== */

.filters-section {
  background: #E8F4F8;
  padding: 40px 20px;
  border-radius: 16px;
  margin-bottom: 48px;
}

.filters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.filter-group {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
  color: #1B4B7F;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select {
  padding: 14px 16px;
  border: 3px solid #FFFFFF;
  border-radius: 8px;
  background: #FFFFFF;
  color: #2C3E50;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: #C19A6B;
  box-shadow: 0 4px 12px rgba(193, 154, 107, 0.2);
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 48px 0;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.contact-method {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background: #E8F4F8;
  border-radius: 16px;
  text-align: center;
}

.contact-method h3 {
  color: #1B4B7F;
  margin-bottom: 16px;
}

.contact-method p {
  color: #2C3E50;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hours {
  font-size: 14px;
  color: #5A6C7D;
  font-weight: 400;
}

/* ========================================
   OFFICE HOURS
   ======================================== */

.schedule-table {
  width: 100%;
  max-width: 600px;
  margin: 32px auto;
  border-collapse: collapse;
}

.schedule-table tr {
  border-bottom: 2px solid #E8F4F8;
}

.schedule-table td {
  padding: 16px 24px;
  font-size: 16px;
}

.schedule-table td:first-child {
  font-weight: 600;
  color: #1B4B7F;
}

.schedule-table td:last-child {
  text-align: right;
  color: #2C3E50;
}

.note {
  text-align: center;
  font-style: italic;
  color: #5A6C7D;
  margin-top: 16px;
}

/* ========================================
   MAP SECTION
   ======================================== */

.map-info {
  background: #E8F4F8;
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
}

.map-info p {
  margin-bottom: 16px;
  color: #2C3E50;
}

.map-info strong {
  color: #1B4B7F;
  font-weight: 700;
}

/* ========================================
   MARKET DATA
   ======================================== */

.market-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.market-stats .stat {
  background: #E8F4F8;
  padding: 32px;
  border-radius: 16px;
  min-width: 240px;
}

.label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5A6C7D;
  font-weight: 600;
  margin-bottom: 8px;
}

.value {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #1B4B7F;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.trend {
  display: inline-block;
  padding: 4px 12px;
  background: #C19A6B;
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-section {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-content h1 {
  color: #1B4B7F;
  margin-bottom: 24px;
}

.lead {
  font-size: 20px;
  color: #2C3E50;
  line-height: 1.7;
  margin-bottom: 48px;
}

.next-steps {
  background: #E8F4F8;
  padding: 40px;
  border-radius: 16px;
  margin: 48px 0;
  text-align: left;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 32px;
}

.next-steps ol {
  max-width: 600px;
  margin: 0 auto;
}

.next-steps li {
  font-size: 16px;
  color: #2C3E50;
  padding: 12px 0;
  line-height: 1.6;
}

.response-time {
  display: inline-block;
  padding: 16px 32px;
  background: #C19A6B;
  color: #FFFFFF;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 32px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  color: #1B4B7F;
  margin-bottom: 32px;
}

.legal-page h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1B4B7F;
}

.legal-page h3 {
  text-align: left;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C3E50;
}

.legal-page p {
  font-size: 16px;
  line-height: 1.8;
  color: #2C3E50;
  margin-bottom: 20px;
}

.legal-page ul {
  margin: 20px 0 20px 32px;
}

.legal-page li {
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page strong {
  color: #1B4B7F;
  font-weight: 700;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: linear-gradient(135deg, #1B4B7F 0%, #143A63 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  display: block;
}

.footer-col a:hover {
  color: #C19A6B;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1B4B7F;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #C19A6B;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: #A67C52;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-reject:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #FFFFFF;
  text-decoration: underline;
  padding: 12px 16px;
}

.cookie-btn-settings:hover {
  color: #C19A6B;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #5A6C7D;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1B4B7F;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #1B4B7F;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #E8F4F8;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  color: #1B4B7F;
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #CCC;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background: #C19A6B;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  .hero-internal h1 { font-size: 32px; }
  
  .main-nav { display: none; }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .service-card,
  .neighborhood-card,
  .value-card,
  .benefit-card,
  .category-card,
  .info-card,
  .team-card,
  .property-card,
  .action-card,
  .contact-card,
  .team-contact-card {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat {
    min-width: 100%;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .filter-group {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .timeline {
    padding-left: 24px;
  }
  
  .timeline-item::before {
    left: -36px;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-text {
    flex: 1 1 100%;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
  
  .schedule-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  
  .logo { height: 50px; }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .indicator {
    width: 100%;
    text-align: center;
  }
  
  .stat-number { font-size: 40px; }
  
  .value { font-size: 32px; }
  
  .price,
  .price-range {
    font-size: 24px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ========================================
   ANIMATIONS
   ======================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 3px solid #C19A6B;
  outline-offset: 2px;
}

button:focus,
a:focus,
select:focus {
  outline: 3px solid #C19A6B;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
}