/* ===================================
   TROPICAL CROSSING - NATURE ORGANIC DESIGN
   CSS Stylesheet - Mobile First Approach
   =================================== */

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

/* ===================================
   TYPOGRAPHY - NATURE ORGANIC
   =================================== */

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

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

h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #3D4F43;
}

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

a:hover {
  color: #D4A574;
}

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

li {
  margin-bottom: 8px;
  color: #3D4F43;
}

strong {
  font-weight: 600;
  color: #1E3A2E;
}

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

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

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

/* ===================================
   HEADER - NATURE ORGANIC STYLE
   =================================== */

header {
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7560 100%);
  padding: 16px 0;
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid rgba(212, 165, 116, 0.3);
}

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

header img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

header nav {
  display: none;
}

header nav a {
  color: #F4F0E8;
  margin-left: 24px;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

header nav a:hover {
  color: #D4A574;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A574;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

/* ===================================
   MOBILE MENU - HAMBURGER BUTTON
   =================================== */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(212, 165, 116, 0.2);
  border: 2px solid #D4A574;
  border-radius: 8px;
  color: #F4F0E8;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 150;
}

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

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F4F 0%, #1E3A2E 100%);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(212, 165, 116, 0.2);
  border: 2px solid #D4A574;
  border-radius: 8px;
  color: #F4F0E8;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 20px;
}

.mobile-menu-close:hover {
  background: #D4A574;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 8px;
}

.mobile-nav a {
  color: #F4F0E8;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 12px;
  background: rgba(212, 165, 116, 0.1);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(212, 165, 116, 0.25);
  border-left-color: #D4A574;
  transform: translateX(8px);
  color: #D4A574;
}

/* ===================================
   HERO SECTION - ORGANIC STYLE
   =================================== */

