/* ============================================
   Casa Dolce Casa - Tech Futuristic Design
   Complete CSS Styles - All Pages
   ============================================ */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1420 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Futura', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #00F0FF;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

h1 {
  font-size: 48px;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
}

h4 {
  font-size: 18px;
  line-height: 1.5;
  color: #7B68EE;
}

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

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

a:hover {
  color: #7B68EE;
  text-shadow: 0 0 8px rgba(123, 104, 238, 0.6);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header & Navigation */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #00F0FF;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 15px rgba(123, 104, 238, 0.7));
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu li a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  color: #00F0FF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu li a:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00F0FF, #7B68EE);
  border: none;
  border-radius: 8px;
  color: #0a0e27;
  font-size: 24px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(123, 104, 238, 0.6);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  border-left: 2px solid #00F0FF;
  box-shadow: -5px 0 30px rgba(0, 240, 255, 0.3);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  padding: 80px 20px 20px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 0, 100, 0.8);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 0, 100, 1);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  background: rgba(0, 240, 255, 0.05);
  border-left: 3px solid #00F0FF;
  border-radius: 4px;
  color: #00F0FF;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(0, 240, 255, 0.15);
  border-left-color: #7B68EE;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(123, 104, 238, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #00F0FF;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3); }
  to { text-shadow: 0 0 20px rgba(123, 104, 238, 0.7), 0 0 30px rgba(123, 104, 238, 0.5); }
}

.hero-subtitle {
  font-size: 20px;
  color: #B8C5D6;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicators {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-size: 14px;
  color: #00F0FF;
  padding: 8px 16px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid #00F0FF;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #00F0FF, #7B68EE);
  color: #0a0e27;
  border-color: #00F0FF;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.6);
  background: linear-gradient(135deg, #7B68EE, #00F0FF);
}

.btn-secondary {
  background: transparent;
  color: #00F0FF;
  border: 2px solid #00F0FF;
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: #7B68EE;
  color: #7B68EE;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 104, 238, 0.4);
}

.btn-link {
  color: #00F0FF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #7B68EE;
  transform: translateX(5px);
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* Sections */
.section, section {
  padding: 60px 20px;
  margin-bottom: 0;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #B8C5D6;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid */
.services-overview {
  background: rgba(26, 31, 58, 0.5);
  border-top: 2px solid #00F0FF;
  border-bottom: 2px solid #00F0FF;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(123, 104, 238, 0.05));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00F0FF, #7B68EE);
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 0.2;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 240, 255, 0.3);
  border-color: #7B68EE;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #00F0FF;
}

.service-card p {
  margin-bottom: 20px;
  color: #B8C5D6;
}

.service-card .price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #7B68EE;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(123, 104, 238, 0.5);
}

/* Why Us Section */
.why-us {
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.05), rgba(0, 240, 255, 0.05));
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-item, .value-card {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
}

.value-item:hover, .value-card:hover {
  background: rgba(123, 104, 238, 0.1);
  border-color: #7B68EE;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.3);
}

/* Testimonials */
.testimonials {
  background: rgba(10, 14, 39, 0.8);
  border-top: 2px solid #7B68EE;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-left: 4px solid #7B68EE;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(123, 104, 238, 0.4);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1f3a;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-author strong {
  font-size: 16px;
  color: #0a0e27;
  font-weight: 700;
}

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

.testimonial-author .rating {
  color: #FFD700;
  font-size: 16px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(123, 104, 238, 0.15));
  text-align: center;
  padding: 80px 20px;
  border-top: 2px solid #00F0FF;
  border-bottom: 2px solid #7B68EE;
}

.cta-banner h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
}

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

.trust-badge {
  font-size: 14px;
  color: #00F0FF;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 104, 238, 0.1));
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 2px solid #00F0FF;
}

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

.breadcrumb a {
  color: #00F0FF;
}

.breadcrumb span {
  color: #7B68EE;
}

.property-count, .last-updated {
  font-size: 14px;
  color: #7B68EE;
  margin-top: 16px;
  font-weight: 600;
}

/* Categories & Cards */
.property-categories, .rental-types {
  padding: 60px 20px;
}

