/* ===================================
   FROST IMMOBILIEN - VINTAGE RETRO DESIGN
   Complete CSS Stylesheet
   =================================== */

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.7;
  color: #2C1810;
  background-color: #F5E6D3;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================================
   VINTAGE RETRO TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #8B4513;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

h2 {
  font-size: 32px;
  letter-spacing: 1px;
  border-bottom: 3px double #8B4513;
  padding-bottom: 12px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  color: #A0522D;
}

h4 {
  font-size: 18px;
  color: #8B4513;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ===================================
   HEADER STYLES
   =================================== */
header {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  border-bottom: 5px solid #654321;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

.logo img {
  height: 60px;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: none;
}

.main-nav a {
  color: #F5E6D3;
  font-weight: 600;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.main-nav a:hover {
  background-color: #654321;
  border-color: #F5E6D3;
  transform: translateY(-2px);
}

.header-cta {
  display: none;
}

/* ===================================
   MOBILE MENU TOGGLE BUTTON
   =================================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #654321;
  color: #F5E6D3;
  font-size: 28px;
  border: 3px solid #F5E6D3;
  border-radius: 8px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #8B4513;
  transform: scale(1.1);
}

/* ===================================
   MOBILE MENU OVERLAY
   =================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  z-index: 1001;
  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.5);
  overflow-y: auto;
  border-left: 5px solid #F5E6D3;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #F5E6D3;
  color: #8B4513;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #8B4513;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #F5E6D3;
  padding: 16px 20px;
  border: 2px solid #F5E6D3;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: rgba(245, 230, 211, 0.1);
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: #F5E6D3;
  color: #8B4513;
  transform: translateX(8px);
}

/* ===================================
   BUTTON STYLES - VINTAGE RETRO
   =================================== */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  font-family: 'Georgia', serif;
}

.btn-primary {
  background: #8B4513;
  color: #F5E6D3;
  border-color: #654321;
  box-shadow: 4px 4px 0px #654321;
}

.btn-primary:hover {
  background: #654321;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #3E2723;
}

.btn-secondary {
  background: transparent;
  color: #8B4513;
  border-color: #8B4513;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
}

.btn-secondary:hover {
  background: #8B4513;
  color: #F5E6D3;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.5);
}

.btn-link {
  background: transparent;
  color: #A0522D;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-style: dotted;
  box-shadow: none;
}

.btn-link:hover {
  color: #8B4513;
  text-decoration-style: solid;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 6px solid #8B4513;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(139, 69, 19, 0.1) 35px, rgba(139, 69, 19, 0.1) 70px);
  pointer-events: none;
}

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

.hero h1 {
  color: #F5E6D3;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  font-size: 20px;
  color: #F5E6D3;
  margin-bottom: 32px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

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

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

.trust-badges span,
.trust-elements span {
  background: #F5E6D3;
  color: #8B4513;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #8B4513;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
}

/* ===================================
   BREADCRUMB NAVIGATION
   =================================== */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #F5E6D3;
  font-family: 'Courier New', Courier, monospace;
}

.breadcrumb a {
  color: #F5E6D3;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.breadcrumb a:hover {
  text-decoration-style: solid;
}

/* ===================================
   CARD LAYOUTS - FLEXBOX ONLY
   =================================== */
.city-grid,
.services-grid,
.value-grid,
.category-grid,
.article-grid,
.trend-cards,
.process-steps,
.contact-grid,
.service-cards,
.faq-list,
.metrics-grid,
.expertise-grid,
.steps-grid,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.city-card,
.service-card,
.value-item,
.category-card,
.article-card,
.trend-card,
.process-step,
.contact-method,
.service-contact-card,
.faq-item,
.metric-card,
.expertise-card,
.step-card,
.quick-link,
.explore-link {
  flex: 1 1 100%;
  background: #FFF8DC;
  padding: 24px;
  border-radius: 8px;
  border: 3px solid #8B4513;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.city-card:hover,
.service-card:hover,
.category-card:hover,
.article-card:hover,
.trend-card:hover,
.service-contact-card:hover,
.expertise-card:hover,
.quick-link:hover,
.explore-link:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
}

.city-card h3,
.service-card h3,
.value-item h3,
.category-card h3,
.article-card h3 {
  color: #8B4513;
  margin-bottom: 12px;
}

.city-price,
.service-price {
  font-size: 24px;
  font-weight: 700;
  color: #A0522D;
  margin: 16px 0;
  font-family: 'Georgia', serif;
}

/* ===================================
   SERVICE DETAIL CARDS
   =================================== */
.service-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.service-detail-card {
  flex: 1 1 100%;
  background: #FFF8DC;
  padding: 32px;
  border-radius: 8px;
  border: 4px solid #8B4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  margin-bottom: 20px;
}

.service-detail-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detail-card ul li {
  list-style: none;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #2C1810;
}

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

.service-duration,
.success-rate,
.report-scope,
.package-type {
  font-size: 14px;
  color: #A0522D;
  font-style: italic;
  margin: 12px 0;
}

/* ===================================
   CITY PROFILE CARDS
   =================================== */
.city-profiles {
  background: #F5E6D3;
  padding: 60px 20px;
}

.city-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.city-profile-card {
  flex: 1 1 100%;
  background: #FFF8DC;
  padding: 32px;
  border-radius: 8px;
  border: 4px solid #8B4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  margin-bottom: 20px;
}

.city-profile-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #8B4513;
  border-bottom: 3px double #8B4513;
  padding-bottom: 8px;
}

/* ===================================
   COMPARISON TABLE
   =================================== */
.comparison-table,
.cookie-table {
  background: #FFF8DC;
  border: 3px solid #8B4513;
  border-radius: 8px;
  overflow: hidden;
  margin: 32px 0;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
  gap: 16px;
  align-items: center;
  border-bottom: 2px solid #D2691E;
}

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

.table-row.header {
  background: #8B4513;
  color: #F5E6D3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-row span {
  flex: 1 1 calc(50% - 8px);
  font-size: 14px;
}

.table-row.header span {
  flex: 1 1 calc(25% - 12px);
}

.table-row:not(.header) span {
  flex: 1 1 calc(25% - 12px);
}

.data-note {
  font-size: 12px;
  color: #A0522D;
  font-style: italic;
  margin-top: 12px;
}

/* ===================================
   PROCESS STEPS
   =================================== */
.process-section {
  background: #D2691E;
  padding: 60px 20px;
}

.process-section h2 {
  color: #F5E6D3;
  text-align: center;
  border-bottom-color: #F5E6D3;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  flex: 1 1 100%;
  background: #FFF8DC;
  padding: 24px;
  border-radius: 8px;
  border: 3px solid #8B4513;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #8B4513;
  color: #F5E6D3;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 16px;
  border: 3px solid #654321;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials,
.testimonial-section {
  background: #CD853F;
  padding: 60px 20px;
}

.testimonials h2,
.testimonial-section h2 {
  color: #F5E6D3;
  text-align: center;
  border-bottom-color: #F5E6D3;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 100%;
  background: #F5E6D3;
  padding: 32px;
  border-radius: 8px;
  border: 4px solid #8B4513;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #8B4513;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: #2C1810;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: #8B4513;
  font-style: italic;
  font-size: 14px;
}

.rating {
  color: #D2691E;
  font-size: 20px;
  margin-top: 12px;
}

/* ===================================
   STATISTICS & METRICS
   =================================== */
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.statistics span {
  background: #8B4513;
  color: #F5E6D3;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  border: 3px solid #654321;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
  text-align: center;
  flex: 1 1 calc(50% - 12px);
  min-width: 200px;
}

.metric-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

/* ===================================
   VALUE PROPOSITION
   =================================== */
.value-proposition {
  background: #F5E6D3;
  padding: 60px 20px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  text-align: center;
  background: #FFF8DC;
  margin-bottom: 20px;
}

/* ===================================
   CTA SECTIONS
   =================================== */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 5px solid #654321;
  border-bottom: 5px solid #654321;
}

.cta-banner h2,
.cta-section h2 {
  color: #F5E6D3;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p {
  color: #F5E6D3;
  font-size: 18px;
  margin-bottom: 32px;
}

.availability-note,
.frequency-note,
.response-time,
.acceptance-note {
  color: #F5E6D3;
  font-size: 14px;
  margin-top: 20px;
  font-style: italic;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter-signup {
  background: #D2691E;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-signup h2 {
  color: #F5E6D3;
  border-bottom-color: #F5E6D3;
}

.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.newsletter-benefits span {
  background: #F5E6D3;
  color: #8B4513;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  border: 2px solid #8B4513;
}

/* ===================================
   OFFICE & CONTACT DETAILS
   =================================== */
.office-details,
.office-info {
  background: #FFF8DC;
  padding: 32px;
  border-radius: 8px;
  border: 3px solid #8B4513;
  margin: 32px 0;
}

.office-info p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.quick-contact {
  background: rgba(245, 230, 211, 0.3);
  padding: 24px;
  border-radius: 6px;
  border: 2px solid #F5E6D3;
  margin-top: 32px;
}

.quick-contact p {
  color: #F5E6D3;
  margin-bottom: 8px;
}

/* ===================================
   LEGAL CONTENT PAGES
   =================================== */
.legal-hero {
  background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 5px solid #654321;
}

.legal-hero h1 {
  color: #F5E6D3;
}

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

.legal-content {
  background: #F5E6D3;
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #FFF8DC;
  padding: 40px;
  border-radius: 8px;
  border: 3px solid #8B4513;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
}

.content-wrapper h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  padding: 100px 20px 80px;
  text-align: center;
  border-bottom: 6px solid #8B4513;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #F5E6D3;
  color: #8B4513;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  border: 5px solid #8B4513;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.next-steps,
.explore-more,
.quick-links {
  background: #F5E6D3;
  padding: 60px 20px;
}

/* ===================================
   FOOTER STYLES
   =================================== */
footer {
  background: linear-gradient(135deg, #654321 0%, #3E2723 100%);
  color: #F5E6D3;
  padding: 60px 20px 20px;
  border-top: 6px solid #8B4513;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: #F5E6D3;
  margin-bottom: 16px;
  font-size: 18px;
  border-bottom: 2px solid #F5E6D3;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #F5E6D3;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.footer-column ul li a:hover {
  color: #D2691E;
  text-decoration-style: solid;
}

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

.footer-bottom {
  border-top: 2px solid #8B4513;
  padding-top: 24px;
  text-align: center;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-legal a {
  color: #F5E6D3;
  font-size: 13px;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.footer-legal a:hover {
  color: #D2691E;
  text-decoration-style: solid;
}

/* ===================================
   SECTION INTROS & NOTES
   =================================== */
.section-intro,
.hero-subheadline {
  text-align: center;
  font-size: 18px;
  color: #2C1810;
  max-width: 700px;
  margin: 0 auto 32px;
  font-family: Georgia, serif;
  font-style: italic;
}

/* ===================================
   ARTICLE & CONTENT CARDS
   =================================== */
.article-card.featured {
  flex: 1 1 100%;
  background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
  border-color: #654321;
  border-width: 4px;
}

.article-card.featured h3,
.article-card.featured p {
  color: #F5E6D3;
}

.article-meta {
  font-size: 13px;
  color: #A0522D;
  margin-bottom: 12px;
  font-style: italic;
}

.article-card.featured .article-meta {
  color: #F5E6D3;
}

/* ===================================
   INSIGHTS & TIPS
   =================================== */
.market-insights,
.expert-tips {
  background: #F5E6D3;
  padding: 60px 20px;
}

.insights-content {
  max-width: 800px;
  margin: 32px auto;
  background: #FFF8DC;
  padding: 32px;
  border-radius: 8px;
  border: 3px solid #8B4513;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.tip-card {
  flex: 1 1 100%;
  background: #FFF8DC;
  padding: 32px;
  border-radius: 8px;
  border: 3px solid #A0522D;
  border-left-width: 6px;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
  margin-bottom: 20px;
}

.expert-name {
  font-weight: 700;
  color: #8B4513;
  margin-top: 16px;
  font-size: 14px;
}

/* ===================================
   COMPANY STORY & VALUES
   =================================== */
.company-story,
.company-metrics,
.expertise-areas {
  background: #F5E6D3;
  padding: 60px 20px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto 40px;
  background: #FFF8DC;
  padding: 32px;
  border-radius: 8px;
  border: 3px solid #8B4513;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

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

  .main-nav {
    display: flex;
    gap: 8px;
  }

  .header-cta {
    display: block;
  }

  .city-card,
  .service-card,
  .category-card,
  .article-card,
  .trend-card,
  .contact-method,
  .service-contact-card,
  .metric-card,
  .expertise-card,
  .step-card,
  .tip-card {
    flex: 1 1 calc(50% - 12px);
  }

  .value-item {
    flex: 1 1 calc(50% - 12px);
  }

  .process-step {
    flex: 1 1 calc(20% - 20px);
  }

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

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

  .footer-column {
    flex: 1 1 calc(25% - 30px);
  }

  .table-row span {
    flex: 1 1 calc(25% - 12px);
  }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
   =================================== */
@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  .city-card {
    flex: 1 1 calc(20% - 20px);
  }

  .service-card,
  .category-card,
  .article-card:not(.featured) {
    flex: 1 1 calc(33.333% - 16px);
  }

  .value-item {
    flex: 1 1 calc(25% - 18px);
  }

  .metric-card {
    flex: 1 1 calc(16.666% - 20px);
  }

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

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

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  color: #F5E6D3;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  border-top: 5px solid #D2691E;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 100%;
  font-size: 14px;
  margin-bottom: 16px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept {
  background: #F5E6D3;
  color: #8B4513;
  border-color: #654321;
}

.cookie-accept:hover {
  background: #D2691E;
  color: #F5E6D3;
}

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

.cookie-reject:hover {
  background: #F5E6D3;
  color: #8B4513;
}

.cookie-settings {
  background: transparent;
  color: #F5E6D3;
  border: none;
  text-decoration: underline;
  text-decoration-style: dotted;
  padding: 12px 16px;
}

.cookie-settings:hover {
  text-decoration-style: solid;
  color: #D2691E;
}

/* ===================================
   COOKIE PREFERENCES MODAL
   =================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #FFF8DC;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  border: 4px solid #8B4513;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  background: #8B4513;
  color: #F5E6D3;
  padding: 24px;
  border-bottom: 3px solid #654321;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal-header h3 {
  color: #F5E6D3;
  margin: 0;
}

.cookie-modal-close {
  background: #F5E6D3;
  color: #8B4513;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #654321;
}

.cookie-modal-body {
  padding: 32px 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  border: 2px solid #D2691E;
  border-radius: 6px;
}

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

.cookie-category h4 {
  margin: 0;
  color: #8B4513;
}

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

.cookie-toggle.active {
  background: #8B4513;
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-modal-footer {
  padding: 24px;
  border-top: 2px solid #D2691E;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.hero-content,
.section {
  animation: fadeIn 0.6s ease;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
  text-align: center;
}

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

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

/* ===================================
   ACCESSIBILITY & FOCUS STATES
   =================================== */
a:focus,
button:focus {
  outline: 3px solid #D2691E;
  outline-offset: 2px;
}

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

  body {
    background: white;
    color: black;
  }
}
section {
  padding: 20px 0;
}

/* END OF STYLESHEET */