/* ============================================
   QUANTA FORM - PROFESSIONAL CORPORATE CSS
   Modern, Trustworthy Real Estate Design
   ============================================ */

/* CSS RESET & BASE */
* {
  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, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #F4F1E8;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C5F7C;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #555555;
}

a {
  color: #2C5F7C;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E8A445;
}

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

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #2C5F7C;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(44, 95, 124, 0.3);
}

.btn-primary:hover {
  background-color: #1E4A5F;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.4);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #E8A445;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(232, 164, 69, 0.3);
}

.btn-secondary:hover {
  background-color: #D69330;
  box-shadow: 0 4px 12px rgba(232, 164, 69, 0.4);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2C5F7C;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1E4A5F;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1002;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 0 40px 0;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2C5F7C;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #E8A445;
}

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

.mobile-nav a {
  padding: 16px 32px;
  color: #2C5F7C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #F4F1E8;
  color: #E8A445;
  padding-left: 40px;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C5F7C;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E8A445;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #E8A445;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #F4F1E8;
}

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

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

.indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.indicator .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #E8A445;
}

.indicator .label {
  font-size: 14px;
  color: #F4F1E8;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  color: #FFFFFF;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.page-hero p {
  color: #F4F1E8;
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: #F4F1E8;
}

.breadcrumb a {
  color: #F4F1E8;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #E8A445;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.benefits,
.services-overview,
.process,
.neighborhoods,
.testimonials,
.services-detailed,
.process-timeline,
.why-choose,
.company-story,
.mission-values,
.statistics,
.local-expertise,
.testimonials-about,
.office-info,
.neighborhoods-intro,
.neighborhoods-grid-section,
.city-guide,
.contact-methods,
.contact-form-section,
.office-map,
.faq-contact,
.business-hours,
.services-intro,
.alert-signup,
.help-section {
  padding: 60px 20px;
}

.benefits { background-color: #FFFFFF; }
.services-overview { background-color: #F4F1E8; }
.process { background-color: #FFFFFF; }
.neighborhoods { background-color: #F4F1E8; }
.testimonials { background-color: #FFFFFF; }

/* SECTION TITLES */
section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C5F7C;
}

/* GRID LAYOUTS */
.benefits-grid,
.services-grid,
.reasons-grid,
.values-grid,
.stats-grid,
.guide-grid,
.methods-grid,
.testimonials-grid,
.neighborhoods-grid,
.suggestions-grid,
.listings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* CARDS */
.benefit-card,
.service-card,
.neighborhood-card,
.reason-card,
.value-card,
.stat-card,
.guide-item,
.method-card,
.suggestion-card,
.property-card,
.service-detail-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
}

.benefit-card:hover,
.service-card:hover,
.neighborhood-card:hover,
.reason-card:hover,
.value-card:hover,
.property-card:hover,
.service-detail-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.benefit-card img,
.service-card img,
.method-card img,
.service-detail-card img {
  width: 64px;
  height: 64px;
}

.benefit-card h3,
.service-card h3,
.neighborhood-card h3,
.reason-card h3,
.value-card h3,
.guide-item h3,
.method-card h3,
.suggestion-card h3,
.service-detail-card h2 {
  color: #2C5F7C;
  margin-bottom: 8px;
}

.benefit-card p,
.service-card p,
.neighborhood-card p,
.reason-card p,
.value-card p,
.guide-item p,
.method-card p,
.suggestion-card p {
  color: #555555;
  flex-grow: 1;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #E8A445;
  margin: 8px 0;
}

.link {
  color: #2C5F7C;
  font-weight: 600;
  transition: color 0.3s ease;
}

.link:hover {
  color: #E8A445;
}

/* PROCESS STEPS */
.process-steps,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.step,
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2C5F7C;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

.step h3,
.timeline-step h3 {
  color: #2C5F7C;
  margin-bottom: 8px;
}

.step p,
.timeline-step p {
  color: #555555;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background-color: #F4F1E8;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  color: #E8A445;
  font-size: 20px;
  letter-spacing: 4px;
}

.testimonial-card p {
  color: #333333;
  font-style: italic;
  line-height: 1.8;
}

.client-name {
  font-weight: 600;
  color: #2C5F7C;
  font-style: normal;
  margin-top: 8px;
}

/* CTA BANNER */
.cta-banner,
.cta-consultation,
.cta-meet,
.cta-neighborhood {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  margin: 60px 0;
  text-align: center;
}

.cta-content h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-content p {
  color: #F4F1E8;
  font-size: 18px;
  margin-bottom: 32px;
}

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

/* PROPERTY LISTINGS */
.search-filters {
  background-color: #FFFFFF;
  padding: 40px 20px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  justify-content: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 200px;
  min-width: 150px;
}

.filter-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2C5F7C;
  font-size: 14px;
}

.filter-select,
.filter-input,
.input-field,
.textarea {
  padding: 12px 16px;
  border: 2px solid #E8E8E8;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
  width: 100%;
}

.filter-select:focus,
.filter-input:focus,
.input-field:focus,
.textarea:focus {
  outline: none;
  border-color: #2C5F7C;
}

.results-count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2C5F7C;
  margin-bottom: 24px;
  font-size: 18px;
}

.property-listings {
  padding: 40px 20px;
}

.property-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  max-width: 400px;
}

.property-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #E8A445;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.property-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.property-details h3 {
  color: #2C5F7C;
  margin-bottom: 4px;
}

