/* ===================================
   PERCECASA - PLAYFUL DYNAMIC STYLES
   Real Estate Agency - Milan
   =================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2C5F7C;
  line-height: 1.7;
  background: linear-gradient(135deg, #F5F5F0 0%, #FFE5E5 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY - PLAYFUL & DYNAMIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #2C5F7C;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(212, 175, 55, 0.3);
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: #D4AF37;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #FFA500, #FFD700);
  border-radius: 10px;
  animation: slideIn 0.6s ease-out;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #FF6B6B;
}

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

a {
  color: #FF6B6B;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

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

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

@keyframes slideIn {
  0% { width: 0; opacity: 0; }
  100% { width: 60%; opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

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

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

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

/* HEADER - PLAYFUL */
header {
  background: linear-gradient(135deg, #2C5F7C 0%, #1A4E66 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.3);
  border-bottom: 4px solid #D4AF37;
}

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

.logo {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(2px 2px 4px rgba(255, 107, 107, 0.3));
}

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

/* NAVIGATION - ENERGETIC */
.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: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FF6B6B, #FFA500);
  transition: left 0.3s ease;
  z-index: -1;
  border-radius: 25px;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* HEADER CTA */
.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.phone-link {
  color: #FFD700;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 20px;
  background: rgba(255, 107, 107, 0.2);
  border-radius: 30px;
  border: 2px solid #FFD700;
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: #FFD700;
  color: #2C5F7C;
  transform: scale(1.1);
  animation: pulse 0.5s ease;
}

/* BUTTONS - FUN & DYNAMIC */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
  border-radius: 50px;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
  animation: wiggle 0.5s ease;
}

.btn-secondary {
  background: #FFFFFF;
  color: #FF6B6B;
  border: 3px solid #FF6B6B;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
  background: #FF6B6B;
  color: #FFFFFF;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  color: #FFFFFF;
  border: none;
  font-size: 32px;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 15px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F7C 0%, #1A4E66 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B6B;
  color: #FFFFFF;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 600;
  padding: 16px 24px;
  background: rgba(255, 107, 107, 0.2);
  border-radius: 15px;
  border-left: 5px solid #FFD700;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 107, 107, 0.4);
  transform: translateX(10px);
  border-left-color: #FF6B6B;
}

/* HERO SECTION - ENERGETIC */
.hero {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 50%, #FFD700 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #2C5F7C;
}

.hero::before {
  content: '🏠';
  position: absolute;
  font-size: 300px;
  top: -80px;
  right: -80px;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '✨';
  position: absolute;
  font-size: 200px;
  bottom: -60px;
  left: -60px;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(44, 95, 124, 0.5);
}

.hero-subtitle {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 4px rgba(44, 95, 124, 0.3);
}

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

/* TRUST INDICATORS - PLAYFUL */
.trust-indicators {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(44, 95, 124, 0.3);
  transition: all 0.3s ease;
  border: 3px solid #FFD700;
}

.trust-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.trust-item strong {
  font-size: 36px;
  color: #FF6B6B;
  font-weight: 900;
}

.trust-item span {
  font-size: 16px;
  color: #2C5F7C;
  font-weight: 600;
}

/* SECTIONS - DYNAMIC SPACING */
.section, section {
  padding: 60px 20px;
  position: relative;
}

.value-proposition {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5E1 100%);
}

.services-overview {
  background: linear-gradient(135deg, #FFE5E5 0%, #FFFFFF 100%);
}

.process {
  background: linear-gradient(135deg, #E0F7FF 0%, #FFFFFF 100%);
}

.featured-properties {
  background: linear-gradient(135deg, #FFFACD 0%, #FFFFFF 100%);
}

/* VALUE GRID - FLEXBOX */
.value-grid, .services-grid, .properties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.value-card, .service-card, .property-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
  transition: all 0.4s ease;
  border: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.value-card:hover::before {
  top: -100%;
  right: -100%;
}

.value-card:hover, .service-card:hover, .property-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.4);
  border-color: #FF6B6B;
}

.value-card img, .service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(3px 3px 6px rgba(255, 107, 107, 0.3));
  transition: all 0.3s ease;
}

.value-card:hover img, .service-card:hover img {
  transform: scale(1.2) rotate(360deg);
}

.value-card h3, .service-card h3 {
  margin-bottom: 16px;
  color: #2C5F7C;
}

.service-card .price {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 20px;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* PROCESS STEPS - FLEXBOX */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  border: 3px solid #FFD700;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
  border-color: #FF6B6B;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}

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

/* PROPERTY CARDS */
.property-card {
  flex: 1 1 calc(33.333% - 32px);
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 95, 124, 0.2);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.property-card:hover {
  border-color: #FFD700;
}

.property-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 100%);
  position: relative;
  overflow: hidden;
}