.hero-section {
  background: linear-gradient(135deg, rgba(44, 95, 79, 0.95) 0%, rgba(30, 58, 46, 0.95) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(212,165,116,0.1)"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50% 50% / 0 0 30px 30px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section h1 {
  color: #F4F0E8;
  font-size: 36px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.hero-section p {
  color: #E8E4DC;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===================================
   BUTTONS - ORGANIC ROUNDED STYLE
   =================================== */

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-primary,
.cta-secondary,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  min-width: 160px;
}

.cta-primary,
.cta-button {
  background: linear-gradient(135deg, #D4A574 0%, #C89C68 100%);
  color: #1E3A2E;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-primary:hover,
.cta-button:hover {
  background: linear-gradient(135deg, #E0B585 0%, #D4A574 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
  color: #1E3A2E;
}

.cta-secondary {
  background: transparent;
  color: #F4F0E8;
  border-color: #F4F0E8;
}

.cta-secondary:hover {
  background: #F4F0E8;
  color: #2C5F4F;
  transform: translateY(-2px);
}

/* ===================================
   TRUST INDICATORS & BADGES
   =================================== */

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.trust-indicators span {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(244, 240, 232, 0.15);
  border-radius: 25px;
  color: #F4F0E8;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(212, 165, 116, 0.3);
}

/* ===================================
   CARDS - ORGANIC ROUNDED STYLE
   =================================== */

.cities-grid,
.services-grid,
.benefits-grid,
.team-grid,
.expertise-grid,
.blog-grid,
.post-card,
.categories,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.city-card,
.service-card,
.benefit,
.team-member,
.expertise-item,
.blog-card,
.post-card,
.category-card,
.resource-card {
  flex: 1 1 100%;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.08);
  transition: all 0.3s ease;
  border: 2px solid rgba(212, 165, 116, 0.2);
  position: relative;
  margin-bottom: 20px;
}

.city-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 6px;
  background: linear-gradient(90deg, #2C5F4F 0%, #D4A574 100%);
  border-radius: 20px 20px 0 0;
}

.city-card:hover,
.service-card:hover,
.benefit:hover,
.blog-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(44, 95, 79, 0.15);
  border-color: #D4A574;
}

.city-card h3,
.service-card h3,
.benefit h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.city-card p,
.service-card p,
.benefit p {
  color: #3D4F43;
  margin-bottom: 16px;
}

.city-card a,
.blog-card a,
.resource-card a {
  color: #2C5F4F;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.city-card a:hover,
.blog-card a:hover {
  color: #D4A574;
  transform: translateX(4px);
}

.city-card a::after,
.blog-card a::after {
  content: '→';
}

/* ===================================
   SERVICE CARDS - PRICING
   =================================== */

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #2C5F4F;
  margin: 16px 0;
  padding: 12px 0;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  border-bottom: 2px solid rgba(212, 165, 116, 0.3);
}

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

.service-card ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #3D4F43;
}

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

/* ===================================
   PROCESS STEPS - ORGANIC FLOW
   =================================== */

.process-steps,
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.step {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  border-left: 5px solid #D4A574;
  box-shadow: 0 3px 15px rgba(44, 95, 79, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateX(8px);
  box-shadow: 0 5px 20px rgba(44, 95, 79, 0.12);
}

.step h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
}

.step p {
  color: #3D4F43;
  margin-bottom: 0;
}

/* ===================================
   TESTIMONIALS - NATURE STYLE
   =================================== */

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 100%;
  background: linear-gradient(135deg, #F4F0E8 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.1);
  border: 2px solid rgba(212, 165, 116, 0.3);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: rgba(212, 165, 116, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-card .customer {
  color: #2C5F4F;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0;
}

.testimonial-card .rating {
  color: #D4A574;
  font-size: 18px;
  margin-top: 12px;
}

/* ===================================
   NEIGHBORHOODS & CITIES
   =================================== */

.neighborhoods-grid,
.cities-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.neighborhood {
  flex: 1 1 100%;
  background: #FFFFFF;
  padding: 20px;
  border-radius: 16px;
  border: 2px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 3px 15px rgba(44, 95, 79, 0.08);
  transition: all 0.3s ease;
}

.neighborhood:hover {
  border-color: #2C5F4F;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(44, 95, 79, 0.12);
}

.neighborhood h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
}

/* ===================================
   TABLES - ORGANIC STYLE
   =================================== */

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.08);
}

table th {
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7560 100%);
  color: #F4F0E8;
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 16px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  color: #3D4F43;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover {
  background: rgba(244, 240, 232, 0.3);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid #D4A574;
  box-shadow: 0 3px 15px rgba(44, 95, 79, 0.08);
}

.faq-item h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #3D4F43;
  margin-bottom: 0;
}

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

.contact-methods,
.contact-alternatives {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-method,
.contact-option {
  flex: 1 1 100%;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.08);
  border: 2px solid rgba(212, 165, 116, 0.2);
}

.contact-method h3,
.contact-option h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.contact-info {
  color: #E8E4DC;
  font-size: 14px;
  margin-top: 16px;
}

.contact-highlight {
  font-size: 18px;
  color: #F4F0E8;
  margin: 20px 0;
}

/* ===================================
   CTA SECTION - ORGANIC
   =================================== */

.cta-section {
  background: linear-gradient(135deg, #2C5F4F 0%, #1E3A2E 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: #F4F0E8;
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-section p {
  color: #E8E4DC;
  font-size: 18px;
  margin-bottom: 24px;
}

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

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.08);
  line-height: 1.8;
}

.legal-content h2 {
  color: #2C5F4F;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: #3A7560;
  margin-top: 24px;
}

.legal-content p {
  color: #3D4F43;
}

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

/* ===================================
   ERROR PAGE (404)
   =================================== */

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: rgba(212, 165, 116, 0.3);
  line-height: 1;
  margin-bottom: 20px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.link-card {
  flex: 1 1 100%;
  padding: 16px 24px;
  background: #FFFFFF;
  border: 2px solid #D4A574;
  border-radius: 12px;
  color: #2C5F4F;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.link-card:hover {
  background: #2C5F4F;
  color: #F4F0E8;
  transform: translateY(-2px);
}

/* ===================================
   SUCCESS PAGE
   =================================== */

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2C5F4F 0%, #3A7560 100%);
  color: #F4F0E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.3);
}

