/* ===================================
   DECON IMMOBILIARE - INDUSTRIAL MODERN
   Complete CSS Styles
   =================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background: #1a1a1a;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* === INDUSTRIAL MODERN TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #f5f5f5;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: #b0b0b0;
}

strong {
  font-weight: 700;
  color: #D4AF37;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* === HEADER === */
header {
  background: #0d0d0d;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #D4AF37;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

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

.main-nav a:hover {
  color: #D4AF37;
}

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

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: #2C5F7B;
  color: #fff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: 2px solid #D4AF37;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #D4AF37;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #0d0d0d;
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.6);
  border-left: 2px solid #D4AF37;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #D4AF37;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D4AF37;
  color: #0d0d0d;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #e0e0e0;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #D4AF37;
  padding-left: 12px;
}

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

.btn-primary {
  background: #D4AF37;
  color: #0d0d0d;
  border-color: #D4AF37;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
  background: #e0e0e0;
  color: #0d0d0d;
  transform: translateY(-2px);
}

.btn-link {
  color: #D4AF37;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  padding: 4px 0;
}

.btn-link::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.btn-link:hover::after {
  margin-left: 12px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #D4AF37;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 175, 55, 0.03) 10px,
    rgba(212, 175, 55, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #f5f5f5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.trust-indicators span {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px solid #D4AF37;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.1);
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid #D4AF37;
}

.breadcrumb {
  font-size: 14px;
  color: #808080;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #D4AF37;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
}

/* === SECTIONS === */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
  color: #f5f5f5;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #D4AF37;
}

/* === CARD LAYOUTS === */
.value-grid,
.services-grid,
.stats-grid,
.content-grid,
.benefits-grid,
.options-grid,
.info-grid,
.areas-grid,
.types-grid,
.actions-grid,
.credentials-grid,
.rights-grid,
.posts-grid,
.properties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.value-card,
.service-card,
.stat-item,
.content-card,
.benefit-card,
.option-card,
.info-card,
.area-card,
.type-card,
.action-card,
.credential-card,
.right-card,
.post-card,
.property-card {
  background: #1a1a1a;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  border: 2px solid #2a2a2a;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover,
.service-card:hover,
.content-card:hover,
.benefit-card:hover,
.option-card:hover,
.info-card:hover,
.area-card:hover,
.type-card:hover,
.action-card:hover,
.credential-card:hover,
.right-card:hover,
.post-card:hover,
.property-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.value-card img,
.option-card img,
.credential-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(74%) sepia(48%) saturate(535%) hue-rotate(3deg) brightness(93%) contrast(91%);
}

.value-card h3,
.service-card h3,
.content-card h2,
.benefit-card h3,
.option-card h3,
.info-card h3,
.area-card h3,
.type-card h3,
.action-card h3,
.credential-card h3,
.right-card h3,
.post-card h3,
.property-card h3 {
  color: #f5f5f5;
  margin-bottom: 16px;
  font-size: 22px;
}

.value-card p,
.service-card p,
.content-card p,
.benefit-card p,
.option-card p,
.info-card p,
.area-card p,
.type-card p,
.action-card p,
.credential-card p,
.right-card p,
.post-card p,
.property-card p {
  color: #b0b0b0;
  line-height: 1.7;
}

/* === SERVICE CARDS === */
.service-card .price,
.type-card .roi,
.type-card .investment,
.type-card .risk,
.area-card .avg-price {
  display: block;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
  margin: 16px 0;
}

.type-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

/* === STATS SECTION === */
.stats {
  background: #0d0d0d;
  padding: 60px 20px;
  border-top: 2px solid #D4AF37;
  border-bottom: 2px solid #D4AF37;
}

.stat-item {
  text-align: center;
  padding: 24px;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #1a1a1a;
  padding: 60px 20px;
}

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

.testimonial-card {
  background: #f5f5f5;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 400px;
  max-width: 550px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

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

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-info strong {
  color: #2C5F7B;
  font-size: 16px;
}

.client-info span {
  color: #666;
  font-size: 14px;
}

.rating {
  color: #D4AF37;
  font-size: 18px;
  margin-top: 8px;
}

/* === CTA SECTIONS === */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C5F7B 0%, #1a4d5f 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #D4AF37;
  border-bottom: 3px solid #D4AF37;
  margin: 60px 0;
}

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

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

/* === TIMELINE === */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  padding-left: 32px;
  border-left: 3px solid #D4AF37;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 0;
  width: 12px;
  height: 12px;
  background: #D4AF37;
  border-radius: 50%;
  border: 3px solid #1a1a1a;
}

.timeline-item strong {
  display: block;
  font-size: 24px;
  color: #D4AF37;
  margin-bottom: 8px;
}

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

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

.step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  margin-bottom: 20px;
}

.step strong {
  display: block;
  font-size: 20px;
  color: #D4AF37;
  margin-bottom: 12px;
}

.step p {
  color: #b0b0b0;
  font-size: 14px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #D4AF37;
  color: #0d0d0d;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 16px;
}

/* === FILTERS === */
.search-filters,
.blog-filters {
  background: #1a1a1a;
  padding: 40px 20px;
  margin-bottom: 40px;
}

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

