/* ============================================
   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', Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY - WARM & FRIENDLY STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A3D5C;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

.subheadline {
  font-size: 18px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.section-subheading {
  font-size: 16px;
  color: #666666;
  margin-bottom: 32px;
  text-align: center;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

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

/* ============================================
   HEADER & NAVIGATION - WARM COLORS
   ============================================ */

header {
  background: linear-gradient(135deg, #2C5F8D 0%, #1A3D5C 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: rgba(244, 164, 96, 0.2);
  color: #F4A460;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - SMOOTH ANIMATIONS
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #F4A460 0%, #E89B5C 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(244, 164, 96, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(244, 164, 96, 0.5);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F8D 0%, #1A3D5C 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(244, 164, 96, 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(244, 164, 96, 0.4);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  background: rgba(244, 164, 96, 0.3);
  transform: translateX(8px);
}

/* ============================================
   BUTTONS - ROUNDED & FRIENDLY
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #F4A460 0%, #E89B5C 100%);
  color: #FFFFFF;
  border-color: #F4A460;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E89B5C 0%, #D88A4D 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 164, 96, 0.3);
}

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

.btn-secondary:hover {
  background: #2C5F8D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 95, 141, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ============================================
   HERO SECTION - WARM GRADIENT
   ============================================ */

.hero {
  background: linear-gradient(135deg, #5A9FD4 0%, #2C5F8D 50%, #1A3D5C 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

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

.hero .subheadline {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

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

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

/* ============================================
   CARD LAYOUTS - SOFT SHADOWS & ROUNDED
   ============================================ */

.benefits-grid,
.services-grid,
.testimonials-grid,
.values-grid,
.team-grid,
.stats-grid,
.properties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

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

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.property-card:hover,
.contact-card:hover,
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(244, 164, 96, 0.2);
}

.benefit-card img,
.contact-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.testimonial-card {
  background: #FFF8F0;
  border-left: 4px solid #F4A460;
  padding: 24px;
}

.testimonial-card p {
  font-style: italic;
  color: #333333;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.author strong {
  color: #1A3D5C;
  font-weight: 600;
}

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

/* ============================================
   PROCESS STEPS - NUMBERED DESIGN
   ============================================ */

.process-steps,
.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.step,
.timeline-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  background: linear-gradient(135deg, #F4A460 0%, #E89B5C 100%);
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.duration {
  font-size: 14px;
  color: #999999;
  font-style: italic;
  margin-top: 12px;
}

/* ============================================
   STATS SECTION - HIGHLIGHTED NUMBERS
   ============================================ */

.stats {
  background: linear-gradient(135deg, #5A9FD4 0%, #2C5F8D 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.stats h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #F4A460;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 500;
}

/* ============================================
   CTA SECTIONS - ENGAGING & WARM
   ============================================ */

.dual-cta,
.cta-banner,
.cta-consultation,
.cta-start,
.cta-form {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 100%);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-wrapper {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-box {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.cta-box h3 {
  color: #1A3D5C;
  margin-bottom: 16px;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */

.services-overview {
  text-align: center;
  padding: 60px 20px;
}

.services-overview h2 {
  margin-bottom: 16px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-card h3 {
  color: #1A3D5C;
  margin-bottom: 12px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #F4A460;
  margin: 16px 0;
}

.service-card ul {
  list-style: none;
  margin-top: 16px;
  padding-left: 0;
}

.service-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #555555;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A460;
  font-weight: 700;
}

/* ============================================
   PROPERTY LISTINGS
   ============================================ */

.filter-section {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}

.filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-group {
  flex: 1 1 calc(20% - 16px);
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
  color: #1A3D5C;
  font-size: 14px;
}

.filter-group select,
.filter-group input {
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: #F4A460;
  box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.1);
}

.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.sort-bar select {
  padding: 10px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-size: 14px;
  background: #FFFFFF;
}

.property-card {
  flex: 1 1 calc(33.333% - 24px);
}

.property-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #F4A460 0%, #E89B5C 100%);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.property-card .location {
  color: #777777;
  font-size: 14px;
  margin-bottom: 8px;
}

.property-card .details {
  color: #999999;
  font-size: 14px;
  margin-bottom: 16px;
}

.property-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #1A3D5C;
  margin-bottom: 20px;
}

/* ============================================
   CONTACT & FORMS
   ============================================ */

.contact-methods,
.office-info,
.team-contacts {
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 calc(50% - 32px);
  text-align: center;
}

.contact-card h3 {
  margin-top: 16px;
  margin-bottom: 12px;
}

.contact-card .note {
  font-size: 14px;
  color: #999999;
  font-style: italic;
}

.contact-form {
  background: #FFFFFF;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.form-note {
  background: #FFF8F0;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #F4A460;
  margin-top: 24px;
}

.required-note {
  font-size: 14px;
  color: #999999;
  margin-top: 16px;
}

.team-contact {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.team-contact .role {
  color: #F4A460;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-contact .specialization {
  color: #999999;
  font-size: 14px;
  font-style: italic;
}

/* ============================================
   THANK YOU / SUCCESS PAGES
   ============================================ */

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F4A460 0%, #E89B5C 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 4px 16px rgba(244, 164, 96, 0.3);
}

.next-steps,
.what-now {
  margin-bottom: 60px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.step-item {
  background: #FFFFFF;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-item::before {
  content: '→';
  color: #F4A460;
  font-size: 24px;
  font-weight: 700;
}

.actions-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.back-to-site {
  text-align: center;
  margin-bottom: 60px;
}

.back-to-site .links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

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

.legal-content {
  margin-bottom: 60px;
}

.text-section {
  background: #FFFFFF;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.text-section h2 {
  color: #1A3D5C;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid #F4A460;
}

.text-section h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.text-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.text-section ul li {
  margin-bottom: 8px;
  color: #555555;
}

/* ============================================
   TABS & AUDIENCE SELECTOR
   ============================================ */

.audience-selector {
  text-align: center;
  margin-bottom: 40px;
}

.tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tab {
  padding: 12px 24px;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  border-color: #F4A460;
  color: #F4A460;
}

.tab.active {
  background: linear-gradient(135deg, #F4A460 0%, #E89B5C 100%);
  color: #FFFFFF;
  border-color: #F4A460;
}

/* ============================================
   DOCUMENTS & REQUIREMENTS
   ============================================ */

.required-documents {
  margin-bottom: 60px;
}

.documents-section {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.documents-section h3 {
  color: #1A3D5C;
  margin-bottom: 16px;
}

.documents-section ul {
  list-style: none;
  padding-left: 0;
}

.documents-section ul li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: #555555;
  border-bottom: 1px solid #F0F0F0;
}

.documents-section ul li:last-child {
  border-bottom: none;
}

.documents-section ul li::before {
  content: '📄';
  position: absolute;
  left: 0;
}

/* ============================================
   TEXT-IMAGE SECTIONS
   ============================================ */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

/* ============================================
   FOOTER - WARM & INVITING
   ============================================ */

footer {
  background: linear-gradient(135deg, #1A3D5C 0%, #0F2A3F 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  border-radius: 40px 40px 0 0;
  margin-top: 80px;
}

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

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

.footer-col h4 {
  color: #F4A460;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

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

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

/* ============================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   ============================================ */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A3D5C 0%, #2C5F8D 100%);
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-consent-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-consent-text p {
  margin-bottom: 0;
  color: #FFFFFF;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #F4A460 0%, #E89B5C 100%);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(244, 164, 96, 0.3);
}

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

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

.cookie-btn-settings {
  background: transparent;
  color: #F4A460;
  border-color: #F4A460;
}

.cookie-btn-settings:hover {
  background: rgba(244, 164, 96, 0.1);
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  display: flex;
  opacity: 1;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  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-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #F0F0F0;
  color: #333333;
}

.cookie-category {
  background: #FFF8F0;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #F4A460;
}

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

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

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

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #F4A460;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: #E0E0E0;
  cursor: not-allowed;
}

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

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  /* Section spacing */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Card layouts - stack vertically */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .value-card,
  .team-member,
  .property-card,
  .contact-card,
  .pricing-card,
  .step,
  .timeline-item,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA boxes stack */
  .cta-box {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Buttons stack */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Footer columns stack */
  .footer-col {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Filter groups stack */
  .filter-group {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Text sections */
  .text-section {
    padding: 24px;
  }
  
  /* Stats layout */
  .stat {
    flex: 1 1 calc(50% - 24px);
    min-width: 140px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  /* Cookie banner stack */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-text {
    flex: 1 1 100%;
  }
  
  .cookie-consent-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Text-image sections stack */
  .text-image-section {
    flex-direction: column;
  }
  
  .text-image-section > * {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
  }
  
  /* Process steps */
  .process-steps,
  .timeline-steps {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card,
  .value-card,
  .property-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step,
  .timeline-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .hero {
    page-break-after: avoid;
  }
}