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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: light only; /* Force light mode only */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: #FFFFFF;
  color: #1E3A5F;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color-scheme: light only; /* Prevent dark mode override */
  forced-color-adjust: none; /* Prevent browser color adjustments */
}

/* Prevent dark mode override - CRITICAL */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #FFFFFF !important;
    color: #1E3A5F !important;
  }
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
  padding: 16px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

/* Logo Styles - Text & Image Support */
.header-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E3A5F;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.logo-text:hover {
  color: #C9A55A;
}

/* Image Logo Support */
.logo-image {
  height: 40px;
  width: auto;
  max-width: 200px;
  transition: opacity 0.3s ease;
}

.logo-image:hover {
  opacity: 0.8;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: #1E3A5F;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C9A55A;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #C9A55A;
}

.nav-link:hover::after {
  width: 100%;
}

/* Header CTA */
.header-cta {
  padding: 10px 24px;
  background: #C9A55A;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid #C9A55A;
}

.header-cta:hover {
  background: #B8944A;
  border-color: #B8944A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background: #1E3A5F;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-nav-content {
  width: 100%;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1E3A5F;
  transition: color 0.3s ease;
}

.mobile-nav-close:hover {
  color: #C9A55A;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 300px;
}

.mobile-nav-link {
  color: #1E3A5F;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 12px;
}

.mobile-nav-link:hover {
  color: #C9A55A;
}

.mobile-nav-cta {
  margin-top: 16px;
  padding: 14px 32px;
  background: #C9A55A;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #C9A55A;
}

.mobile-nav-cta:hover {
  background: #B8944A;
  border-color: #B8944A;
}


/* =============================================
   HERO SECTION - WITH BACKGROUND IMAGE
   ============================================= */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  
  /* Background Image */
  background-image: url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8bHV4dXJ5JTIwcmVhbCUyMGVzdGF0ZXxlbnwwfHwwfHx8MA%3D%3D');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Desktop - Noticeably Darker */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.50) 100%);
  z-index: 1;
}

/* Ensure content appears above overlay */
.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Update text colors for better contrast */
.hero-section .hero-title,
.hero-section .hero-subtitle {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .trust-label {
  color: rgba(255, 255, 255, 0.9);
}

.hero-section .trust-number {
  color: #C9A55A;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile: Remove fixed attachment for performance */
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    min-height: 80vh;
  }
  
	
	 .hero-section .btn-secondary {
    background: #1E3A5F;
    color: #FFFFFF;
    border: 2px solid #1E3A5F;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
  }
	
	
  /* Use same overlay as desktop - natural black tint */
  .hero-section::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.25) 100%);
  }
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C9A55A;
  line-height: 1;
}

.trust-label {
  font-size: 0.875rem;
  color: #64748B;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Title */
.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: #1E3A5F;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  font-weight: 700;
  color: #C9A55A;
  position: relative;
  display: inline-block;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}




/* Stronger text for better readability on background images */
.hero-section .hero-title {
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 400; /* Increase from 300 to 400 */
}

.hero-section .hero-subtitle {
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-weight: 500; /* Make subtitle slightly bolder too */
}

/* Make trust badges more prominent */
.hero-section .trust-label {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600; /* Already bold, keep it */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}














/* Solid Blue Secondary Button on Desktop Hero */
.hero-section .btn-secondary {
  background: #1E3A5F;
  color: #FFFFFF;
  border: 2px solid #1E3A5F;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.4);
}

.hero-section .btn-secondary:hover {
  background: #162D47;
  border-color: #162D47;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(30, 58, 95, 0.5);
}















/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: #C9A55A;
  color: #FFFFFF;
  border-color: #C9A55A;
}

.btn-primary:hover {
  background: #B8944A;
  border-color: #B8944A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 165, 90, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #1E3A5F;
  border-color: #1E3A5F;
}

.btn-secondary:hover {
  background: #1E3A5F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
}
/* Decorative Element */
.hero-decoration {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 165, 90, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.fade-in-delay-3 {
  animation: fadeIn 0.8s ease-out 0.6s backwards;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-top: 2px solid rgba(201, 165, 90, 0.3);
  padding: 24px;
  z-index: 10000;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
}

.cookie-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 8px;
}

.cookie-description {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.6;
}

