/* =================================================================
   MYSTIC PROMENADE IMMOBILIEN - CREATIVE ARTISTIC DESIGN SYSTEM
   Creative & Artistic Style with Vibrant Colors and Unique Elements
   ================================================================= */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  overflow-x: hidden;
}

/* CREATIVE ARTISTIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #8B4513;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  color: #2C5F7C;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #8B4513 0%, #E8D5B7 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #2C5F7C;
}

h4 {
  font-size: 20px;
  color: #8B4513;
}

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

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

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

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

li {
  margin-bottom: 10px;
  color: #34495E;
  background-color: #ffe4e184;
}

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

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

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

/* CREATIVE BUTTON STYLES */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.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, #2C5F7C 0%, #1a4d5e 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a4d5e 0%, #2C5F7C 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(44, 95, 124, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #a0522d 0%, #8B4513 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.6);
}

/* HEADER STYLES - CREATIVE ARTISTIC */
header {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4d5e 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid #E8D5B7;
}

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

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

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

/* NAVIGATION - CREATIVE ARTISTIC */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

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

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

.main-nav a:hover {
  color: #E8D5B7;
  background: rgba(232, 213, 183, 0.1);
  transform: translateY(-3px);
}

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

/* MOBILE MENU BUTTON - CREATIVE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.6);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.8);
}

/* MOBILE MENU OVERLAY - CREATIVE ARTISTIC */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F7C 0%, #1a4d5e 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -8px 0 32px 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: #8B4513;
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #E8D5B7;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(232, 213, 183, 0.2);
  transform: translateX(10px);
  border-left: 4px solid #8B4513;
}

/* HERO SECTION - CREATIVE ARTISTIC */
.hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 8% 8%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 213, 183, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  -webkit-text-fill-color: #FFFFFF;
  animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subheadline {
  color: #E8D5B7;
  font-size: 20px;
  margin-bottom: 16px;
  animation: fadeIn 1s ease-out 0.3s both;
}

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

.trust-badge {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 32px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  display: inline-block;
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-out 0.5s both;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeIn 1s ease-out 0.7s both;
}

/* PAGE HERO - CREATIVE */
.page-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  border-radius: 0 0 30% 30% / 0 0 5% 5%;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
  -webkit-text-fill-color: #FFFFFF;
}

.page-hero p {
  color: #E8D5B7;
  font-size: 18px;
  margin-bottom: 16px;
}

.breadcrumb {
  color: #E8D5B7;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #FFFFFF;
  text-decoration: underline;
}

/* VALUE PROPOSITION - CREATIVE ARTISTIC */
.value-proposition {
  padding: 80px 20px;
  text-align: center;
  background: #FFFFFF;
  border-radius: 30px;
  margin: 40px 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.value-proposition h2 {
  margin-bottom: 16px;
}

.value-proposition > p {
  font-size: 18px;
  color: #7F8C8D;
  margin-bottom: 48px;
}

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

.benefit-item {
  flex: 1 1 250px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.benefit-item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(44, 95, 124, 0.3);
  border: 3px solid #2C5F7C;
}

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

.benefit-item p {
  color: #34495E;
  font-size: 15px;
}

/* SERVICES GRID - CREATIVE ARTISTIC */
.services-overview {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #E8D5B7 100%);
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #7F8C8D;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 320px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2C5F7C 0%, #8B4513 100%);
}

.service-card:hover {
  transform: translateY(-16px) scale(1.05);
  box-shadow: 0 20px 60px rgba(44, 95, 124, 0.4);
  border: 3px solid #2C5F7C;
}

.service-card.featured {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4d5e 100%);
  color: #FFFFFF;
  border: 3px solid #E8D5B7;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .price {
  color: #FFFFFF;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p {
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 16px;
  display: block;
}

.service-card .btn {
  margin-top: 16px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
}

/* PROCESS STEPS - CREATIVE ARTISTIC */
.process-preview,
.process-overview {
  padding: 80px 20px;
  background: #FFFFFF;
  text-align: center;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 48px 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: linear-gradient(90deg, #2C5F7C 0%, #8B4513 100%);
  border-radius: 2px;
  z-index: 0;
}

.step {
  flex: 1 1 180px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  padding: 32px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  border: 3px solid #E8D5B7;
}

.step:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 16px 48px rgba(44, 95, 124, 0.3);
  border: 3px solid #2C5F7C;
}

