/* ====================================
   ULTRA WRENCH IMMOBILIEN - CSS
   Playful Dynamic Design Style
   ==================================== */

/* ====================================
   CSS RESET & BASE STYLES
   ==================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', 'Comic Sans MS', 'Arial', sans-serif;
  background: linear-gradient(135deg, #FFE5E5 0%, #FFF0E5 50%, #E5F5FF 100%);
  color: #2D1B69;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 181, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* ====================================
   TYPOGRAPHY
   ==================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Comic Sans MS', 'Georgia', serif;
  font-weight: 800;
  color: #FF6B35;
  line-height: 1.3;
  text-shadow: 3px 3px 0px rgba(255, 193, 7, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: bounceIn 1s ease-out;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #FFC107, #00BCD4);
  border-radius: 10px;
  animation: slideIn 0.8s ease-out;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #E91E63;
}

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

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

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

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

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

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

@keyframes bounceIn {
  0% { transform: scale(0.3) rotate(-5deg); opacity: 0; }
  50% { transform: scale(1.05) rotate(2deg); }
  70% { transform: scale(0.9) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes slideIn {
  from { width: 0; }
  to { width: 100%; }
}

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

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

@keyframes rainbow {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

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

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

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

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

header {
  background: linear-gradient(135deg, #FF6B35 0%, #E91E63 50%, #9C27B0 100%);
  padding: 20px 0;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

.logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(-5deg) scale(1.1);
  animation: wiggle 0.5s ease-in-out;
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) rotate(2deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF6B35, #FFC107);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.7);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #FF6B35 0%, #E91E63 50%, #9C27B0 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg) scale(1.1);
}

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

.mobile-nav a {
  color: white;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-10px) scale(1.05);
}

/* ====================================
   BUTTONS
   ==================================== */

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.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, height 0.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #FF6B35, #FFC107);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.6);
  animation: pulse 1s ease-in-out infinite;
}

.btn-secondary {
  background: linear-gradient(135deg, #00BCD4, #2196F3);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px) rotate(2deg);
  box-shadow: 0 12px 32px rgba(0, 188, 212, 0.6);
}

.btn.disabled {
  background: #CCCCCC;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn.disabled:hover {
  transform: none;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
  background: linear-gradient(135deg, #FF6B35 0%, #E91E63 50%, #9C27B0 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.3);
}

.hero::before {
  content: '✨';
  position: absolute;
  font-size: 100px;
  top: 20px;
  left: 20px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.3;
}

.hero::after {
  content: '🎉';
  position: absolute;
  font-size: 100px;
  bottom: 20px;
  right: 20px;
  animation: float 8s ease-in-out infinite;
  opacity: 0.3;
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1s ease-out;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 36px;
  line-height: 1.6;
}

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

/* ====================================
   PAGE HERO
   ==================================== */

.page-hero {
  background: linear-gradient(135deg, #00BCD4 0%, #2196F3 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 16px 48px rgba(0, 188, 212, 0.3);
}

.page-hero h1 {
  color: white;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.breadcrumb a {
  color: white;
  font-weight: 600;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

/* ====================================
   CARDS & GRIDS
   ==================================== */

.stats-grid,
.property-grid,
.services-grid,
.categories-grid,
.locations-grid,
.benefits-grid,
.expertise-grid,
.types-grid,
.awards-grid,
.options-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.stat-card,
.property-card,
.service-card,
.category-card,
.location-card,
.benefit-card,
.expertise-card,
.type-card,
.award-card,
.option-card,
.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.stat-card::before,
.property-card::before,
.service-card::before,
.category-card::before,
.location-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #FFC107, #00BCD4);
}

.stat-card:hover,
.property-card:hover,
.service-card:hover,
.category-card:hover,
.location-card:hover,
.benefit-card:hover,
.expertise-card:hover,
.type-card:hover,
.award-card:hover,
.option-card:hover,
.action-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #FF6B35;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(255, 193, 7, 0.3);
}

.stat-label {
  font-size: 16px;
  color: #2D1B69;
  font-weight: 600;
}

.property-info,
.service-card,
.category-card {
  text-align: center;
}

.service-card img,
.category-card img,
.benefit-card img,
.option-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(3px 3px 6px rgba(255, 107, 53, 0.3));
  transition: transform 0.3s ease;
}

.service-card:hover img,
.category-card:hover img,
.benefit-card:hover img,
.option-card:hover img {
  transform: scale(1.15) rotate(5deg);
  animation: wiggle 0.5s ease-in-out;
}

.property-location {
  color: #E91E63;
  font-weight: 600;
  margin-bottom: 8px;
}

.property-specs {
  color: #2D1B69;
  font-size: 14px;
  margin-bottom: 12px;
}

.property-price,
.service-price,
.property-roi {
  font-size: 24px;
  font-weight: 800;
  color: #FF6B35;
  margin: 16px 0;
  text-shadow: 2px 2px 4px rgba(255, 193, 7, 0.2);
}

/* ====================================
   TESTIMONIALS
   ==================================== */

.testimonials {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE5E5 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonial-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
  position: relative;
  margin-bottom: 20px;
  border-left: 6px solid #FF6B35;
}

.testimonial-card::before {
  content: '💬';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  opacity: 0.2;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.8;
  color: #2D1B69;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: #E91E63;
  font-size: 14px;
}

.stars {
  color: #FFC107;
  font-size: 20px;
  margin-top: 12px;
}

/* ====================================
   PROCESS STEPS
   ==================================== */

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

.process-step {
  flex: 1 1 calc(20% - 24px);
  min-width: 200px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.15);
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00BCD4, #2196F3);
  color: white;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(0, 188, 212, 0.3);
  transition: transform 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.2) rotate(360deg);
}

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