.cookie-link {
  background: none;
  border: none;
  color: #C9A55A;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #B8944A;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: inherit;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #C9A55A;
  color: #FFFFFF;
  border-color: #C9A55A;
}

.cookie-btn-accept:hover {
  background: #B8944A;
  border-color: #B8944A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.3);
}

.cookie-btn-essential {
  background: transparent;
  color: #1E3A5F;
  border-color: #1E3A5F;
}

.cookie-btn-essential:hover {
  background: rgba(30, 58, 95, 0.05);
}

.cookie-btn-reject {
  background: transparent;
  color: #DC2626;
  border-color: #DC2626;
}

.cookie-btn-reject:hover {
  background: rgba(220, 38, 38, 0.05);
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  /* Disable backdrop-filter on mobile for performance */
  .site-header,
  .mobile-nav-overlay,
  .cookie-banner {
    backdrop-filter: none;
  }
  
  /* Hide desktop nav, show hamburger */
  .desktop-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Logo adjustments */
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-image {
    height: 32px;
  }
  
  /* Hero adjustments */
  .hero-section {
    min-height: 80vh;
    padding: 100px 20px 60px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .trust-badges {
    gap: 24px;
    margin-bottom: 32px;
  }
  
  .trust-number {
    font-size: 1.75rem;
  }
  
  .trust-label {
    font-size: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Disable animations on mobile */
  .fade-in,
  .fade-in-delay,
  .fade-in-delay-2,
  .fade-in-delay-3 {
    animation: none !important;
    opacity: 1 !important;
  }
  
  /* Hide decorative element on mobile */
  .hero-decoration {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 16px;
  }
  
  .hero-section {
    padding: 90px 16px 50px;
  }
  
  .hero-title {
    font-size: 1.875rem;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 20px;
  }
  
  .cookie-banner {
    padding: 20px 16px;
  }
}

/* =============================================
   TOUCH OPTIMIZATION (Mobile)
   ============================================= */
@media (max-width: 768px) {
  /* Minimum touch targets 44px */
  .nav-link,
  .mobile-nav-link,
  .btn,
  .cookie-btn,
  .hamburger,
  .mobile-nav-close {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Remove tap highlight */
  * {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }
}

/* Disable hover effects on touch devices */
@media (hover: none) {
  .nav-link:hover::after {
    width: 0;
  }
  
  .btn:hover {
    transform: none;
    box-shadow: none;
  }
  
  .header-cta:hover,
  .cookie-btn-accept:hover {
    transform: none;
    box-shadow: none;
  }
}



/* =============================================
   SECTION 2: SERVICES (LEISTUNGEN)
   ============================================= */
.services-section {
  padding: 100px 24px;
  background: #FFFFFF;
  position: relative;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C9A55A;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(201, 165, 90, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(201, 165, 90, 0.2);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 300;
  color: #1E3A5F;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

/* Service Cards */
.service-card {
  background: #FAFAFA;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C9A55A 0%, #B8944A 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: #FFFFFF;
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Service Icon */
.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(201, 165, 90, 0.1);
  border: 2px solid rgba(201, 165, 90, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A55A;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: #C9A55A;
  border-color: #C9A55A;
  color: #FFFFFF;
  transform: scale(1.05);
}

/* Service Content */
.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-description {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-size: 0.9375rem;
  color: #1E3A5F;
  padding-left: 24px;
  position: relative;
  font-weight: 500;
}

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

/* Services CTA */
.services-cta {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.05) 0%, rgba(30, 58, 95, 0.03) 100%);
  border-radius: 16px;
  border: 1px solid rgba(201, 165, 90, 0.15);
}

.services-cta-text {
  font-size: 1.25rem;
  color: #1E3A5F;
  font-weight: 500;
  margin-bottom: 24px;
}

/* =============================================
   MOBILE RESPONSIVE - SERVICES SECTION
   ============================================= */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Single column on mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .service-card:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.08);
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .service-description {
    font-size: 0.9375rem;
  }

  .services-cta {
    padding: 32px 24px;
  }

  .services-cta-text {
    font-size: 1.125rem;
  }

  .services-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 50px 16px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* Disable hover effects on touch devices */
@media (hover: none) {
  .service-card:hover {
    transform: none;
    box-shadow: none;
  }

  .service-icon {
    background: rgba(201, 165, 90, 0.15);
    border-color: rgba(201, 165, 90, 0.3);
  }
}





/* =============================================
   SECTION 3: PROPERTIES (OBJEKTE)
   ============================================= */
.properties-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
  position: relative;
}

.properties-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Properties Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

/* Property Card */
.property-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.property-card:hover {
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
}

/* Property Image */
.property-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #FAFAFA 0%, #F3F4F6 100%);
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

/* Image Placeholder (remove when adding real images) */
.property-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A55A;
  opacity: 0.3;
}

/* Property Badge */
.property-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #C9A55A;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(201, 165, 90, 0.3);
}