.step h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
}

.step h4 {
  color: #8B4513;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  color: #34495E;
  font-size: 15px;
}

.duration {
  font-size: 13px;
  color: #7F8C8D;
  font-style: italic;
  margin-top: 12px;
}

/* PROPERTIES GRID - CREATIVE ARTISTIC */
.featured-properties,
.properties-list {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #E8D5B7 100%);
}

.property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.property-tags span {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4d5e 100%);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.property-tags span:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(44, 95, 124, 0.5);
}

.properties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.property-card {
  flex: 1 1 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.property-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #8B4513 0%, #2C5F7C 100%);
}

.property-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.4);
  border: 3px solid #8B4513;
}

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

.property-card .location {
  color: #7F8C8D;
  font-size: 14px;
  margin-bottom: 12px;
}

.property-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #2C5F7C;
  margin-bottom: 12px;
}

/* TESTIMONIALS - CREATIVE ARTISTIC */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  text-align: center;
  border-radius: 30px;
  margin: 40px 20px;
}

.testimonials h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

.testimonials h2::after {
  background: #E8D5B7;
}

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

.testimonial-card {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 3px solid #E8D5B7;
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 60px;
  color: #E8D5B7;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: #8B4513;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
}

.rating {
  color: #E8D5B7;
  font-size: 18px;
  font-weight: 600;
}

/* CTA SECTIONS - CREATIVE ARTISTIC */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #8B4513 0%, #2C5F7C 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 40px 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

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

.cta-banner h2::after,
.cta-section h2::after {
  background: #E8D5B7;
  left: 50%;
  transform: translateX(-50%);
}

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

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

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

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

.footer-section {
  flex: 1 1 250px;
}

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

.footer-section p {
  color: #BDC3C7;
  font-size: 14px;
  margin-bottom: 12px;
}

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

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

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

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #E8D5B7;
  padding-left: 28px;
}

.copyright {
  text-align: center;
  color: #BDC3C7;
  font-size: 14px;
  padding-top: 32px;
  border-top: 2px solid rgba(232, 213, 183, 0.3);
}

/* FILTER SECTION - CREATIVE */
.filter-section {
  padding: 60px 20px;
  background: #FFFFFF;
  text-align: center;
  border-radius: 20px;
  margin: 32px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.results-count {
  font-weight: 600;
  color: #2C5F7C;
  margin-bottom: 32px;
  font-size: 18px;
}

/* NEIGHBORHOODS/DISTRICTS - CREATIVE ARTISTIC */
.neighborhoods {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
}

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

.district-card {
  flex: 1 1 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  text-align: center;
}

.district-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 60px rgba(44, 95, 124, 0.4);
  border: 3px solid #2C5F7C;
}

.district-card h3 {
  margin-bottom: 12px;
}

/* MARKET INSIGHTS - CREATIVE */
.market-insights {
  padding: 80px 20px;
  background: #FFFFFF;
  text-align: center;
}

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

.stat-item {
  flex: 1 1 200px;
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-12px) scale(1.1);
  box-shadow: 0 20px 60px rgba(44, 95, 124, 0.5);
}

.stat-item h3 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 12px;
}

.stat-item p {
  color: #E8D5B7;
  font-size: 16px;
}

/* LEGAL CONTENT - CREATIVE */
.legal-content {
  padding: 60px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  margin: 32px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 24px;
}

/* PROCESS DETAILS - CREATIVE */
.process-details {
  padding: 80px 20px;
}

.detail-section {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #2C5F7C;
  transition: all 0.3s ease;
}

.detail-section:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 36px rgba(44, 95, 124, 0.2);
}

