/* ============================================
   MARROILLUM IMMOBILIEN - SCANDINAVIAN CLEAN DESIGN
   ============================================ */

/* 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', sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Scandinavian Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1B4B5A;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #C99B5A;
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

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

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

.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: #1B4B5A;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2000;
  background-color: #1B4B5A;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(27, 75, 90, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1999;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

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

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #1B4B5A;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C99B5A;
  padding-left: 12px;
}

/* ============================================
   BUTTONS - SCANDINAVIAN MINIMALIST STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background-color: #1B4B5A;
  color: #ffffff;
  border-color: #1B4B5A;
}

.btn-primary:hover {
  background-color: #163d4a;
  border-color: #163d4a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(27, 75, 90, 0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: #1B4B5A;
  border-color: #1B4B5A;
}

.btn-secondary:hover {
  background-color: #1B4B5A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(27, 75, 90, 0.15);
}

.btn-link {
  color: #C99B5A;
  font-weight: 600;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #1B4B5A;
  gap: 12px;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* ============================================
   HERO SECTIONS - MINIMALIST SCANDINAVIAN
   ============================================ */

.hero {
  background: linear-gradient(135deg, #E8DDD1 0%, #f5f0ea 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  color: #1B4B5A;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 75, 90, 0.2);
}

.trust-indicators span {
  font-size: 14px;
  color: #1B4B5A;
  font-weight: 500;
}

/* Page Hero */
.page-hero {
  background-color: #f9f9f9;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e5e5;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #1B4B5A;
}

/* ============================================
   SECTIONS - CLEAN SPACING
   ============================================ */

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

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4a5568;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

/* ============================================
   CARD GRIDS - FLEXBOX ONLY
   ============================================ */

.services-grid,
.values-grid,
.categories-grid,
.locations-grid,
.methods-grid,
.actions-grid,
.suggestions-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.value-item,
.category-card,
.location-card,
.method-card,
.action-card,
.suggestion-item,
.page-link {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.category-card:hover,
.action-card:hover,
.page-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #C99B5A;
}

.service-card img,
.value-item img,
.category-card img,
.method-card img,
.action-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.service-card h3,
.value-item h3,
.category-card h3,
.location-card h3,
.method-card h3,
.action-card h3 {
  font-size: 20px;
  color: #1B4B5A;
  margin-bottom: 12px;
}

.service-card p,
.value-item p,
.category-card p,
.location-card p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  flex-grow: 1;
}

.service-price,
.method-value {
  font-weight: 700;
  color: #C99B5A;
  font-size: 18px;
  margin-top: auto;
}

.method-details {
  font-size: 14px;
  color: #718096;
}

/* Value Items - Different Layout */
.value-item {
  text-align: center;
  align-items: center;
}

/* Page Links as Cards */
.page-link {
  text-align: center;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #1B4B5A;
  padding: 24px;
  min-height: 100px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-author {
  font-weight: 600;
  color: #1B4B5A !important;
  font-style: normal !important;
  font-size: 14px !important;
  margin-top: auto;
}

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

.trust-badges span {
  background-color: #E8DDD1;
  color: #1B4B5A;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

.rating-summary p {
  font-size: 18px;
  font-weight: 600;
  color: #1B4B5A;
}

.rating {
  text-align: center;
  margin-top: 32px;
}

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

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1B4B5A 0%, #2d6577 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 16px;
}

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

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

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

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

.contact-info,
.contact-options {
  color: #E8DDD1;
  font-size: 15px;
}

/* ============================================
   FORMS
   ============================================ */

.contact-form-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.form-note {
  background-color: #ffffff;
  border: 2px solid #E8DDD1;
  border-radius: 12px;
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.form-note p {
  margin-bottom: 16px;
  font-size: 16px;
}

.form-note strong {
  color: #1B4B5A;
  font-size: 18px;
}

/* ============================================
   STATS & INFO BLOCKS
   ============================================ */

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #e5e5e5;
}

.stat-item {
  text-align: center;
  min-width: 150px;
}

.stat-item h3 {
  font-size: 48px;
  color: #C99B5A;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  font-size: 14px;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.content-wrapper h2 {
  text-align: left;
  margin-top: 48px;
  margin-bottom: 24px;
}

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

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-wrapper ul {
  list-style: disc;
  margin-left: 32px;
  margin-bottom: 24px;
}

.content-wrapper ul li {
  margin-bottom: 12px;
  color: #4a5568;
  line-height: 1.7;
}

/* Service Detail Sections */
.service-detail {
  margin-bottom: 48px;
}

.service-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}