.property-badge-rent {
  background: #1E3A5F;
}

.property-badge-commercial {
  background: #64748B;
}

/* Property Content */
.property-content {
  padding: 28px 24px 24px;
}

/* Property Header */
.property-header {
  margin-bottom: 20px;
}

.property-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 8px;
  line-height: 1.3;
}

.property-location {
  font-size: 0.9375rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-location svg {
  flex-shrink: 0;
  color: #C9A55A;
}

/* Property Details */
.property-details {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(30, 58, 95, 0.08);
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
  margin-bottom: 20px;
}

.property-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: #1E3A5F;
  font-weight: 500;
}

.property-detail svg {
  color: #C9A55A;
  flex-shrink: 0;
}

/* Property Footer */
.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.property-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C9A55A;
  line-height: 1;
}

/* Property Button */
.property-btn {
  padding: 10px 20px;
  background: transparent;
  color: #1E3A5F;
  border: 2px solid #1E3A5F;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.property-btn svg {
  transition: transform 0.3s ease;
}

.property-btn:hover {
  background: #1E3A5F;
  color: #FFFFFF;
  transform: translateX(4px);
}

.property-btn:hover svg {
  transform: translateX(4px);
}

/* Properties CTA - WITH BACKGROUND IMAGE */
.properties-cta {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  border-radius: 16px;
  overflow: hidden;
  
  /* Background Image */
  background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Subtle Overlay - Image Shows Through */
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    min-height: 80vh;
  }
  
  /* Noticeably Darker Overlay - Matches Desktop */
  .hero-section::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.50) 100%);
  }
}

/* Ensure content appears above overlay */
.properties-cta-text,
.properties-cta .btn {
  position: relative;
  z-index: 2;
}

.properties-cta-text {
  font-size: 1.5rem;
  color: #1E3A5F;
  font-weight: 600;
  margin-bottom: 32px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .properties-cta {
    padding: 60px 32px;
  }
  
  .properties-cta-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .properties-cta {
    padding: 50px 24px;
  }
  
  .properties-cta-text {
    font-size: 1.125rem;
  }
}

.properties-cta-text {
  font-size: 1.25rem;
  color: #1E3A5F;
  font-weight: 500;
  margin-bottom: 24px;
}

/* =============================================
   MOBILE RESPONSIVE - PROPERTIES SECTION
   ============================================= */
@media (max-width: 768px) {
  .properties-section {
    padding: 60px 20px;
  }

  /* Single column on mobile */
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .property-card:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.1);
  }

  .property-image {
    height: 220px;
  }

  .property-content {
    padding: 24px 20px 20px;
  }

  .property-title {
    font-size: 1.25rem;
  }

  .property-details {
    flex-direction: column;
    gap: 12px;
  }

  .property-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .property-price {
    font-size: 1.375rem;
  }

  .property-btn {
    width: 100%;
    justify-content: center;
  }

  .property-btn:hover {
    transform: none;
  }

  .properties-cta {
    padding: 32px 24px;
  }

  .properties-cta-text {
    font-size: 1.125rem;
  }

  .properties-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .properties-section {
    padding: 50px 16px;
  }

  .property-image {
    height: 200px;
  }

  .property-content {
    padding: 20px 16px 16px;
  }

  .property-title {
    font-size: 1.125rem;
  }

  .property-price {
    font-size: 1.25rem;
  }

  .property-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

/* Disable hover effects on touch devices */
@media (hover: none) {
  .property-card:hover {
    transform: none;
  }

  .property-card:hover .property-image img {
    transform: none;
  }

  .property-btn:hover {
    transform: none;
  }

  .property-btn:hover svg {
    transform: none;
  }
}