.property-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FFD700;
  color: #2C5F7C;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  z-index: 10;
}

.property-info {
  padding: 24px;
}

.property-info h3 {
  margin-bottom: 12px;
  color: #2C5F7C;
  font-size: 22px;
}

.property-info p {
  color: #666;
  margin-bottom: 16px;
  font-size: 16px;
}

.property-price {
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
  color: #FF6B6B;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 215, 0, 0.1));
  padding: 10px 20px;
  border-radius: 15px;
}

/* TESTIMONIALS - READABLE */
.testimonials {
  background: linear-gradient(135deg, #F5F5F0 0%, #E8F4F8 100%);
  padding: 60px 20px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
  border-left: 6px solid #FFD700;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
  border-left-color: #FF6B6B;
}

.rating {
  color: #FFD700;
  font-size: 24px;
  margin-bottom: 16px;
  text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.3);
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #FF6B6B;
  font-size: 18px;
}

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

/* CTA SECTIONS - DYNAMIC */
.cta-dual {
  background: linear-gradient(135deg, #2C5F7C 0%, #1A4E66 100%);
  padding: 60px 20px;
}

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

.cta-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid #FFD700;
  transition: all 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.4);
}

.cta-card h3 {
  color: #2C5F7C;
  margin-bottom: 24px;
  font-size: 32px;
}

.cta-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.cta-card ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #2C5F7C;
  font-size: 16px;
}

.cta-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: 900;
  font-size: 20px;
}

/* HERO INTERNAL */
.hero-internal {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 6px solid #FFD700;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 16px;
  color: #FFFFFF;
}

.breadcrumbs a {
  color: #FFFFFF;
  font-weight: 600;
}

.breadcrumbs span {
  color: #FFD700;
  font-weight: 700;
}

.intro-text {
  font-size: 20px;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 2px 2px 4px rgba(44, 95, 124, 0.3);
}

/* CONTENT SECTIONS */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

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

.content-wrapper ul, .content-wrapper ol {
  margin-left: 32px;
  margin-bottom: 24px;
}

.content-wrapper li {
  margin-bottom: 12px;
  color: #2C5F7C;
  font-size: 18px;
}

/* CONTACT SECTIONS */
.contact-quick {
  background: linear-gradient(135deg, #FFF5E1 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  flex: 1 1 400px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
  border: 3px solid #FFD700;
}

.contact-info h3 {
  margin-bottom: 24px;
  color: #FF6B6B;
}

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

.contact-form-container {
  flex: 1 1 500px;
}

.form-placeholder {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  border: 3px solid #FF6B6B;
}

.form-placeholder h3 {
  margin-bottom: 24px;
  color: #2C5F7C;
}

.form-placeholder p {
  margin-bottom: 16px;
  font-weight: 600;
}

/* FOOTER - PLAYFUL */
footer {
  background: linear-gradient(135deg, #2C5F7C 0%, #1A4E66 100%);
  color: #FFFFFF;
  padding: 60px 20px 32px;
  border-top: 6px solid #FFD700;
}

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

.footer-col {
  flex: 1 1 200px;
}

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

.footer-col h4 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 20px;
}

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

.footer-nav a {
  color: #FFFFFF;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

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

.footer-col p {
  color: #FFFFFF;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-col a {
  color: #FFD700;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-legal a {
  color: #FFFFFF;
  font-size: 14px;
  padding: 8px 16px;
  background: rgba(255, 107, 107, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  background: rgba(255, 215, 0, 0.3);
  color: #FFD700;
}

/* COOKIE BANNER - PLAYFUL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F7C 0%, #1A4E66 100%);
  padding: 24px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  border-top: 4px solid #FFD700;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #FFFFFF;
  font-size: 16px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.cookie-accept {
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  color: #FFFFFF;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.cookie-reject {
  background: #FFFFFF;
  color: #2C5F7C;
  border: 2px solid #FFD700;
}

.cookie-reject:hover {
  background: #FFD700;
  color: #2C5F7C;
}

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

.cookie-settings:hover {
  background: #FFFFFF;
  color: #2C5F7C;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 4px solid #FFD700;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F5F5F0;
  border-radius: 15px;
  border-left: 4px solid #FFD700;
}

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

.cookie-toggle {
  display: inline-block;
  width: 60px;
  height: 30px;
  background: #CCC;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #FF6B6B;
}

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

.cookie-toggle.active::after {
  left: 33px;
}

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

/* RESPONSIVE - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  p { font-size: 16px; }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 20px;
  }
  
  .value-card, .service-card, .property-card {
    flex: 1 1 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .cta-grid {
    flex-direction: column;
  }
  
  .cta-card {
    flex: 1 1 100%;
  }
  
  .contact-wrapper {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .btn-primary, .btn-secondary {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
  
  .value-card, .service-card {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-40 { margin-top: 40px; }

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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