/* ============================================
   ImmobilienKompass Berlin - Tech Futuristic Design
   CSS Stylesheet - Mobile First Approach
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  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: #E8F1F5;
  background: linear-gradient(135deg, #0a1929 0%, #1B4B7F 50%, #0a1929 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #C9A961;
  text-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
}

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

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

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

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

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

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

a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(201, 169, 97, 0.6);
}

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

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

strong {
  color: #C9A961;
  font-weight: 700;
}

/* HEADER */
header {
  background: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(201, 169, 97, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.5));
}

/* NAVIGATION - DESKTOP */
.main-nav {
  display: none;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #E8F1F5;
}

.main-nav a:hover {
  background: rgba(201, 169, 97, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(201, 169, 97, 0.4);
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A961, #ffffff);
  transition: width 0.3s ease;
}

.main-nav a:hover::before {
  width: 80%;
}

.cta-button {
  background: linear-gradient(135deg, #C9A961 0%, #D4B570 100%);
  color: #0a1929;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 169, 97, 0.6);
  border-color: #ffffff;
  color: #0a1929;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1B4B7F, #2a5f9e);
  border: 2px solid #C9A961;
  border-radius: 10px;
  color: #C9A961;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #2a5f9e, #1B4B7F);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #0a1929 0%, #1B4B7F 100%);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  border-left: 3px solid #C9A961;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(201, 169, 97, 0.2);
  border: 2px solid #C9A961;
  border-radius: 50%;
  color: #C9A961;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #C9A961;
  color: #0a1929;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  padding: 16px 20px;
  color: #E8F1F5;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 169, 97, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(201, 169, 97, 0.2);
  border-color: #C9A961;
  transform: translateX(10px);
  box-shadow: 0 0 15px rgba(201, 169, 97, 0.3);
}

/* HERO SECTION */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(10, 25, 41, 0.9), rgba(27, 75, 127, 0.8));
  border-bottom: 3px solid rgba(201, 169, 97, 0.3);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.subheadline {
  font-size: 18px;
  margin-bottom: 32px;
  color: #E8F1F5;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* BREADCRUMB */
.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #C9A961;
}

.breadcrumb a {
  color: #C9A961;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* TRUST INDICATORS */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
}

.trust-indicators span {
  padding: 12px 20px;
  background: rgba(201, 169, 97, 0.2);
  border: 1px solid #C9A961;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #C9A961;
  box-shadow: 0 0 15px rgba(201, 169, 97, 0.2);
}

/* CTA GROUP */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #C9A961 0%, #D4B570 100%);
  color: #0a1929;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.6);
  border-color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #C9A961;
  border: 2px solid #C9A961;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.2);
}