/* =============================================
   SECTION 4: ABOUT (ÜBER MICH)
   ============================================= */
.about-section {
  padding: 100px 24px;
  background: #FFFFFF;
  position: relative;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* About Content Layout */
.about-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

/* Agent Photo */
.about-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #FAFAFA 0%, #F3F4F6 100%);
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.12);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Placeholder (remove when adding real photo) */
.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A55A;
  opacity: 0.3;
}

/* Decorative Element */
.about-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.2), rgba(201, 165, 90, 0.05));
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

/* Agent Info */
.about-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Name & Title */
.about-header {
  border-bottom: 2px solid rgba(201, 165, 90, 0.2);
  padding-bottom: 20px;
}

.about-name {
  font-size: 2.25rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 8px;
  line-height: 1.2;
}

.about-title {
  font-size: 1.125rem;
  color: #C9A55A;
  font-weight: 500;
}

/* Bio */
.about-bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-bio p {
  font-size: 1.0625rem;
  color: #64748B;
  line-height: 1.8;
}

.about-bio strong {
  color: #1E3A5F;
  font-weight: 600;
}

/* Credentials */
.about-credentials {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.05) 0%, rgba(30, 58, 95, 0.03) 100%);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(201, 165, 90, 0.15);
}

.credentials-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 20px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: #1E3A5F;
  font-weight: 500;
}

.credential-item svg {
  color: #C9A55A;
  flex-shrink: 0;
}

/* Why Choose Me */
.about-why {
  background: #FAFAFA;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.why-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 28px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 165, 90, 0.1);
  border: 2px solid rgba(201, 165, 90, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A55A;
  flex-shrink: 0;
}

.why-content {
  flex: 1;
}

.why-subtitle {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 6px;
}

.why-text {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.6;
}

/* About CTA */
.about-cta {
  padding-top: 12px;
}

.about-cta .btn {
  width: 100%;
  justify-content: center;
  display: flex;
  font-size: 1.0625rem;
  padding: 16px 32px;
}

/* =============================================
   MOBILE RESPONSIVE - ABOUT SECTION
   ============================================= */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-content {
    margin-top: 48px;
  }

  .about-image {
    max-width: 300px;
  }

  .about-name {
    font-size: 1.875rem;
  }

  .about-title {
    font-size: 1rem;
  }

  .about-bio p {
    font-size: 1rem;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-credentials {
    padding: 24px 20px;
  }

  .about-why {
    padding: 28px 20px;
  }

  .why-title {
    font-size: 1.375rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 50px 16px;
  }

  .about-image {
    max-width: 280px;
  }

  .about-name {
    font-size: 1.625rem;
  }

  .credentials-title {
    font-size: 1.125rem;
  }

  .why-title {
    font-size: 1.25rem;
  }

  .why-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Disable hover effects on touch devices */
@media (hover: none) {
  .why-icon {
    background: rgba(201, 165, 90, 0.15);
    border-color: rgba(201, 165, 90, 0.3);
  }
}






/* =============================================
   SECTION 5: CONTACT & BOOKING (KONTAKT)
   ============================================= */
.contact-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
  position: relative;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Booking System Layout */
.booking-system {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
  margin-bottom: 80px;
}

/* =============================================
   CALENDAR STYLING
   ============================================= */
.booking-calendar {
  background: #FFFFFF;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Calendar Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(201, 165, 90, 0.2);
}

.calendar-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1E3A5F;
}

.calendar-nav {
  width: 40px;
  height: 40px;
  background: rgba(201, 165, 90, 0.1);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A55A;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-nav:hover {
  background: rgba(201, 165, 90, 0.2);
  border-color: rgba(201, 165, 90, 0.4);
}

/* Weekdays */
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748B;
  padding: 8px 0;
}

/* Calendar Days */
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #E8F5E9; 
  color: #1E3A5F;
  border: 2px solid #81C784; 
}

.calendar-day:hover:not(.disabled):not(.booked) {
  background: rgba(201, 165, 90, 0.1);
  border-color: rgba(201, 165, 90, 0.3);
}

.calendar-day.disabled {
  color: #CBD5E1;
  cursor: not-allowed;
  background: #F8F9FA;
  border: 2px solid #E2E8F0;
  opacity: 0.6;
}