.tip {
  background: linear-gradient(135deg, #E8D5B7 0%, #FFF8F0 100%);
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid #8B4513;
  margin-top: 16px;
}

/* PACKAGES - CREATIVE */
.packages {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #E8D5B7 100%);
  text-align: center;
}

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

.package-card {
  flex: 1 1 350px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.package-card:hover {
  transform: translateY(-16px) scale(1.05);
  box-shadow: 0 20px 60px rgba(44, 95, 124, 0.4);
  border: 3px solid #2C5F7C;
}

.package-card.featured {
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  color: #FFFFFF;
  border: 3px solid #E8D5B7;
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured .price {
  color: #FFFFFF;
}

.savings {
  background: #E8D5B7;
  color: #8B4513;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-top: 12px;
}

/* COSTS SECTION - CREATIVE */
.costs {
  padding: 60px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  margin: 32px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.costs h2 {
  text-align: center;
  margin-bottom: 24px;
}

.costs p {
  text-align: center;
  margin-bottom: 24px;
}

.costs ul {
  max-width: 600px;
  margin: 0 auto;
}

/* WHY SERVICES - CREATIVE */
.why-services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  border-radius: 30px;
  margin: 40px 20px;
}

.why-services h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 48px;
}

.why-services h2::after {
  background: #E8D5B7;
  left: 50%;
  transform: translateX(-50%);
}

/* COMPANY STORY - CREATIVE */
.company-story {
  padding: 80px 20px;
  background: #FFFFFF;
  text-align: center;
  border-radius: 20px;
  margin: 32px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* VALUES - CREATIVE ARTISTIC */
.values {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #E8D5B7 100%);
}

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

.value-item {
  flex: 1 1 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.value-item:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.4);
  border: 3px solid #8B4513;
}

/* TEAM - CREATIVE */
.team {
  padding: 80px 20px;
  background: #FFFFFF;
  text-align: center;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.team-member {
  flex: 1 1 250px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  border: 3px solid #E8D5B7;
}

.team-member:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 60px rgba(44, 95, 124, 0.4);
  border: 3px solid #2C5F7C;
}

.team-member h3 {
  margin-bottom: 8px;
}

.team-member p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* EXPERTISE & LOCAL EXPERTISE - CREATIVE */
.expertise,
.local-expertise {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #E8D5B7 100%);
  border-radius: 20px;
  margin: 32px 20px;
}

.quote {
  font-size: 22px;
  font-style: italic;
  color: #8B4513;
  font-weight: 600;
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border-left: 4px solid #2C5F7C;
}

/* OFFICE LOCATION - CREATIVE */
.office-location {
  padding: 60px 20px;
  background: #FFFFFF;
  text-align: center;
  border-radius: 20px;
  margin: 32px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* CONTACT OPTIONS - CREATIVE */
.contact-options {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #E8D5B7 100%);
}

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

.option-card {
  flex: 1 1 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.option-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 60px rgba(44, 95, 124, 0.4);
  border: 3px solid #2C5F7C;
}

.response-time {
  margin-top: 32px;
  font-weight: 600;
  color: #8B4513;
  font-size: 16px;
  text-align: center;
}

/* CONTACT FORM SECTION - CREATIVE */
.contact-form-section {
  padding: 60px 20px;
  background: #FFFFFF;
  text-align: center;
  border-radius: 20px;
  margin: 32px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-note {
  background: linear-gradient(135deg, #E8D5B7 0%, #FFF8F0 100%);
  padding: 32px;
  border-radius: 20px;
  margin-top: 32px;
  border: 3px solid #2C5F7C;
}

.quick-contact {
  font-size: 20px;
  font-weight: 700;
  color: #2C5F7C;
  margin-top: 16px;
}

/* OFFICE INFO - CREATIVE */
.office-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #E8D5B7 100%);
  border-radius: 20px;
  margin: 32px 20px;
}

.office-info h2 {
  margin-bottom: 32px;
}

/* TEAM CONTACTS - CREATIVE */
.team-contacts {
  padding: 60px 20px;
  background: #FFFFFF;
  text-align: center;
}

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

.contact-card {
  flex: 1 1 200px;
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  padding: 24px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-12px) scale(1.1);
  box-shadow: 0 20px 60px rgba(44, 95, 124, 0.5);
}

.contact-card h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.contact-card p {
  color: #E8D5B7;
  font-size: 14px;
}

/* APPOINTMENT BOOKING - CREATIVE */
.appointment-booking {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  text-align: center;
  border-radius: 30px;
  margin: 40px 20px;
}

.appointment-booking h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.appointment-booking h2::after {
  background: #E8D5B7;
  left: 50%;
  transform: translateX(-50%);
}

.appointment-booking p {
  color: #E8D5B7;
  margin-bottom: 16px;
}

/* PRIVACY NOTICE - CREATIVE */
.privacy-notice {
  padding: 60px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  margin: 32px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.privacy-notice h2 {
  text-align: center;
  margin-bottom: 24px;
}

/* THANK YOU PAGE - CREATIVE ARTISTIC */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  padding: 100px 20px;
  text-align: center;
  border-radius: 0 0 30% 30% / 0 0 5% 5%;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #27AE60;
  margin-bottom: 32px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
  -webkit-text-fill-color: #FFFFFF;
}

.thank-you-hero p {
  color: #E8D5B7;
  font-size: 18px;
  margin-bottom: 16px;
}

.confirmation-text {
  color: #FFFFFF;
  font-weight: 600;
}

/* NEXT STEPS - CREATIVE */
.next-steps {
  padding: 80px 20px;
  background: #FFFFFF;
}

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

.timeline {
  color: #8B4513;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

/* WHILE YOU WAIT - CREATIVE */
.while-you-wait {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #E8D5B7 100%);
  text-align: center;
}

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

.cta-card {
  flex: 1 1 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  color: #2C5F7C;
  font-weight: 600;
  font-size: 18px;
  border: 3px solid transparent;
}

.cta-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 60px rgba(44, 95, 124, 0.4);
  border: 3px solid #2C5F7C;
  color: #8B4513;
}

/* HIGHLIGHT - CREATIVE */
.highlight {
  background: linear-gradient(135deg, #E8D5B7 0%, #FFF8F0 100%);
  padding: 12px 20px;
  border-radius: 15px;
  color: #8B4513;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
  display: inline-block;
}

/* COOKIE CONSENT BANNER - CREATIVE ARTISTIC */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4d5e 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #E8D5B7;
}

#cookie-consent.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;
  font-size: 14px;
  color: #E8D5B7;
}

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

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

.cookie-btn.accept {
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  color: #FFFFFF;
}

.cookie-btn.accept:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.6);
}

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