.cta-banner,
.cta-section,
.consultation-cta {
  background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 16px 48px rgba(156, 39, 176, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🎯';
  position: absolute;
  font-size: 120px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
}

.cta-banner h2,
.cta-section h2,
.consultation-cta h2 {
  color: white;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}

.cta-banner p,
.cta-section p,
.consultation-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-info {
  color: white;
  font-size: 16px;
  margin-top: 24px;
  font-weight: 600;
}

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

.contact-form-section {
  background: white;
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
}

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

.form-note {
  background: linear-gradient(135deg, #FFF3E0, #FFE5E5);
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 32px;
  border-left: 6px solid #FFC107;
}

.form-note p {
  margin-bottom: 12px;
  color: #2D1B69;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row .form-group {
  flex: 1 1 calc(50% - 12px);
  min-width: 200px;
}

.form-group label {
  font-weight: 700;
  color: #2D1B69;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  padding: 16px;
  border: 3px solid #FFE5E5;
  border-radius: 15px;
  background: #FFF3E0;
  color: #2D1B69;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control.textarea {
  min-height: 150px;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
}

.form-group.checkbox label {
  text-transform: none;
  font-weight: 400;
}

.form-footer {
  font-size: 14px;
  color: #E91E63;
  margin-top: 12px;
}

/* ====================================
   OFFICE & DETAIL INFO
   ==================================== */

.office-info {
  background: white;
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.detail-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, #FFF3E0, #FFE5E5);
  border-radius: 15px;
  margin-bottom: 20px;
}

.detail-item img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(3px 3px 6px rgba(255, 107, 53, 0.3));
}

.detail-item h3 {
  margin-bottom: 8px;
}

/* ====================================
   LEGAL & TEXT SECTIONS
   ==================================== */

.legal-hero {
  background: linear-gradient(135deg, #2196F3 0%, #00BCD4 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.legal-hero h1 {
  color: white;
}

.update-date,
.legal-notice {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.legal-content {
  background: white;
  padding: 40px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.text-section {
  margin-bottom: 40px;
  padding: 32px;
  background: #FFF3E0;
  border-radius: 15px;
  border-left: 6px solid #FF6B35;
}

.text-section h2 {
  color: #FF6B35;
  margin-bottom: 20px;
}

.text-section h3 {
  color: #E91E63;
  margin-top: 24px;
  margin-bottom: 12px;
}

/* ====================================
   THANK YOU PAGE
   ==================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: white;
  color: #4CAF50;
  font-size: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
  animation: bounceIn 1s ease-out;
}

.thank-you-hero h1 {
  color: white;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.15);
  margin-bottom: 20px;
}

.response-time,
.confirmation-notice,
.spam-notice {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  background: #FFF3E0;
  border-radius: 15px;
  color: #2D1B69;
}

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

footer {
  background: linear-gradient(135deg, #2D1B69 0%, #1A1A2E 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

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

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

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

.tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #FFC107;
  font-size: 18px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFC107;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D1B69, #1A1A2E);
  padding: 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  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;
  color: white;
  font-size: 14px;
}
.cookie-text p{
  color: white;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
  color: white;
}

.cookie-btn-reject {
  background: linear-gradient(135deg, #F44336, #E91E63);
  color: white;
}

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: white;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: bounceIn 0.5s ease-out;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F44336;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #FFF3E0;
  border-radius: 15px;
  border-left: 6px solid #FF6B35;
}

.cookie-category h3 {
  margin-bottom: 12px;
  color: #FF6B35;
}

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

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

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

.toggle-switch.active {
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

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

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

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

/* ====================================
   SECTION INTRO
   ==================================== */

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #2D1B69;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 968px) {
  .stat-card,
  .property-card,
  .service-card,
  .category-card,
  .location-card,
  .benefit-card,
  .expertise-card,
  .type-card,
  .award-card,
  .option-card,
  .action-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .process-step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .footer-col {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .stat-card,
  .property-card,
  .service-card,
  .category-card,
  .location-card,
  .benefit-card,
  .expertise-card,
  .type-card,
  .award-card,
  .option-card,
  .action-card,
  .process-step,
  .testimonial-card,
  .footer-col {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form-row .form-group {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .detail-item {
    flex: 1 1 100%;
  }
  
  section {
    padding: 30px 15px;
  }
  
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
}

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

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

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

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

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

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

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

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

/* END OF CSS */