.calendar-day.booked {
  background: #FFEBEE; 
  color: #E57373;
  cursor: not-allowed;
  position: relative;
  border: 2px solid #EF9A9A; 
}

.calendar-day.booked::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #E57373; /
  border-radius: 50%;
  bottom: 6px;
}

.calendar-day.selected {
  background: #C9A55A;
  color: #FFFFFF;
  border-color: #B8944A;
  font-weight: 700;
}

.calendar-day.other-month {
  color: #CBD5E1;
}

/* Calendar Legend */
.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 58, 95, 0.08);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #64748B;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid;
}

.legend-available {
  background: #E8F5E9; 
  border-color: #81C784;
}

.legend-selected {
  background: #C9A55A;
  border-color: #B8944A;
}

.legend-booked {
  background: #FFEBEE; 
  border-color: #EF9A9A;
}

/* =============================================
   BOOKING FORM STYLING
   ============================================= */
.booking-form {
  background: #FFFFFF;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.booking-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 24px;
}

/* Selected Date Display */
.selected-date-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 12px;
  margin-bottom: 24px;
  color: #1E3A5F;
  font-weight: 500;
}

.selected-date-display svg {
  color: #C9A55A;
  flex-shrink: 0;
}

/* Time Slots */
.time-slots {
  margin-bottom: 24px;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.time-slot {
  padding: 12px;
  background: #FAFAFA;
  border: 2px solid rgba(30, 58, 95, 0.08);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1E3A5F;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.time-slot:hover:not(.booked) {
  background: rgba(201, 165, 90, 0.1);
  border-color: rgba(201, 165, 90, 0.3);
}

.time-slot.selected {
  background: #C9A55A;
  color: #FFFFFF;
  border-color: #B8944A;
}

.time-slot.booked {
  background: #F1F5F9;
  color: #CBD5E1;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1E3A5F;
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid rgba(30, 58, 95, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  color: #1E3A5F;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #FAFAFA;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #C9A55A;
  background: #FFFFFF;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* DSGVO Checkbox */
.form-group-checkbox {
  margin-top: 8px;
  padding: 16px;
  background: rgba(201, 165, 90, 0.05);
  border: 1px solid rgba(201, 165, 90, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-group-checkbox.error {
  animation: shakeError 0.4s ease;
  background: rgba(220, 38, 38, 0.05);
  border-color: rgba(220, 38, 38, 0.3);
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #C9A55A;
}

.checkbox-text {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.6;
}

.dsgvo-link {
  background: none;
  border: none;
  color: #C9A55A;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  transition: color 0.3s ease;
}

.dsgvo-link:hover {
  color: #B8944A;
}

/* Submit Button */
.btn-submit {
  margin-top: 8px;
  font-size: 1.0625rem;
  padding: 16px 32px;
}

/* Success Message */
.booking-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #22C55E;
}

.success-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 12px;
}

.success-text {
  font-size: 1.0625rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* =============================================
   MOBILE RESPONSIVE - CONTACT SECTION
   ============================================= */
@media (max-width: 1024px) {
  .booking-system {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .booking-calendar,
  .booking-form {
    padding: 24px 20px;
  }

  .calendar-title {
    font-size: 1.125rem;
  }

  .calendar-weekday {
    font-size: 0.75rem;
  }

  .calendar-day {
    font-size: 0.875rem;
  }

  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 16px;
  }

  .booking-calendar,
  .booking-form {
    padding: 20px 16px;
  }

  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calendar-legend {
    flex-direction: column;
    gap: 12px;
    align-items: start;
  }
}




/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: linear-gradient(180deg, #1E3A5F 0%, #162D47 100%);
  color: #FFFFFF;
  padding: 80px 24px 0;
  position: relative;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer About Column */
.footer-about {
  max-width: 350px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #C9A55A;
  letter-spacing: -0.02em;
}

.footer-logo-image {
  height: 40px;
  width: auto;
  max-width: 200px;
}

.footer-description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Social Media Links */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #C9A55A;
  border-color: #C9A55A;
  color: #1E3A5F;
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #C9A55A;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #C9A55A;
}

.footer-link:hover {
  color: #C9A55A;
  padding-left: 20px;
}

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

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #C9A55A;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #C9A55A;
}

.footer-contact-text {
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  padding: 32px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Footer Legal Links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #C9A55A;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

/* =============================================
   MOBILE RESPONSIVE - FOOTER
   ============================================= */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 20px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-copyright {
    order: 2;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 50px 16px 0;
  }

  .footer-title {
    font-size: 1rem;
  }

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

  .footer-separator {
    display: none;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }
}

/* Disable hover effects on touch devices */
@media (hover: none) {
  .social-link:hover {
    transform: none;
  }

  .footer-link:hover {
    padding-left: 0;
  }

  .footer-link::before {
    display: none;
  }
}







/* =============================================
   LEGAL MODALS
   ============================================= */
.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-modal.active {
  display: flex;
  opacity: 1;
}

/* Modal Overlay */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

/* Modal Content */
.modal-content {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1;
  animation: modalSlideIn 0.3s ease;
}

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

/* Modal Close Button */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(30, 58, 95, 0.1);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E3A5F;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.modal-close:hover {
  background: #C9A55A;
  color: #FFFFFF;
  transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
  padding: 40px 40px 24px;
  border-bottom: 2px solid rgba(201, 165, 90, 0.2);
  flex-shrink: 0;
}

.modal-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1E3A5F;
  padding-right: 60px;
  line-height: 1.3;
}

/* Modal Body */
.modal-body {
  padding: 32px 40px 40px;
  overflow-y: auto;
  flex: 1;
}

.modal-body h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-top: 32px;
  margin-bottom: 16px;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-top: 24px;
  margin-bottom: 12px;
}

.modal-body p {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 16px;
}

.modal-body ul {
  margin: 16px 0;
  padding-left: 24px;
}

.modal-body ul li {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 8px;
}

.modal-body strong {
  color: #1E3A5F;
  font-weight: 600;
}

.modal-body a {
  color: #C9A55A;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.modal-body a:hover {
  color: #B8944A;
}

/* Modal Link Button */
.modal-link {
  background: none;
  border: none;
  color: #C9A55A;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  transition: color 0.3s ease;
}

.modal-link:hover {
  color: #B8944A;
}

/* Cookie Settings Actions */
.cookie-settings-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(30, 58, 95, 0.1);
  display: flex;
  justify-content: center;
}

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: #F1F5F9;
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #C9A55A;
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #B8944A;
}

