/* ===========================
   STADTNEST CSS - PLAYFUL DYNAMIC DESIGN
   =========================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2d2d2d;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  overflow-x: hidden;
}

/* PLAYFUL DYNAMIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  color: #1A4D8F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1A4D8F 0%, #2C5F2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInDown 0.8s ease-out;
}

h2 {
  font-size: 36px;
  color: #1A4D8F;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #F0C419 0%, #1A4D8F 100%);
  border-radius: 10px;
  animation: slideInLeft 0.6s ease-out;
}

h3 {
  font-size: 24px;
  color: #2C5F2D;
  margin-bottom: 12px;
}

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

.lead {
  font-size: 20px;
  font-weight: 600;
  color: #1A4D8F;
  line-height: 1.6;
}

a {
  color: #1A4D8F;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #F0C419;
  transform: translateY(-2px);
}

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

li {
  margin-bottom: 12px;
  color: #4a4a4a;
  line-height: 1.6;
}

strong {
  color: #1A4D8F;
  font-weight: 700;
}

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

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

/* ANIMATIONS */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 80px;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

/* HEADER */
header {
  background: linear-gradient(135deg, #1A4D8F 0%, #2C5F2D 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(26, 77, 143, 0.3);
  animation: slideInDown 0.5s ease-out;
}

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

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(2deg);
  animation: wiggle 0.5s ease;
}

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #F0C419;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 10px;
}

.main-nav a:hover {
  color: #F0C419;
  background: rgba(240, 196, 25, 0.1);
  transform: translateY(-2px);
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #1A4D8F 0%, #2C5F2D 100%);
  border: none;
  color: #ffffff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(26, 77, 143, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: bold;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(240, 196, 25, 0.6);
  background: linear-gradient(135deg, #F0C419 0%, #1A4D8F 100%);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1A4D8F 0%, #2C5F2D 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  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: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.mobile-menu-close:hover {
  background: #F0C419;
  transform: rotate(90deg) scale(1.1);
  color: #1A4D8F;
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 5px solid transparent;
}

.mobile-nav a:hover {
  background: #F0C419;
  color: #1A4D8F;
  transform: translateX(10px);
  border-left-color: #ffffff;
  box-shadow: 0 4px 15px rgba(240, 196, 25, 0.4);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A4D8F 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 196, 25, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite;
}

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

.hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: slideInDown 0.8s ease-out;
}

.hero-subheadline {
  font-size: 22px;
  margin-bottom: 36px;
  color: #f0f0f0;
  font-weight: 400;
  line-height: 1.6;
  animation: slideInDown 1s ease-out;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #F0C419;
  transition: color 0.3s ease;
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #F0C419 0%, #e0a817 100%);
  color: #1A4D8F;
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(240, 196, 25, 0.5);
  animation: bounce 0.5s ease;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 3px solid #F0C419;
  position: relative;
  z-index: 1;
}

.btn-secondary:hover {
  background: #F0C419;
  color: #1A4D8F;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(240, 196, 25, 0.4);
}

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

/* TRUST INDICATORS */
.trust-indicators {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  animation: slideInDown 1.2s ease-out;
}

.trust-indicators span {
  font-size: 18px;
  font-weight: 700;
  color: #F0C419;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(240, 196, 25, 0.3);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  transform: scale(1.1) rotate(2deg);
  background: rgba(240, 196, 25, 0.3);
  box-shadow: 0 5px 20px rgba(240, 196, 25, 0.4);
}

/* SECTION STYLING */
.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* SERVICES GRID */
.services {
  background: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.services h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card,
.service-detail {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 36px;
  border-radius: 25px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  box-shadow: 0 8px 30px rgba(26, 77, 143, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before,
.service-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #F0C419 0%, #1A4D8F 100%);
  transition: left 0.5s ease;
}

.service-card:hover::before,
.service-detail:hover::before {
  left: 0;
}

.service-card:hover,
.service-detail:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(240, 196, 25, 0.3);
  border-color: #F0C419;
}

.service-card h3,
.service-detail h2 {
  color: #1A4D8F;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card .price,
.service-detail .price {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: #F0C419;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(240, 196, 25, 0.1) 0%, rgba(26, 77, 143, 0.1) 100%);
  border-radius: 15px;
  border: 2px solid #F0C419;
}

.service-detail ul {
  margin: 24px 0;
}

.service-detail li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 900;
  font-size: 18px;
}

/* CITIES SECTION */
.cities {
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.cities h2 {
  text-align: center;
  margin-bottom: 48px;
}

.cities-grid,
.cities-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 48px;
}

.city-card,
.city-summary {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 28px);
  min-width: 240px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(26, 77, 143, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.city-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, transparent 0%, #F0C419 100%);
  opacity: 0.2;
  transition: height 0.4s ease;
}

.city-card:hover::after {
  height: 100%;
}

.city-card:hover,
.city-summary:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 40px rgba(240, 196, 25, 0.3);
  border-color: #1A4D8F;
}