/* ===================================
   FOOTER - ORGANIC STYLE
   =================================== */

footer {
  background: linear-gradient(180deg, #1E3A2E 0%, #2C5F4F 100%);
  color: #F4F0E8;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 4px solid #D4A574;
}

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

.footer-section {
  flex: 1 1 100%;
}

.footer-section h3 {
  color: #D4A574;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p,
.footer-section li {
  color: #E8E4DC;
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #E8E4DC;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #D4A574;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 165, 116, 0.3);
}

.footer-bottom p {
  color: #E8E4DC;
  font-size: 14px;
  margin: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F4F 0%, #1E3A2E 100%);
  color: #F4F0E8;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-top: 3px solid #D4A574;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cookie-banner p {
  color: #E8E4DC;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.cookie-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 14px;
}

.cookie-accept {
  background: #D4A574;
  color: #1E3A2E;
  border-color: #D4A574;
}

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

.cookie-reject {
  background: transparent;
  color: #F4F0E8;
  border-color: #F4F0E8;
}

.cookie-reject:hover {
  background: rgba(244, 240, 232, 0.1);
}

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

.cookie-settings:hover {
  background: rgba(212, 165, 116, 0.1);
}

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

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

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  color: #2C5F4F;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  color: #2C5F4F;
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-category p {
  color: #3D4F43;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  cursor: pointer;
  color: #3D4F43;
}

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-save {
  background: #2C5F4F;
  color: #F4F0E8;
}

.cookie-save:hover {
  background: #3A7560;
}

/* ===================================
   RESPONSIVE - TABLET (768px+)
   =================================== */

@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-section {
    padding: 100px 20px;
  }

  .hero-section h1 {
    font-size: 52px;
  }

  .hero-section p {
    font-size: 20px;
  }

  .mobile-menu-toggle {
    display: none;
  }

  header nav {
    display: flex;
  }

  .city-card,
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }

  .benefit,
  .expertise-item,
  .neighborhood {
    flex: 1 1 calc(50% - 12px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }

  .process-steps,
  .steps-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(50% - 10px);
  }

  .contact-method,
  .contact-option {
    flex: 1 1 calc(50% - 12px);
  }

  .footer-section {
    flex: 1 1 calc(25% - 24px);
  }

  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-buttons {
    width: auto;
  }

  .link-card {
    flex: 1 1 calc(50% - 8px);
  }
}

/* ===================================
   RESPONSIVE - DESKTOP (1024px+)
   =================================== */

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 60px 40px;
  }

  .hero-section {
    padding: 120px 40px;
  }

  .city-card,
  .benefit,
  .expertise-item {
    flex: 1 1 calc(25% - 18px);
  }

  .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .step {
    flex: 1 1 calc(33.333% - 14px);
  }

  .blog-card,
  .post-card,
  .category-card,
  .resource-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .neighborhood {
    flex: 1 1 calc(25% - 15px);
  }

  .link-card {
    flex: 1 1 calc(33.333% - 11px);
  }

  .team-member,
  .team-contact {
    flex: 1 1 calc(33.333% - 16px);
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section,
  header nav,
  footer {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero-section {
    background: none;
    color: black;
  }
}

/* ===================================
   ACCESSIBILITY & FOCUS STATES
   =================================== */

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

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

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

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

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

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

.hidden {
  display: none;
}

.price-highlight {
  font-size: 28px;
  color: #D4A574;
  font-weight: 700;
  margin: 20px 0;
}

.subtitle {
  color: #3A7560;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 12px;
}

.meta {
  color: #6B7F73;
  font-size: 14px;
  font-style: italic;
}

.reviews-summary {
  text-align: center;
  color: #2C5F4F;
  font-size: 18px;
  margin-top: 32px;
}

.privacy-note {
  font-size: 13px;
  color: #6B7F73;
  margin-top: 16px;
}

.accessibility {
  font-size: 14px;
  color: #2C5F4F;
  font-weight: 600;
  margin-top: 12px;
}

/* ===================================
   END OF STYLESHEET
   =================================== */