/* =============================================
   MOBILE RESPONSIVE - MODALS
   ============================================= */
@media (max-width: 768px) {
  .legal-modal {
    padding: 0;
  }

  .modal-content {
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }

  .modal-header {
    padding: 32px 24px 20px;
  }

  .modal-title {
    font-size: 1.5rem;
    padding-right: 50px;
  }

  .modal-body {
    padding: 24px;
  }

  .modal-body h3 {
    font-size: 1.25rem;
  }

  .modal-body h4 {
    font-size: 1.0625rem;
  }

  .modal-close {
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .modal-header {
    padding: 28px 20px 16px;
  }

  .modal-title {
    font-size: 1.375rem;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-body h3 {
    font-size: 1.125rem;
    margin-top: 24px;
  }

  .modal-body p,
  .modal-body ul li {
    font-size: 0.9375rem;
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}







/* =============================================
   COOKIE SETTINGS MODAL (INTERACTIVE)
   ============================================= */
.cookie-settings-intro {
  font-size: 1.0625rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

/* Cookie Categories */
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.cookie-category {
  background: #FAFAFA;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.cookie-category:hover {
  border-color: rgba(201, 165, 90, 0.3);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.06);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 20px;
}

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

.cookie-category-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1E3A5F;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.cookie-category-title svg {
  color: #C9A55A;
  flex-shrink: 0;
}

.cookie-category-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #C9A55A;
  background: rgba(201, 165, 90, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(201, 165, 90, 0.2);
}

.cookie-category-description {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
  flex-shrink: 0;
}

.cookie-checkbox {
  display: none;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  background: #CBD5E1;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-checkbox:checked + .cookie-switch {
  background: #C9A55A;
}

.cookie-checkbox:checked + .cookie-switch::after {
  transform: translateX(24px);
}

.cookie-checkbox:disabled + .cookie-switch {
  background: #C9A55A;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Cookie Settings Actions */
.cookie-settings-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding-top: 24px;
  border-top: 1px solid rgba(30, 58, 95, 0.1);
}

/* =============================================
   MOBILE RESPONSIVE - COOKIE SETTINGS
   ============================================= */
@media (max-width: 768px) {
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-category-info {
    width: 100%;
  }

  .cookie-toggle {
    align-self: flex-end;
  }

  .cookie-settings-actions {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .cookie-settings-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-category {
    padding: 20px 16px;
  }

  .cookie-category-title {
    font-size: 1rem;
  }

  .cookie-category-description {
    font-size: 0.875rem;
  }
}




/* =============================================
   MOBILE FIXES FOR MAIN SITE
   1. Fixed hamburger menu z-index
   2. Proper container padding
   3. No horizontal scroll
   PASTE THIS AT THE END OF styles.css
   ============================================= */

/* CRITICAL Z-INDEX FIX */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900 !important; /* LOWERED from 1000 */
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
  padding: 16px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000 !important; /* RAISED from 999 */
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hamburger {
  z-index: 1001 !important; /* Above everything */
}

/* Ensure mobile nav content isn't hidden */
.mobile-nav-content {
  width: 100%;
  padding: 100px 24px 40px !important; /* INCREASED top padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100vh;
  overflow-y: auto;
}

/* NO HORIZONTAL SCROLL FIX */
html {
  overflow-x: hidden !important;
  max-width: 100vw;
}

body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

/* MOBILE RESPONSIVE UPDATES */
@media (max-width: 768px) {
  /* Container fixes - equal padding */
  .hero-section,
  .services-section,
  .properties-section,
  .about-section,
  .contact-section,
  .site-footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .header-container,
  .services-container,
  .properties-container,
  .about-container,
  .contact-container,
  .footer-container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100%;
  }
  
  /* Booking system mobile fix */
  .booking-calendar,
  .booking-form {
    padding: 1.5rem 1rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
    width: 100%;
  }
  
  /* Contact card mobile */
  .luxury-contact-card {
    padding: 2rem 1rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
    width: 100%;
  }
  
  /* Mobile nav links - larger touch targets */
  .mobile-nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-nav-cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Disable backdrop filter on mobile for performance */
  .site-header,
  .mobile-nav-overlay {
    backdrop-filter: none !important;
  }
}

@media (max-width: 480px) {
  /* Extra small phones */
  .hero-section,
  .services-section,
  .properties-section,
  .about-section,
  .contact-section,
  .site-footer {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  
  .header-container,
  .services-container,
  .properties-container,
  .about-container,
  .contact-container,
  .footer-container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  
  .booking-calendar,
  .booking-form {
    padding: 1.25rem 0.75rem !important;
  }
}





/* =============================================
   MOBILE HEADER FIXES - HERO OVERLAP FIX
   ============================================= */

@media (max-width: 768px) {
  .hero-section {
    padding-top: 140px !important;
  }
  
  /* Hide header button - targeting the actual classes used */
  .site-header .btn-primary {
    display: none !important;
  }
  
  /* Alternative: hide any button in header */
  .site-header .btn {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 130px !important;
  }
}
	
	
	
	
	
	
/* =============================================
   PROPERTY DETAIL PAGE - LUXURY DESIGN
   Full-width, image-focused, elegant layout
   ============================================= */

.luxury-property-page {
  background: #FFFFFF;
  min-height: 100vh;
}

/* =============================================
   HERO IMAGE - FULL WIDTH
   ============================================= */
.property-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  background: #1E3A5F;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-back-btn {
  position: absolute;
  top: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #1E3A5F;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.hero-back-btn:hover {
  background: #FFFFFF;
  transform: translateX(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-back-btn svg {
  transition: transform 0.3s ease;
}

.hero-back-btn:hover svg {
  transform: translateX(-4px);
}

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

/* =============================================
   PROPERTY HEADER
   ============================================= */
.luxury-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(201, 165, 90, 0.2);
}

.luxury-title-section {
  flex: 1;
}

.luxury-title {
  font-size: 3rem;
  font-weight: 300;
  color: #1E3A5F;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.luxury-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  color: #64748B;
  font-weight: 500;
}

.luxury-location svg {
  color: #C9A55A;
  flex-shrink: 0;
}

.luxury-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C9A55A;
  white-space: nowrap;
}

/* =============================================
   KEY FACTS - HORIZONTAL BADGES
   ============================================= */
.luxury-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.fact-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.08) 0%, rgba(30, 58, 95, 0.05) 100%);
  border: 1px solid rgba(201, 165, 90, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #1E3A5F;
  transition: all 0.3s ease;
}

.fact-badge:hover {
  background: rgba(201, 165, 90, 0.15);
  border-color: rgba(201, 165, 90, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 90, 0.2);
}

.fact-badge svg {
  color: #C9A55A;
  flex-shrink: 0;
}

/* =============================================
   SECTIONS
   ============================================= */
.luxury-section {
  margin-bottom: 64px;
}

.section-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(201, 165, 90, 0.2);
}

.luxury-description {
  font-size: 1.0625rem;
  color: #64748B;
  line-height: 1.8;
}

.luxury-description p {
  margin-bottom: 20px;
}

.luxury-description p:last-child {
  margin-bottom: 0;
}

/* =============================================
   FEATURES GRID
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #FAFAFA;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1E3A5F;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #FFFFFF;
  border-color: rgba(201, 165, 90, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.08);
}

.feature-item svg {
  color: #C9A55A;
  flex-shrink: 0;
}

/* =============================================
   IMAGE GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* =============================================
   DETAILS TABLE
   ============================================= */
.details-table {
  background: #FAFAFA;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
  transition: background 0.3s ease;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row:hover {
  background: rgba(201, 165, 90, 0.05);
}

.detail-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1E3A5F;
}

.detail-value {
  font-size: 1rem;
  color: #64748B;
  text-align: right;
}

/* =============================================
   CONTACT CARD
   ============================================= */
.luxury-contact-card {
  background: linear-gradient(135deg, rgba(201, 165, 90, 0.08) 0%, rgba(30, 58, 95, 0.05) 100%);
  border: 2px solid rgba(201, 165, 90, 0.2);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 80px;
}

.contact-agent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-agent-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #C9A55A;
}