.categories-grid, .rental-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card, .rental-type-card {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(123, 104, 238, 0.05));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover, .rental-type-card:hover {
  transform: translateY(-8px);
  border-color: #7B68EE;
  box-shadow: 0 12px 40px rgba(123, 104, 238, 0.3);
}

.category-card h3, .rental-type-card h3 {
  margin-bottom: 12px;
}

.category-card p, .rental-type-card p {
  margin-bottom: 20px;
}

.availability {
  display: block;
  font-size: 14px;
  color: #7B68EE;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Regions Showcase */
.regions-showcase, .rental-by-region {
  background: rgba(26, 31, 58, 0.5);
}

.regions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.region-card {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.region-card:hover {
  background: rgba(123, 104, 238, 0.1);
  border-color: #7B68EE;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.3);
}

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

.region-card p {
  margin-bottom: 16px;
  color: #B8C5D6;
}

.price-from {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #00F0FF;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* Investment Sections */
.investment-benefits, .longterm-rentals {
  padding: 60px 20px;
}

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

.benefit-card, .benefit-item {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover, .benefit-item:hover {
  background: rgba(123, 104, 238, 0.1);
  border-color: #7B68EE;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.3);
}

/* Investment Types */
.investment-types {
  background: rgba(26, 31, 58, 0.5);
}

.investment-type-card {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(123, 104, 238, 0.05));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.investment-type-card:hover {
  border-color: #7B68EE;
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.3);
}

.investment-type-card h3 {
  margin-bottom: 16px;
}

.investment-type-card p {
  margin-bottom: 20px;
}

.roi {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #00F0FF, #7B68EE);
  color: #0a0e27;
  font-weight: 700;
  border-radius: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

/* Markets Grid */
.investment-markets {
  padding: 60px 20px;
}

.markets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.market-card {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.market-card:hover {
  background: rgba(123, 104, 238, 0.1);
  border-color: #7B68EE;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.3);
}

/* Services Detail */
.services-detail {
  padding: 60px 20px;
}

.service-detail-card {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(123, 104, 238, 0.05));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  border-color: #7B68EE;
  box-shadow: 0 12px 40px rgba(123, 104, 238, 0.3);
}

.service-tagline {
  font-size: 18px;
  color: #7B68EE;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-benefits {
  margin: 24px 0;
  padding: 24px;
  background: rgba(0, 240, 255, 0.05);
  border-left: 3px solid #00F0FF;
  border-radius: 8px;
}

.service-benefits strong {
  display: block;
  font-size: 16px;
  color: #00F0FF;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-benefits ul {
  list-style: none;
  padding-left: 0;
}

.service-benefits li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #B8C5D6;
}

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

/* Timeline */
.about-story {
  padding: 60px 20px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
  padding-left: 40px;
  border-left: 3px solid #00F0FF;
}

.timeline-item {
  position: relative;
  padding-left: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -43px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #00F0FF;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
}

.timeline-item strong {
  display: block;
  font-size: 24px;
  color: #7B68EE;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(123, 104, 238, 0.5);
}

.timeline-item p {
  color: #B8C5D6;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.stat-item {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 104, 238, 0.1));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: #7B68EE;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.4);
}

.stat-item strong {
  display: block;
  font-size: 48px;
  color: #00F0FF;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.7);
}

.stat-item span {
  font-size: 14px;
  color: #B8C5D6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team Section */
.team-section {
  background: rgba(26, 31, 58, 0.5);
}

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

.team-role {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
  transition: all 0.3s ease;
}

.team-role:hover {
  background: rgba(123, 104, 238, 0.1);
  border-color: #7B68EE;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.3);
}

/* Contact Sections */
.contact-options {
  padding: 60px 20px;
}

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

.contact-method {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(123, 104, 238, 0.05));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #7B68EE;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 104, 238, 0.3);
}

.contact-method h3 {
  margin-bottom: 16px;
}

.contact-method a {
  font-size: 18px;
  font-weight: 700;
  color: #00F0FF;
}

.response-time {
  text-align: center;
  font-size: 14px;
  color: #7B68EE;
  font-weight: 600;
  margin-top: 32px;
}

/* Office Info */
.office-info {
  background: rgba(26, 31, 58, 0.5);
}

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

.office-address, .office-hours, .office-access {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 380px;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-intro {
  background: rgba(0, 240, 255, 0.05);
  border-left: 4px solid #00F0FF;
  padding: 24px;
  margin-bottom: 40px;
  border-radius: 8px;
}

.legal-section {
  margin-bottom: 40px;
  padding: 32px;
  background: rgba(123, 104, 238, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(123, 104, 238, 0.2);
}

.legal-section h2 {
  text-align: left;
  margin-bottom: 16px;
  color: #00F0FF;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
}

.legal-section li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #B8C5D6;
}

.legal-section li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00F0FF;
}

.cert-list {
  list-style: none;
  padding-left: 0;
}

.cert-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #B8C5D6;
  font-size: 16px;
}

.cert-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00F0FF;
  font-size: 20px;
  font-weight: 700;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(123, 104, 238, 0.15));
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00F0FF, #7B68EE);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #0a0e27;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.5);
  animation: scaleIn 0.5s ease-out;
}

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

