/* ===================================
   QUICK ACADEMY IMMOBILIEN - CSS
   Modern Bold Design Style
   =================================== */

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

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

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

/* MODERN BOLD TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1A1A2E;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 48px;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  font-weight: 800;
}

h4 {
  font-size: 24px;
  font-weight: 700;
}

p {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.7;
  font-weight: 400;
}

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

a:hover {
  color: #1A1A2E;
  transform: translateX(4px);
}

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

li {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
}

strong {
  font-weight: 700;
  color: #1A1A2E;
}

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

/* HEADER - BOLD MODERN */
header {
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4E 100%);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #F8F6F1;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

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

.main-nav a:hover {
  color: #C9A961;
  transform: translateX(0);
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background: #C9A961;
  border: none;
  color: #1A1A2E;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
  transition: all 0.3s ease;
  font-weight: 900;
}

.mobile-menu-toggle:hover {
  background: #1A1A2E;
  color: #C9A961;
  transform: scale(1.1);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4E 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 32px 32px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 3px solid #C9A961;
  color: #C9A961;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 900;
}

.mobile-menu-close:hover {
  background: #C9A961;
  color: #1A1A2E;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #F8F6F1;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px;
  border-left: 6px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C9A961;
  border-left-color: #C9A961;
  background: rgba(201, 169, 97, 0.1);
  transform: translateX(8px);
}

/* HERO SECTION - BOLD & GEOMETRIC */
.hero {
  background: linear-gradient(135deg, #C9A961 0%, #E8D7A5 50%, #C9A961 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(26, 26, 46, 0.1);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(26, 26, 46, 0.08);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: #1A1A2E;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subheadline {
  font-size: 24px;
  color: #1A1A2E;
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badge {
  background: #1A1A2E;
  color: #C9A961;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.3);
}

/* BUTTONS - BOLD GEOMETRIC */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #1A1A2E;
  color: #C9A961;
  border-color: #1A1A2E;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.3);
}

.btn-primary:hover {
  background: #C9A961;
  color: #1A1A2E;
  border-color: #C9A961;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.4);
}

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

.btn-secondary:hover {
  background: #1A1A2E;
  color: #C9A961;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.3);
}

/* SECTIONS - BOLD SPACING */
.section {
  margin-bottom: 80px;
  padding: 60px 20px;
}

.section-subtitle {
  font-size: 20px;
  color: #1A1A2E;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.value-proposition,
.services-overview,
.featured-properties,
.testimonials,
.stats,
.process,
.property-categories,
.property-listings,
.featured-locations,
.investment-benefits,
.service-detailed,
.process-detailed,
.expertise,
.value-proposition,
.investment-approach,
.investment-types,
.case-studies,
.pricing,
.company-story,
.philosophy,
.achievements,
.expertise-areas,
.market-presence,
.certifications,
.client-promise,
.timeline,
.contact-information,
.contact-options,
.office-location,
.faq-contact,
.privacy-notice,
.legal-content,
.thank-you-hero,
.next-steps,
.what-to-expect,
.meanwhile,
.social-proof,
.urgent-contact {
  margin-bottom: 80px;
  padding: 60px 20px;
}

.value-proposition h2,
.services-overview h2,
.featured-properties h2,
.testimonials h2,
.stats h2,
.process h2 {
  text-align: center;
  margin-bottom: 56px;
}

/* FLEXBOX GRIDS - BOLD GEOMETRIC LAYOUTS */
.value-grid,
.property-grid,
.services-grid,
.testimonials-grid,
.stats-grid,
.process-grid,
.categories-grid,
.listings-grid,
.locations-grid,
.benefits-grid,
.approach-grid,
.types-grid,
.pricing-grid,
.philosophy-grid,
.achievements-grid,
.expertise-grid,
.market-grid,
.promise-grid,
.contact-grid,
.options-grid,
.expectations-grid,
.proof-grid,
.trust-badges,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* CARDS - BOLD GEOMETRIC DESIGN */
.value-item,
.property-card,
.service-card,
.testimonial-card,
.stat-item,
.process-step,
.category-card,
.listing-card,
.location-item,
.benefit-item,
.approach-item,
.type-item,
.pricing-item,
.philosophy-item,
.achievement-item,
.expertise-item,
.market-item,
.promise-item,
.contact-item,
.option-item,
.expectation-item,
.proof-item,
.badge-item,
.step-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 4px solid transparent;
  position: relative;
  margin-bottom: 24px;
}

.value-item::before,
.property-card::before,
.service-card::before,
.category-card::before,
.listing-card::before,
.location-item::before,
.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #C9A961 0%, #E8D7A5 100%);
  border-radius: 12px 12px 0 0;
}

.value-item:hover,
.property-card:hover,
.service-card:hover,
.category-card:hover,
.listing-card:hover,
.location-item:hover,
.benefit-item:hover,
.approach-item:hover,
.type-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(201, 169, 97, 0.3);
  border-color: #C9A961;
}

.stat-item {
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4E 100%);
  color: #C9A961;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
}

.stat-item h3 {
  font-size: 56px;
  color: #C9A961;
  margin-bottom: 16px;
  font-weight: 900;
}