.contact-agent-info {
  text-align: left;
}

.contact-agent-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 4px;
}

.contact-agent-role {
  font-size: 1rem;
  color: #64748B;
  margin: 0;
}

.contact-text {
  font-size: 1.0625rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.0625rem;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: pointer;
  padding: 20px;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  color: #1E3A5F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.lightbox-close:hover {
  background: #FFFFFF;
  transform: rotate(90deg);
}

/* =============================================
   MOBILE RESPONSIVE - PROPERTY DETAIL
   ============================================= */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .property-hero {
    height: 50vh;
    min-height: 400px;
  }

  .hero-back-btn {
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 0.875rem;
  }

  .luxury-container {
    padding: 60px 20px;
  }

  .luxury-header {
    flex-direction: column;
    gap: 20px;
  }

  .luxury-title {
    font-size: 2rem;
  }

  .luxury-price {
    font-size: 2rem;
  }

  .luxury-location {
    font-size: 1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .luxury-facts {
    gap: 12px;
  }

  .fact-badge {
    padding: 12px 20px;
    font-size: 0.9375rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-agent {
    flex-direction: column;
    text-align: center;
  }

  .contact-agent-info {
    text-align: center;
  }

  .contact-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-large {
    width: 100%;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .property-hero {
    height: 40vh;
    min-height: 300px;
  }

  .hero-back-btn {
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    font-size: 0.8125rem;
  }

  .luxury-container {
    padding: 40px 16px;
  }

  .luxury-title {
    font-size: 1.75rem;
  }

  .luxury-price {
    font-size: 1.75rem;
  }

  .section-heading {
    font-size: 1.375rem;
  }

  .luxury-description {
    font-size: 1rem;
  }

  .fact-badge {
    padding: 10px 16px;
    font-size: 0.875rem;
  }

  .luxury-contact-card {
    padding: 32px 24px;
  }

  .contact-agent-name {
    font-size: 1.25rem;
  }
}

@media (hover: none) {
  .hero-image:hover {
    transform: none;
  }

  .fact-badge:hover,
  .feature-item:hover,
  .gallery-item:hover {
    transform: none;
    box-shadow: none;
  }

  .gallery-item:hover img {
    transform: none;
  }
}	
	
	
	

	
	
	
	
	
	
	
	
	
	