.thank-you-message {
  font-size: 20px;
  color: #B8C5D6;
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-details {
  padding: 60px 20px;
}

.confirmation-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(123, 104, 238, 0.05));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 16px;
  padding: 40px;
}

.next-steps {
  list-style: none;
  padding-left: 0;
  counter-reset: step-counter;
}

.next-steps li {
  padding: 16px 0 16px 48px;
  position: relative;
  color: #B8C5D6;
  font-size: 16px;
  counter-increment: step-counter;
}

.next-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #00F0FF, #7B68EE);
  color: #0a0e27;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

/* Footer */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid #00F0FF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.footer-section h4 {
  margin-bottom: 16px;
  color: #00F0FF;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 14px;
  color: #B8C5D6;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  font-size: 14px;
  color: #B8C5D6;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #00F0FF;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 240, 255, 0.2);
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
  backdrop-filter: blur(10px);
  border-top: 2px solid #00F0FF;
  padding: 24px 20px;
  z-index: 9999;
  box-shadow: 0 -8px 30px rgba(0, 240, 255, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-banner-text p {
  font-size: 14px;
  color: #B8C5D6;
  margin-bottom: 0;
}

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

.cookie-banner button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.cookie-accept {
  background: linear-gradient(135deg, #00F0FF, #7B68EE);
  color: #0a0e27;
  border-color: #00F0FF;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
}

.cookie-reject {
  background: transparent;
  color: #B8C5D6;
  border-color: rgba(184, 197, 214, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #B8C5D6;
}

.cookie-settings {
  background: transparent;
  color: #00F0FF;
  border-color: #00F0FF;
}

.cookie-settings:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: #7B68EE;
  color: #7B68EE;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #1a1f3a, #0f1420);
  border: 2px solid #00F0FF;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.4);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 0, 100, 0.8);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(255, 0, 100, 1);
  transform: rotate(90deg);
}

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

.cookie-category {
  padding: 20px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 0;
}

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(184, 197, 214, 0.3);
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #B8C5D6;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, #00F0FF, #7B68EE);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
  background: #0a0e27;
}

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

.cookie-category p {
  font-size: 14px;
  color: #B8C5D6;
  margin-top: 8px;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Price Ranges & Lists */
.price-ranges, .buying-guide, .tenant-guide {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.5);
}

.price-range-list, .guide-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.price-range-item, .guide-item {
  background: rgba(0, 240, 255, 0.05);
  border-left: 4px solid #00F0FF;
  padding: 24px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.price-range-item:hover, .guide-item:hover {
  background: rgba(123, 104, 238, 0.1);
  border-left-color: #7B68EE;
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(123, 104, 238, 0.3);
}

.price-range-item h3, .guide-item h3 {
  margin-bottom: 8px;
  color: #00F0FF;
}

.guide-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.guide-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 500px;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .nav-menu { display: none; }
  .mobile-menu-toggle { display: block; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .service-card,
  .value-item,
  .category-card,
  .region-card,
  .benefit-card,
  .market-card,
  .team-role,
  .contact-method,
  .stat-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .section, section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero h1 { font-size: 28px; }
  .cta-banner h2 { font-size: 28px; }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

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

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

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer { display: none; }
  
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}