.stat-item p {
  color: #F8F6F1;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

/* TESTIMONIALS - BOLD CONTRAST */
.testimonial-card {
  background: linear-gradient(135deg, #F8F6F1 0%, #FFFFFF 100%);
  border-left: 8px solid #C9A961;
  padding: 40px;
  font-style: italic;
}

.testimonial-card p {
  color: #1A1A2E;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 500;
}

.testimonial-author {
  font-style: normal;
  font-weight: 800;
  color: #1A1A2E;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* PROPERTY/SERVICE CARDS */
.property-price,
.service-price,
.listing-price {
  font-size: 32px;
  font-weight: 900;
  color: #C9A961;
  margin: 24px 0;
  font-family: 'Playfair Display', serif;
}

.property-details,
.property-location,
.property-size,
.property-features,
.listing-location,
.listing-size,
.listing-features {
  color: #1A1A2E;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* CTA SECTIONS - BOLD IMPACT */
.cta-banner,
.contact-cta,
.consultation-cta,
.cta-center {
  background: linear-gradient(135deg, #C9A961 0%, #E8D7A5 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(26, 26, 46, 0.1);
  border-radius: 50%;
}

.cta-content h2 {
  color: #1A1A2E;
  margin-bottom: 24px;
}

.cta-content p {
  color: #1A1A2E;
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
}

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

/* PAGE HERO - BOLD TYPOGRAPHY */
.page-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4E 100%);
  padding: 80px 0 60px;
  color: #F8F6F1;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #C9A961;
  margin-bottom: 24px;
}

.page-hero p {
  color: #F8F6F1;
  font-size: 20px;
  font-weight: 600;
}

.breadcrumb {
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: #C9A961;
}

/* SERVICE FEATURES LIST */
.service-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-features li {
  padding: 12px 0 12px 40px;
  position: relative;
  font-weight: 600;
  font-size: 18px;
}

.service-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

/* CASE STUDY */
.case-study-item {
  background: linear-gradient(135deg, #F8F6F1 0%, #FFFFFF 100%);
  padding: 32px;
  border-left: 8px solid #C9A961;
  margin-bottom: 24px;
  border-radius: 8px;
}

.case-study-item h3 {
  color: #1A1A2E;
  margin-bottom: 16px;
}

.case-study-item p {
  color: #1A1A2E;
  font-weight: 600;
  font-size: 18px;
}

/* TIMELINE */
.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 40px;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #C9A961 0%, #E8D7A5 100%);
}

.timeline-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 16px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -52px;
  top: 24px;
  width: 20px;
  height: 20px;
  background: #C9A961;
  border-radius: 50%;
  border: 6px solid #1A1A2E;
}

.timeline-item h3 {
  color: #1A1A2E;
  font-size: 20px;
  font-weight: 800;
}

/* CERTIFICATIONS LIST */
.certifications-list {
  list-style: none;
  padding: 0;
}

.certifications-list li {
  padding: 16px 0 16px 48px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #F8F6F1;
}

.certifications-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-size: 32px;
  font-weight: 900;
}

/* FAQ */
.faq-item {
  background: #FFFFFF;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  border-left: 6px solid #C9A961;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #1A1A2E;
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 800;
}

.faq-item p {
  color: #1A1A2E;
  font-size: 18px;
  line-height: 1.7;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #C9A961 0%, #E8D7A5 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.success-icon {
  width: 120px;
  height: 120px;
  background: #1A1A2E;
  color: #C9A961;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.3);
}

.confirmation-message {
  background: #1A1A2E;
  color: #C9A961;
  padding: 16px 32px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 700;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #C9A961;
  background: #1A1A2E;
  padding: 16px 32px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 24px;
  text-transform: uppercase;
}

/* MEANWHILE LINKS */
.meanwhile-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.link-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 4px solid #C9A961;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #1A1A2E;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.link-item:hover {
  background: #C9A961;
  color: #1A1A2E;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}

/* OFFICE FEATURES */
.office-features ul {
  list-style: none;
  padding: 0;
}

.office-features li {
  padding: 12px 0 12px 40px;
  position: relative;
  font-weight: 600;
  font-size: 18px;
}

.office-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-size: 28px;
  font-weight: 900;
}

/* FOOTER - BOLD MODERN */
footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4E 100%);
  color: #F8F6F1;
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

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

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

.footer-section h4 {
  color: #C9A961;
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-section p {
  color: #F8F6F1;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #F8F6F1;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: -24px;
  color: #C9A961;
  font-weight: 900;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #C9A961;
  padding-left: 24px;
}

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

.footer-bottom {
  border-top: 2px solid rgba(201, 169, 97, 0.3);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #F8F6F1;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* COOKIE CONSENT BANNER - BOLD DESIGN */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A4E 100%);
  padding: 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text a {
  color: #C9A961;
  text-decoration: underline;
  font-weight: 700;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 3px solid #C9A961;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn-accept {
  background: #C9A961;
  color: #1A1A2E;
}

.cookie-btn-accept:hover {
  background: #E8D7A5;
  transform: translateY(-2px);
}

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

.cookie-btn-reject:hover {
  background: rgba(248, 246, 241, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #C9A961;
  border-color: #C9A961;
}

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

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

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 700px;
  width: 100%;
  padding: 48px;
  border-radius: 12px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
}

.cookie-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #1A1A2E;
  font-weight: 900;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #F8F6F1;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 32px;
  padding: 24px;
  background: #F8F6F1;
  border-radius: 8px;
  border-left: 6px solid #C9A961;
}

.cookie-category h3 {
  color: #1A1A2E;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
}

.cookie-category p {
  color: #1A1A2E;
  margin-bottom: 16px;
  font-weight: 600;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle label {
  font-weight: 700;
  color: #1A1A2E;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  p { font-size: 16px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .value-item,
  .property-card,
  .service-card,
  .testimonial-card,
  .stat-item,
  .process-step,
  .category-card,
  .listing-card,
  .location-item,
  .benefit-item,
  .approach-item,
  .type-item,
  .pricing-item {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .property-card,
  .service-card,
  .category-card,
  .listing-card,
  .location-item,
  .benefit-item,
  .approach-item,
  .type-item {
    flex: 1 1 calc(50% - 32px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 32px);
  }
}

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

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

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

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

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

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

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

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #C9A961;
  outline-offset: 2px;
}

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