.cookie-btn.reject:hover {
  background: rgba(232, 213, 183, 0.1);
}

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

.cookie-btn.settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* COOKIE MODAL - CREATIVE ARTISTIC */
#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;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #8B4513;
  color: #FFFFFF;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 100%);
  border-radius: 15px;
  border-left: 4px solid #2C5F7C;
}

.cookie-category h3 {
  margin-bottom: 8px;
  color: #2C5F7C;
}

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

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

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

.toggle-switch.active {
  background: #2C5F7C;
}

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

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

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  
  .page-hero { padding: 60px 20px; }
  .page-hero h1 { font-size: 32px; }
  
  .section { padding: 32px 16px; margin-bottom: 40px; }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .benefits-grid,
  .services-grid,
  .properties-grid,
  .testimonials-grid,
  .process-steps,
  .stats-grid,
  .districts-grid,
  .values-grid,
  .team-members,
  .options-grid,
  .contacts-grid,
  .packages-grid {
    flex-direction: column;
  }
  
  .benefit-item,
  .service-card,
  .property-card,
  .testimonial-card,
  .step,
  .stat-item,
  .district-card,
  .value-item,
  .team-member,
  .option-card,
  .contact-card,
  .package-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .process-steps::before {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .benefit-item,
  .service-card,
  .property-card,
  .stat-item,
  .district-card,
  .value-item {
    flex: 1 1 45%;
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* 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: 0;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  .btn {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

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

.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out;
}

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

/* FOCUS STYLES */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid #E8D5B7;
  outline-offset: 2px;
}

/* SELECTION STYLES */
::selection {
  background: #2C5F7C;
  color: #FFFFFF;
}

::-moz-selection {
  background: #2C5F7C;
  color: #FFFFFF;
}