.btn-secondary:hover {
  background: rgba(201, 169, 97, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 0;
  position: relative;
}

section:nth-child(even) {
  background: rgba(27, 75, 127, 0.1);
}

/* PROBLEM-SOLUTION SECTION */
.problem-solution {
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  padding: 16px 20px;
  background: rgba(27, 75, 127, 0.3);
  border-left: 4px solid #C9A961;
  border-radius: 8px;
  text-align: left;
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  background: rgba(27, 75, 127, 0.5);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

/* SERVICE GRID */
.service-grid,
.district-cards,
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.service-card,
.district-card,
.category-card {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 100%;
  padding: 30px;
  background: linear-gradient(135deg, rgba(27, 75, 127, 0.4), rgba(10, 25, 41, 0.6));
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.district-card::before,
.category-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before,
.district-card:hover::before,
.category-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.district-card:hover,
.category-card:hover {
  transform: translateY(-5px);
  border-color: #C9A961;
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.service-card h3,
.district-card h3,
.category-card h3 {
  position: relative;
  z-index: 1;
}

.service-card p,
.district-card p,
.category-card p {
  position: relative;
  z-index: 1;
}

.price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #C9A961;
  margin-top: 16px;
  text-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
}

/* PROCESS STEPS */
.process-steps,
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.step,
.phase,
.timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(27, 75, 127, 0.3);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step:hover,
.phase:hover,
.timeline-item:hover {
  background: rgba(27, 75, 127, 0.5);
  border-color: #C9A961;
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C9A961, #D4B570);
  color: #0a1929;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.step h3,
.phase h3 {
  margin-bottom: 0;
}

.phase span {
  display: block;
  font-size: 14px;
  color: #C9A961;
  margin-top: 8px;
  font-weight: 600;
}

/* TESTIMONIALS */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 100%;
  min-width: 280px;
  padding: 30px;
  background: rgba(232, 241, 245, 0.95);
  border: 2px solid #C9A961;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

.testimonial-card p {
  color: #0a1929;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-card .author {
  display: block;
  color: #1B4B7F;
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
}

.testimonial-card .details {
  display: block;
  color: #1B4B7F;
  font-size: 13px;
  margin-top: 8px;
  opacity: 0.8;
}

/* TRUST METRICS */
.trust-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.trust-metrics span {
  padding: 16px 28px;
  background: rgba(201, 169, 97, 0.2);
  border: 2px solid #C9A961;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  color: #C9A961;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(27, 75, 127, 0.5), rgba(10, 25, 41, 0.8));
  border-top: 3px solid rgba(201, 169, 97, 0.3);
  border-bottom: 3px solid rgba(201, 169, 97, 0.3);
}

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

.cta-section ul {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.cta-section ul li {
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
}

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

/* SERVICE DETAIL */
.service-detail {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(27, 75, 127, 0.3);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-color: #C9A961;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

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

.service-detail ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

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

/* FAQ */
.faq {
  margin-top: 60px;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(27, 75, 127, 0.3);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #C9A961;
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

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

.faq-item p {
  margin-bottom: 0;
}

/* DISTRICTS */
.district-card span {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #C9A961;
}

/* GUIDE CARD */
.guide-card {
  margin-bottom: 32px;
  padding: 30px;
  background: rgba(27, 75, 127, 0.3);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.guide-card:hover {
  border-color: #C9A961;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.guide-card ul {
  margin: 20px 0;
}

/* ARTICLE LIST */
.article-list {
  list-style: none;
  padding: 0;
}

.article-list li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background: rgba(27, 75, 127, 0.3);
  border-left: 4px solid #C9A961;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.article-list li:hover {
  background: rgba(27, 75, 127, 0.5);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

/* CONTACT OPTIONS */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.contact-option {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 500px;
  padding: 30px;
  background: rgba(27, 75, 127, 0.3);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-option:hover {
  border-color: #C9A961;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

/* FORM PLACEHOLDER */
.form-placeholder {
  padding: 40px;
  background: rgba(27, 75, 127, 0.3);
  border: 2px dashed rgba(201, 169, 97, 0.5);
  border-radius: 15px;
  margin-top: 32px;
}

.form-placeholder ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.form-placeholder li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

/* OFFICE INFO */
.office-info {
  margin-top: 60px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
}

.confirmation {
  font-size: 20px;
  color: #C9A961;
  font-weight: 700;
  margin: 24px 0;
  padding: 20px;
  background: rgba(201, 169, 97, 0.2);
  border: 2px solid #C9A961;
  border-radius: 12px;
}

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.action-card {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 400px;
  padding: 30px;
  background: rgba(27, 75, 127, 0.3);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  border-color: #C9A961;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  font-size: 24px;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 20px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background: rgba(10, 25, 41, 0.95);
  padding: 60px 20px 30px;
  border-top: 3px solid rgba(201, 169, 97, 0.3);
  margin-top: 0;
}

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

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

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

.footer-column p,
.footer-column ul li {
  font-size: 14px;
  line-height: 1.8;
  color: #E8F1F5;
}

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

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

.footer-column a {
  color: #E8F1F5;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #C9A961;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  color: #C9A961;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 25, 41, 0.98), rgba(27, 75, 127, 0.98));
  backdrop-filter: blur(10px);
  padding: 24px;
  z-index: 9999;
  border-top: 3px solid #C9A961;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  margin: 0;
  color: #E8F1F5;
  font-size: 15px;
  text-align: center;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #C9A961, #D4B570);
  color: #0a1929;
  border: none;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
}

.cookie-reject {
  background: transparent;
  color: #C9A961;
  border: 2px solid #C9A961;
}

.cookie-reject:hover {
  background: rgba(201, 169, 97, 0.2);
}

.cookie-settings {
  background: transparent;
  color: #E8F1F5;
  border: 2px solid rgba(232, 241, 245, 0.3);
}

.cookie-settings:hover {
  background: rgba(232, 241, 245, 0.1);
  border-color: #E8F1F5;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0a1929, #1B4B7F);
  border: 3px solid #C9A961;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(27, 75, 127, 0.3);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 12px;
}

.cookie-category h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: rgba(232, 241, 245, 0.2);
  border: 2px solid #C9A961;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #C9A961;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E8F1F5;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
  background: #0a1929;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

/* RESPONSIVE DESIGN - TABLET */
@media (min-width: 768px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 26px; }
  
  .hero h1 { font-size: 52px; }
  .subheadline { font-size: 20px; }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
  }
  
  .cta-button {
    display: inline-block;
  }
  
  .service-card,
  .district-card,
  .category-card,
  .contact-option {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .action-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .footer-column {
    flex: 1 1 calc(25% - 30px);
  }
  
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .cookie-banner p {
    text-align: left;
    flex: 1;
  }
}

/* RESPONSIVE DESIGN - DESKTOP */
@media (min-width: 1024px) {
  section {
    padding: 80px 20px;
  }
  
  .hero {
    padding: 100px 20px;
  }
  
  .service-card,
  .district-card,
  .category-card {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
  }
  
  .action-card {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
  }
  
  .process-steps,
  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .step,
  .phase {
    flex: 1 1 calc(50% - 12px);
  }
}

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

button:focus,
a:focus {
  outline: 2px solid #C9A961;
  outline-offset: 4px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}

/* ANIMATIONS */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* LOADING STATES */
.loading {
  pointer-events: none;
  opacity: 0.6;
}

/* SMOOTH SCROLL */
html {
  scroll-padding-top: 100px;
}

/* SELECTION */
::selection {
  background: rgba(201, 169, 97, 0.3);
  color: #ffffff;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 25, 41, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #C9A961, #D4B570);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #D4B570, #C9A961);
}