.location {
  color: #777777;
  font-size: 14px;
}

.property-info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.property-info span {
  color: #555555;
  font-size: 14px;
}

.property-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.property-features img {
  width: 32px;
  height: 32px;
}

.availability {
  color: #2C5F7C;
  font-weight: 600;
  font-size: 14px;
}

/* SERVICE DETAIL CARDS */
.service-detail-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  max-width: 100%;
}

.service-detail-card h2 {
  text-align: left;
  margin-bottom: 16px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.benefit-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #555555;
}

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8A445;
  font-weight: 700;
  font-size: 18px;
}

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #E8A445;
  margin: 24px 0;
}

.service-price.highlight {
  color: #2C5F7C;
}

/* STATISTICS */
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px;
  background-color: #F4F1E8;
  border-radius: 8px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #2C5F7C;
}

.stat-label {
  font-size: 14px;
  color: #555555;
  text-align: center;
}

/* TIMELINE MILESTONES */
.timeline-milestones {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.milestone .year {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #E8A445;
}

.milestone p {
  color: #555555;
  text-align: center;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #555555;
}

.mission {
  font-size: 20px;
  font-weight: 600;
  color: #2C5F7C;
  font-style: italic;
}

/* CONTACT PAGE */
.response-time {
  font-weight: 600;
  color: #E8A445;
}

.method-card {
  text-align: center;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.method-detail {
  color: #777777;
  font-size: 14px;
}

.note {
  color: #E8A445;
  font-weight: 600;
  font-size: 14px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-note {
  background-color: #F4F1E8;
  border-left: 4px solid #E8A445;
  padding: 20px;
  margin-bottom: 32px;
  border-radius: 4px;
}

.form-note p {
  margin-bottom: 8px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2C5F7C;
  font-size: 14px;
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.required-note {
  color: #777777;
  font-size: 14px;
}

.map-info {
  background-color: #F4F1E8;
  padding: 32px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.map-info p {
  margin-bottom: 12px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background-color: #F4F1E8;
  padding: 24px;
  border-radius: 8px;
}

.faq-item h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.faq-item p {
  color: #555555;
}

/* BUSINESS HOURS */
.hours-table {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #E8E8E8;
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2C5F7C;
}

.time {
  color: #555555;
}

.hours-note {
  text-align: center;
  color: #777777;
  font-size: 14px;
  margin-top: 16px;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-content .text-section {
  max-width: 900px;
  text-align: left;
}

.legal-content h2 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 32px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #555555;
}

.last-updated {
  color: #777777;
  font-size: 14px;
  font-style: italic;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #E8A445;
  color: #FFFFFF;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thank-you-hero h1 {
  color: #FFFFFF;
}

.subtitle {
  color: #F4F1E8;
  font-size: 20px;
}

.confirmation {
  color: #E8A445;
  font-weight: 600;
  margin-top: 16px;
}

.next-steps,
.meanwhile,
.contact-reminder,
.testimonial-snippet,
.back-navigation {
  padding: 60px 20px;
}

.next-steps { background-color: #F4F1E8; }
.meanwhile { background-color: #FFFFFF; }
.contact-reminder { background-color: #F4F1E8; }
.testimonial-snippet { background-color: #FFFFFF; }
.back-navigation { background-color: #F4F1E8; }

.steps-timeline {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2C5F7C;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F7C;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* OFFICE INFO */
.office-details {
  max-width: 700px;
  margin: 0 auto;
}

.office-text {
  background-color: #F4F1E8;
  padding: 32px;
  border-radius: 8px;
}

.office-text p {
  margin-bottom: 16px;
}

/* ALERT SIGNUP */
.alert-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.alert-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
  flex-wrap: wrap;
}

.alert-form .input-field {
  flex: 1 1 300px;
  max-width: 400px;
}

.privacy-note {
  font-size: 14px;
  color: #777777;
}

/* HELP SECTION */
.help-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  background-color: #2C5F7C;
  color: #F4F1E8;
  padding: 60px 20px 20px;
}

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

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h4 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-column p,
.footer-column a {
  color: #F4F1E8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column a:hover {
  color: #E8A445;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 241, 232, 0.2);
}

.footer-bottom p {
  color: #F4F1E8;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner-content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner-content p {
  color: #555555;
  font-size: 14px;
  margin: 0;
}

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

.cookie-banner-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

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

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: #2C5F7C;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #2C5F7C;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #E8A445;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F4F1E8;
  border-radius: 4px;
}

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

.cookie-category h4 {
  color: #2C5F7C;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #2C5F7C;
}

input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide main navigation on mobile */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  /* Single column layouts */
  .trust-indicators {
    gap: 24px;
  }

  .benefits-grid,
  .services-grid,
  .process-steps,
  .neighborhoods-grid,
  .testimonials-grid,
  .reasons-grid,
  .values-grid,
  .stats-grid,
  .guide-grid,
  .methods-grid,
  .suggestions-grid,
  .listings-grid,
  .timeline,
  .steps-timeline {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .neighborhood-card,
  .testimonial-card,
  .reason-card,
  .value-card,
  .stat-card,
  .guide-item,
  .method-card,
  .suggestion-card,
  .property-card,
  .service-detail-card,
  .step,
  .timeline-step,
  .step-item {
    max-width: 100%;
    width: 100%;
  }

  /* Hero CTA buttons */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Filter adjustments */
  .filters-wrapper {
    flex-direction: column;
  }

  .filter-group {
    width: 100%;
  }

  .filters-wrapper .btn {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  /* Cookie banner */
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-buttons {
    flex-direction: column;
  }

  .cookie-banner-buttons .btn {
    width: 100%;
  }

  /* Alert form */
  .alert-form {
    flex-direction: column;
  }

  .alert-form .input-field {
    max-width: 100%;
  }

  .alert-form .btn {
    width: 100%;
  }

  /* Contact form */
  .cta-buttons,
  .nav-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn,
  .nav-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Further reduce typography */
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }

  .hero h1 {
    font-size: 28px;
  }

  /* Reduce padding */
  .hero,
  .page-hero,
  section {
    padding: 40px 16px;
  }

  .card,
  .benefit-card,
  .service-card,
  .testimonial-card {
    padding: 20px;
  }

  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    background-color: #FFFFFF;
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #E8A445;
  outline-offset: 2px;
}

.btn:focus,
.input-field:focus,
.filter-select:focus {
  outline: 2px solid #E8A445;
  outline-offset: 2px;
}

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

.benefit-card,
.service-card,
.property-card {
  animation: fadeIn 0.6s ease forwards;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.pt-60 { padding-top: 60px; }
.pb-60 { padding-bottom: 60px; }