.filter-group {
  flex: 1 1 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  color: #b0b0b0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select {
  padding: 12px;
  background: #0d0d0d;
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  color: #e0e0e0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: #D4AF37;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.category {
  padding: 10px 20px;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  color: #b0b0b0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.category:hover,
.category.active {
  background: #D4AF37;
  color: #0d0d0d;
  border-color: #D4AF37;
}

/* === PROPERTIES === */
.property-card {
  flex: 1 1 320px;
  max-width: 380px;
}

.property-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #D4AF37;
  color: #0d0d0d;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location {
  color: #808080;
  font-size: 14px;
  margin-bottom: 8px;
}

.property-card .price {
  color: #D4AF37;
  font-size: 24px;
  font-weight: 700;
  margin: 12px 0;
}

.property-specs {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.property-specs span {
  color: #808080;
  font-size: 14px;
  padding: 4px 8px;
  background: rgba(128, 128, 128, 0.1);
  border-radius: 4px;
}

/* === BLOG === */
.post-featured {
  background: #1a1a1a;
  padding: 48px;
  border-radius: 4px;
  border: 2px solid #D4AF37;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.category-badge {
  display: inline-block;
  background: #D4AF37;
  color: #0d0d0d;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.excerpt {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.8;
  margin: 20px 0;
}

.post-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
  font-size: 14px;
  color: #808080;
}

.post-meta .author {
  color: #D4AF37;
  font-weight: 600;
}

/* === NEWSLETTER === */
.newsletter-signup {
  background: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #D4AF37;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 24px auto;
}

.newsletter-form input {
  flex: 1 1 250px;
  padding: 14px 20px;
  background: #0d0d0d;
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  color: #e0e0e0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #D4AF37;
}

.newsletter-form input::placeholder {
  color: #666;
}

.subscribers {
  font-size: 14px;
  color: #808080;
  margin-top: 12px;
}

/* === CONTACT === */
.contact-info,
.office-hours,
.benefits-note,
.response-time {
  font-size: 14px;
  color: #b0b0b0;
  margin-top: 16px;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #1a1a1a;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #D4AF37;
}

.faq-item h3 {
  color: #f5f5f5;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #b0b0b0;
  margin-bottom: 0;
}

/* === LEGAL CONTENT === */
.legal-content {
  background: #1a1a1a;
  padding: 40px 20px;
}

.legal-content h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #f5f5f5;
}

.legal-content h2::after {
  display: none;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #D4AF37;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0;
  padding-left: 24px;
  color: #b0b0b0;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #D4AF37;
  color: #0d0d0d;
  font-size: 48px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}

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

.subtitle {
  font-size: 24px;
  color: #D4AF37;
  margin-bottom: 16px;
}

.confirmation {
  font-size: 16px;
  color: #b0b0b0;
  margin-bottom: 32px;
}

/* === FOOTER === */
footer {
  background: #0d0d0d;
  padding: 60px 20px 20px;
  border-top: 3px solid #D4AF37;
}

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

.footer-column {
  flex: 1 1 250px;
  max-width: 350px;
}

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

.footer-column h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  color: #808080;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #2a2a2a;
  text-align: center;
}

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

/* === COOKIE CONSENT BANNER === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d0d0d;
  padding: 24px;
  z-index: 999;
  border-top: 2px solid #D4AF37;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-content p {
  color: #b0b0b0;
  font-size: 14px;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: #D4AF37;
  color: #0d0d0d;
  border: 2px solid #D4AF37;
}

.cookie-accept:hover {
  background: transparent;
  color: #D4AF37;
}

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

.cookie-reject:hover {
  background: #808080;
  color: #0d0d0d;
}

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

.cookie-settings:hover {
  background: #D4AF37;
  color: #0d0d0d;
}

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

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

.cookie-modal-content {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  border: 2px solid #D4AF37;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #f5f5f5;
  font-size: 28px;
  margin-bottom: 24px;
  text-align: left;
}

.cookie-modal h2::after {
  display: none;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #0d0d0d;
  border-radius: 4px;
  border-left: 3px solid #D4AF37;
}

.cookie-category h3 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #b0b0b0;
  font-size: 14px;
  margin: 0;
}

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

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

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

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

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

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Mobile menu visible */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Sections */
  section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .page-hero {
    padding: 40px 16px;
  }
  
  /* Cards */
  .value-card,
  .service-card,
  .content-card,
  .benefit-card,
  .option-card,
  .info-card,
  .area-card,
  .type-card,
  .action-card,
  .credential-card,
  .right-card,
  .post-card,
  .property-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 24px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Stats */
  .stat-number {
    font-size: 36px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    flex: 1 1 100%;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 24px;
  }
  
  .timeline-item {
    padding-left: 24px;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    max-width: 100%;
  }
  
  /* Featured post */
  .post-featured {
    padding: 32px 24px;
  }
  
  /* Filters */
  .filters-grid {
    flex-direction: column;
  }
  
  .filter-group {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .page-hero h1 {
    font-size: 24px;
  }
  
  section h2 {
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .mobile-menu {
    width: 100%;
  }
}

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

.value-card,
.service-card,
.stat-item,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

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

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

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

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

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

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

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

/* === ACCESSIBILITY === */
:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 4px;
}

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

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}