.key-benefits {
  background-color: #f9f9f9;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #C99B5A;
  margin: 24px 0;
}

.key-benefits h4 {
  color: #1B4B5A;
  margin-bottom: 16px;
}

.key-benefits ul {
  list-style: none;
  margin: 0;
}

.key-benefits ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #4a5568;
}

.key-benefits ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C99B5A;
  font-weight: bold;
}

.service-pricing {
  font-size: 20px;
  font-weight: 700;
  color: #1B4B5A;
  margin: 24px 0;
}

/* Topics List */
.topics-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.topic-item {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
  border-left: 4px solid #C99B5A;
  transition: all 0.3s ease;
}

.topic-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-left-width: 6px;
}

.topic-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.topic-item p {
  margin-bottom: 0;
  color: #718096;
}

/* Articles Grid */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.article-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

/* Qualifications List */
.qualifications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.qualification-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #f9f9f9;
  padding: 20px 28px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  min-width: 280px;
}

.qualification-item img {
  width: 40px;
  height: 40px;
}

.quality-statement {
  text-align: center;
  max-width: 700px;
  margin: 32px auto 0;
  font-size: 16px;
  color: #4a5568;
}

/* Office Info */
.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
}

.detail-item {
  flex: 1 1 300px;
  max-width: 400px;
}

.detail-item h3 {
  color: #1B4B5A;
  margin-bottom: 16px;
  font-size: 20px;
}

.detail-item p {
  margin-bottom: 12px;
}

.note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
}

/* ============================================
   ERROR & THANK YOU PAGES
   ============================================ */

.error-hero,
.thank-you-hero {
  background: linear-gradient(135deg, #E8DDD1 0%, #f5f0ea 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.error-content,
.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #C99B5A;
  line-height: 1;
  margin-bottom: 24px;
}

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

.error-subheadline,
.thank-you-subheadline {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 16px;
}

.confirmation-text {
  font-size: 16px;
  color: #718096;
  margin-bottom: 32px;
}

.error-actions,
.next-steps {
  padding: 40px 20px;
  margin-bottom: 40px;
}

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

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.step-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}

.step-item h3 {
  font-size: 18px;
  color: #1B4B5A;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 14px;
  color: #718096;
  margin-bottom: 0;
}

.steps-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.urgency-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #fff3cd;
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.urgency-note p {
  margin: 0;
  color: #1B4B5A;
}

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

footer {
  background-color: #1B4B5A;
  color: #E8DDD1;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-company,
.footer-contact,
.footer-links {
  flex: 1 1 250px;
}

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

.footer-company p {
  color: #E8DDD1;
  font-size: 14px;
}

footer h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-contact p,
.footer-links a {
  color: #E8DDD1;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C99B5A;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(232, 221, 209, 0.2);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

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

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #718096;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.cookie-category {
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  font-size: 16px;
  color: #1B4B5A;
  margin-bottom: 8px;
}

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

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

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

.toggle-switch.active {
  background-color: #C99B5A;
}

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

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

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

@media (max-width: 768px) {
  /* Typography scaling */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  .hero-subheadline { font-size: 18px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Adjust sections */
  section {
    margin-bottom: 60px;
    padding: 32px 16px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .page-hero {
    padding: 40px 20px 32px;
  }
  
  /* Stack cards full width */
  .service-card,
  .value-item,
  .category-card,
  .location-card,
  .method-card,
  .action-card,
  .article-card,
  .testimonial-card,
  .step-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Hero CTA buttons */
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Trust indicators */
  .trust-indicators {
    gap: 16px;
  }
  
  .trust-indicators span {
    font-size: 12px;
  }
  
  /* Stats grid */
  .stats-grid {
    gap: 32px;
  }
  
  .stat-item h3 {
    font-size: 36px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-company,
  .footer-contact,
  .footer-links {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* CTA sections */
  .cta-banner,
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Office details */
  .office-details {
    flex-direction: column;
  }
  
  /* Error/Thank you pages */
  .error-code {
    font-size: 80px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .category-card,
  .article-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
}

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

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* Accessibility */
:focus {
  outline: 2px solid #C99B5A;
  outline-offset: 2px;
}

/* Smooth transitions */
* {
  transition-property: background-color, color, border-color, box-shadow, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

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