.city-card h3,
.city-summary h3 {
  font-size: 26px;
  color: #1A4D8F;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.city-detail {
  background: #ffffff;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.city-detail h2 {
  color: #1A4D8F;
  margin-bottom: 24px;
}

.city-detail h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C5F2D;
}

/* PROCESS STEPS */
.process {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.process h2 {
  text-align: center;
  margin-bottom: 56px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  position: relative;
}

.step {
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(44, 95, 45, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 3px solid #f0f0f0;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(44, 95, 45, 0.25);
  border-color: #2C5F2D;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F0C419 0%, #e0a817 100%);
  color: #1A4D8F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(240, 196, 25, 0.4);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 6px 25px rgba(240, 196, 25, 0.6);
}

/* VALUE PROPOSITION */
.value-proposition {
  background: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 36px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 5px solid #F0C419;
  position: relative;
  margin-bottom: 20px;
}

.benefit::before {
  content: '★';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  color: #F0C419;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.benefit:hover::before {
  opacity: 1;
  transform: rotate(72deg) scale(1.2);
}

.benefit:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 35px rgba(240, 196, 25, 0.25);
  border-left-width: 8px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #1A4D8F 0%, #2C5F2D 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 200px;
  color: rgba(240, 196, 25, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonials h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #F0C419 0%, #ffffff 100%);
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  color: #2d2d2d;
  padding: 36px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '★★★★★';
  position: absolute;
  top: 15px;
  right: 20px;
  color: #F0C419;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 15px 50px rgba(240, 196, 25, 0.4);
  border-color: #F0C419;
  background: #ffffff;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #F0C419;
}

.testimonial-author strong {
  color: #1A4D8F;
  font-size: 16px;
  font-weight: 800;
}

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

.trust-indicator {
  text-align: center;
  font-size: 18px;
  color: #F0C419;
  font-weight: 700;
  margin-top: 32px;
  padding: 16px;
  background: rgba(240, 196, 25, 0.15);
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #F0C419 0%, #e0a817 100%);
  color: #1A4D8F;
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(240, 196, 25, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.cta-banner h2 {
  color: #1A4D8F;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  background: #1A4D8F;
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p {
  font-size: 20px;
  margin-bottom: 32px;
  color: #2C5F2D;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.cta-banner .cta-buttons {
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #1A4D8F;
  color: #ffffff;
}

.cta-banner .btn-primary:hover {
  background: #2C5F2D;
  box-shadow: 0 8px 30px rgba(26, 77, 143, 0.5);
}

.contact-info {
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.contact-info p {
  font-size: 18px;
  font-weight: 700;
  color: #1A4D8F;
  margin: 8px 0;
}

/* FAQ SECTION */
.faq {
  background: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 28px;
  margin-bottom: 20px;
  border-radius: 15px;
  border-left: 5px solid #1A4D8F;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(26, 77, 143, 0.15);
  border-left-width: 8px;
}

.faq-item h3 {
  color: #1A4D8F;
  margin-bottom: 12px;
  font-size: 20px;
}

/* LEGAL CONTENT */
.legal-content {
  background: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
  color: #1A4D8F;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #2C5F2D;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h3 {
  color: #1A4D8F;
  margin-top: 28px;
  margin-bottom: 16px;
  font-size: 22px;
}

/* CONTACT PAGE */
.contact-options {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.contact-method {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 36px;
  border-radius: 20px;
  flex: 1 1 calc(33.33% - 32px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.contact-method:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 40px rgba(240, 196, 25, 0.25);
  border-color: #F0C419;
}

.contact-form-section {
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(26, 77, 143, 0.15);
}

.office-info {
  background: #ffffff;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.office-detail {
  flex: 1 1 calc(33.33% - 32px);
  min-width: 240px;
  max-width: 350px;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 5px solid #2C5F2D;
  margin-bottom: 20px;
}

.city-contacts {
  background: linear-gradient(135deg, #1A4D8F 0%, #2C5F2D 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  color: #ffffff;
}

.city-contacts h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

.city-contacts h2::after {
  background: linear-gradient(90deg, #F0C419 0%, #ffffff 100%);
  left: 50%;
  transform: translateX(-50%);
}

.city-contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.city-contact {
  background: rgba(255, 255, 255, 0.95);
  color: #2d2d2d;
  padding: 28px;
  border-radius: 15px;
  flex: 1 1 calc(20% - 28px);
  min-width: 200px;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 5px solid #F0C419;
  margin-bottom: 20px;
}

.city-contact:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 12px 40px rgba(240, 196, 25, 0.4);
  background: #ffffff;
  border-top-width: 8px;
}

.city-contact h3 {
  color: #1A4D8F;
  margin-bottom: 12px;
}

.city-contact p {
  color: #2d2d2d;
  font-size: 14px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1A4D8F 100%);
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 196, 25, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.thank-you-content {
  position: relative;
  z-index: 1;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #F0C419;
  color: #1A4D8F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(240, 196, 25, 0.4);
  animation: bounce 1s ease infinite;
}

.thank-you-hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 20px;
}

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

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

.step-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 36px;
  border-radius: 20px;
  flex: 1 1 calc(33.33% - 32px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(44, 95, 45, 0.2);
  border-color: #2C5F2D;
}

.step-card .step-number {
  margin-bottom: 20px;
}

.response-time {
  text-align: center;
  font-size: 18px;
  color: #1A4D8F;
  margin-top: 40px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(26, 77, 143, 0.1) 0%, rgba(240, 196, 25, 0.1) 100%);
  border-radius: 15px;
  border: 2px solid #F0C419;
}

.useful-resources {
  background: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.resource-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 36px;
  border-radius: 20px;
  flex: 1 1 calc(33.33% - 32px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid #1A4D8F;
  margin-bottom: 20px;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(240, 196, 25, 0.25);
  border-top-width: 8px;
  border-top-color: #F0C419;
}

.social-proof {
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

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

.benefit-item {
  flex: 1 1 calc(33.33% - 32px);
  min-width: 260px;
  max-width: 350px;
  padding: 28px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #2C5F2D;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(44, 95, 45, 0.15);
}

.testimonial-highlight {
  max-width: 700px;
  margin: 0 auto;
  padding: 36px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid #F0C419;
  text-align: center;
}

.testimonial-highlight p {
  font-size: 18px;
  font-style: italic;
  color: #2d2d2d;
  margin-bottom: 20px;
}

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

.explore-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.explore-card {
  background: linear-gradient(135deg, #1A4D8F 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 36px;
  border-radius: 20px;
  flex: 1 1 calc(33.33% - 28px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(26, 77, 143, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.explore-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(240, 196, 25, 0.4);
  border-color: #F0C419;
  background: linear-gradient(135deg, #F0C419 0%, #e0a817 100%);
}

.explore-card:hover h3,
.explore-card:hover p {
  color: #1A4D8F;
}

.explore-card h3 {
  color: #F0C419;
  margin-bottom: 12px;
  font-size: 22px;
}

.explore-card p {
  color: #f0f0f0;
  font-size: 15px;
}

/* STATISTICS */
.statistics {
  background: linear-gradient(135deg, #F0C419 0%, #e0a817 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(240, 196, 25, 0.4);
}

.statistics h2 {
  text-align: center;
  color: #1A4D8F;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: translateY(-12px) rotate(-2deg);
  box-shadow: 0 15px 50px rgba(26, 77, 143, 0.3);
  border-color: #1A4D8F;
  background: #ffffff;
}

.stat-card h3 {
  font-size: 48px;
  color: #1A4D8F;
  margin-bottom: 12px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(240, 196, 25, 0.3);
}

.stat-card p {
  font-size: 16px;
  color: #2C5F2D;
  font-weight: 600;
}

/* TEAM */
.team {
  background: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.team h2 {
  text-align: center;
  margin-bottom: 48px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 36px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  text-align: center;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 40px rgba(240, 196, 25, 0.25);
  border-color: #F0C419;
}

.team-member h3 {
  color: #1A4D8F;
  margin-bottom: 8px;
}

.team-member p strong {
  color: #2C5F2D;
  display: block;
  margin-bottom: 12px;
}

/* EXPERTISE & APPROACH */
.expertise,
.approach {
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.expertise h2,
.approach h2 {
  text-align: center;
  margin-bottom: 48px;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.expertise-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid #2C5F2D;
  margin-bottom: 20px;
}

.expertise-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(44, 95, 45, 0.2);
  border-top-width: 8px;
}

.approach-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.approach-step {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 28px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 3px solid #f0f0f0;
  margin-bottom: 20px;
}

.approach-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(240, 196, 25, 0.25);
  border-color: #F0C419;
}

/* COMPANY STORY */
.company-story {
  background: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.company-story h2 {
  color: #1A4D8F;
  margin-bottom: 24px;
}

.company-story h3 {
  color: #2C5F2D;
  margin-top: 32px;
  margin-bottom: 16px;
}

/* MARKET REPORTS */
.latest-report,
.market-trends,
.price-index,
.investment-insights,
.newsletter,
.custom-reports {
  background: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.report-highlights {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 20px;
  border-left: 8px solid #1A4D8F;
  margin-top: 32px;
}

.publication-date {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 24px;
}

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

.trend-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid #F0C419;
  margin-bottom: 20px;
}

.trend-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(240, 196, 25, 0.25);
  border-top-width: 8px;
}

.city-reports-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.city-report-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 28px;
  border-radius: 15px;
  flex: 1 1 calc(20% - 28px);
  min-width: 220px;
  max-width: 260px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-left: 5px solid #2C5F2D;
  margin-bottom: 20px;
}

.city-report-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 35px rgba(44, 95, 45, 0.2);
  border-left-width: 8px;
}

.newsletter-form {
  max-width: 600px;
  margin: 32px auto;
  padding: 40px;
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(26, 77, 143, 0.15);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1A4D8F 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-radius: 30px 30px 0 0;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
  margin-bottom: 20px;
}

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

.footer-column h4 {
  color: #F0C419;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '▶';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #F0C419;
}

.footer-nav a:hover {
  color: #F0C419;
  padding-left: 16px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(240, 196, 25, 0.3);
}

.footer-bottom p {
  color: #e0e0e0;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A4D8F 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 5px solid #F0C419;
}

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

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

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

.cookie-text p {
  color: #f0f0f0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-cookies {
  background: #F0C419;
  color: #1A4D8F;
}

#accept-cookies:hover {
  background: #ffffff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 20px rgba(240, 196, 25, 0.4);
}

#reject-cookies {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

#reject-cookies:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

#cookie-settings {
  background: transparent;
  color: #F0C419;
  border: 2px solid #F0C419;
}

#cookie-settings:hover {
  background: rgba(240, 196, 25, 0.1);
  transform: translateY(-2px);
}

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

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

.modal-content {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: slideInDown 0.4s ease-out;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f0f0;
  border: none;
  color: #1A4D8F;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.modal-close:hover {
  background: #F0C419;
  transform: rotate(90deg) scale(1.1);
}

.modal-content h2 {
  color: #1A4D8F;
  margin-bottom: 24px;
}

.cookie-category {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 5px solid #1A4D8F;
}

.cookie-category h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

input:checked + .toggle-slider {
  background-color: #2C5F2D;
}

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

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.modal-buttons button {
  flex: 1;
  padding: 14px 28px;
  border: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  min-width: 140px;
}

#save-preferences {
  background: #1A4D8F;
  color: #ffffff;
}

#save-preferences:hover {
  background: #2C5F2D;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(26, 77, 143, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  
  .service-card,
  .service-detail { flex: 1 1 calc(100% - 32px); }
  
  .city-card,
  .city-summary { flex: 1 1 calc(50% - 28px); }
  
  .step { flex: 1 1 calc(50% - 32px); }
}

@media (max-width: 768px) {
  /* MOBILE MENU DISPLAY */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  header {
    padding: 15px 0;
  }
  
  /* TYPOGRAPHY */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subheadline { font-size: 18px; }
  
  /* SECTIONS */
  .section { padding: 40px 16px; margin-bottom: 40px; }
  .hero { padding: 60px 16px; }
  
  /* GRIDS */
  .services-grid,
  .cities-grid,
  .cities-comparison,
  .process-steps,
  .benefits-grid,
  .testimonials-grid,
  .stats-grid,
  .team-grid,
  .expertise-grid,
  .trends-grid,
  .city-reports-grid,
  .city-contacts-grid,
  .contact-methods,
  .office-details,
  .steps-grid,
  .resources-grid,
  .explore-links {
    flex-direction: column;
    gap: 20px;
  }
  
  .service-card,
  .service-detail,
  .city-card,
  .city-summary,
  .step,
  .benefit,
  .testimonial-card,
  .stat-card,
  .team-member,
  .expertise-item,
  .trend-card,
  .city-report-card,
  .city-contact,
  .contact-method,
  .office-detail,
  .step-card,
  .resource-card,
  .explore-card,
  .benefit-item,
  .approach-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* BUTTONS */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    padding: 14px 28px;
  }
  
  /* COOKIE BANNER */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* MODAL */
  .modal-content {
    padding: 28px;
    margin: 20px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 30px; }
  .hero-subheadline { font-size: 16px; }
  
  .container { padding: 0 16px; }
  
  .section { padding: 32px 12px; }
  
  .service-card,
  .city-card,
  .step,
  .benefit,
  .testimonial-card {
    padding: 24px;
  }
  
  .btn { padding: 12px 24px; font-size: 14px; }
  
  .trust-indicators { flex-direction: column; gap: 12px; }
  
  .step-number { width: 50px; height: 50px; font-size: 24px; }
  
  .success-icon { width: 80px; height: 80px; font-size: 48px; }
}

/* ACCESSIBILITY */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #F0C419;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner,
  header,
  footer { display: none; }
  
  body { background: #ffffff; }
  
  .section { page-break-inside: avoid; }
}