/* ============================================
   STELLAR FRAME - GRADIENT MODERN DESIGN
   Comprehensive CSS Styles
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  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;
  line-height: 1.6;
  color: #1A1A2E;
  background: linear-gradient(135deg, #F8F5F1 0%, #ffffff 100%);
  min-height: 100vh;
  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;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #1A1A2E;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

.subheadline {
  font-size: 20px;
  color: #555;
  font-weight: 300;
  line-height: 1.6;
}

.subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

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

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  .subheadline { font-size: 18px; }
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87E 100%);
  color: #ffffff;
  border-color: #C9A96E;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #B89855 0%, #C9A96E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

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

.btn-secondary:hover {
  background: #1A1A2E;
  color: #ffffff;
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.98) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #F8F5F1;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A96E 0%, #D4B87E 100%);
  transition: width 0.3s ease;
}

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

@media (max-width: 968px) {
  .main-nav {
    display: none;
  }
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87E 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.5);
}

@media (max-width: 968px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A2E 0%, #2A2A3E 100%);
  z-index: 2500;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #F8F5F1;
  border: 2px solid #F8F5F1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: #F8F5F1;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(201, 169, 110, 0.1);
  border-left-color: #C9A96E;
  padding-left: 24px;
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(42, 42, 62, 0.85) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231A1A2E" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  color: #F8F5F1;
  padding: 120px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, transparent 50%, rgba(201, 169, 110, 0.05) 100%);
  pointer-events: none;
}

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

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

.hero .subheadline {
  color: #F8F5F1;
  margin-bottom: 32px;
  font-size: 22px;
  line-height: 1.7;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .subheadline {
    font-size: 18px;
  }
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A3E 100%);
  padding: 80px 20px 60px;
  color: #F8F5F1;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #F8F5F1;
  margin-bottom: 16px;
}

.page-hero p {
  color: #F8F5F1;
  opacity: 0.9;
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #C9A96E;
}

.breadcrumb a {
  color: #C9A96E;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #D4B87E;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

.value-grid,
.property-grid,
.services-grid,
.testimonial-grid,
.promise-grid,
.principles-grid,
.opportunity-grid,
.insights-grid,
.roi-factors,
.location-grid,
.services-list,
.case-studies,
.values-grid,
.expertise-grid,
.team-stats,
.commitment-grid,
.steps-grid,
.explore-grid,
.contact-methods,
.trust-stats,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.value-item,
.property-card,
.service-card,
.testimonial-card,
.promise-item,
.principle-item,
.opportunity-card,
.insight-item,
.factor-item,
.location-card,
.case-study-card,
.value-item,
.expertise-item,
.commitment-item,
.step-item,
.explore-card,
.contact-method,
.link-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.value-item:hover,
.property-card:hover,
.service-card:hover,
.opportunity-card:hover,
.location-card:hover,
.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.2);
}

.value-item img,
.principle-item img,
.factor-item img,
.promise-item img,
.service-card img,
.contact-method img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.property-card,
.service-card {
  flex: 1 1 calc(33.333% - 16px);
}

@media (max-width: 968px) {
  .property-card,
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .value-item,
  .property-card,
  .service-card,
  .testimonial-card,
  .promise-item,
  .principle-item,
  .opportunity-card,
  .insight-item,
  .factor-item,
  .location-card,
  .case-study-card,
  .expertise-item,
  .commitment-item,
  .step-item,
  .explore-card,
  .link-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   PROPERTY CARDS
   ============================================ */

.property-image {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87E 50%, #C9A96E 100%);
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.property-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87E 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

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

.specs {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #C9A96E;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #F8F5F1 0%, #ffffff 100%);
  padding: 60px 20px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #C9A96E;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-card .author {
  color: #666;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ============================================
   FILTER BAR
   ============================================ */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-items: flex-end;
}

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

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

.filter-group select {
  padding: 12px 16px;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: #C9A96E;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.results-count {
  font-weight: 600;
  color: #666;
  margin-bottom: 24px;
  font-size: 15px;
}

/* ============================================
   FEATURED HIGHLIGHT
   ============================================ */

.highlight-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.highlight-image {
  flex: 1 1 400px;
  height: 400px;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87E 50%, #C9A96E 100%);
  border-radius: 12px;
  min-width: 300px;
}

.highlight-text {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-text .features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-text .features li {
  padding-left: 24px;
  position: relative;
}

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

@media (max-width: 768px) {
  .highlight-content {
    flex-direction: column;
  }
  
  .highlight-image {
    width: 100%;
    height: 300px;
  }
}

/* ============================================
   SERVICE DETAILS
   ============================================ */

.service-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.service-header img {
  width: 60px;
  height: 60px;
}

.service-header > div {
  flex: 1;
}

.service-item h3 {
  margin-top: 24px;
  color: #1A1A2E;
}

.service-item ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item li {
  padding-left: 24px;
  position: relative;
  color: #333;
}

.service-item li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C9A96E;
  font-size: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-info,
.contact-form-section {
  flex: 1 1 400px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #F8F5F1 0%, #ffffff 100%);
  border-radius: 8px;
}

.contact-highlights {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05) 0%, rgba(201, 169, 110, 0.1) 100%);
  border-radius: 8px;
  border-left: 4px solid #C9A96E;
}

.contact-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-highlights li {
  padding-left: 24px;
  position: relative;
  color: #1A1A2E;
  font-weight: 500;
}

.contact-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A96E;
  font-weight: 700;
}

.form-notice {
  padding: 24px;
  background: linear-gradient(135deg, #F8F5F1 0%, #ffffff 100%);
  border-radius: 8px;
  border-left: 4px solid #C9A96E;
  margin-top: 24px;
}

.form-notice a {
  color: #C9A96E;
  font-weight: 600;
  text-decoration: underline;
}

.form-notice a:hover {
  color: #B89855;
}

/* ============================================
   OFFICE INFORMATION
   ============================================ */

.office-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.office-details,
.office-directions {
  flex: 1 1 400px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.languages {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.languages span {
  padding: 8px 20px;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87E 100%);
  color: #ffffff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #F8F5F1 0%, #ffffff 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87E 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87E 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.stat,
.stat-item {
  text-align: center;
  flex: 1 1 150px;
  padding: 24px;
}

.stat h3 {
  font-size: 48px;
  color: #C9A96E;
  margin-bottom: 8px;
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  padding: 40px 20px;
}

.legal-content {
  background: #ffffff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1A1A2E;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #333;
}

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

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

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

.last-updated {
  color: #666;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 32px 24px;
  }
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner,
.search-assistant,
.investment-teaser,
.consultation-cta,
.contact-cta,
.service-promise,
.investment-philosophy,
.company-story,
.values,
.service-promise,
.philosophy,
.response-commitment,
.international-contact,
.what-to-expect,
.explore-more,
.alternative-contact,
.social-proof,
.quick-links {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(42, 42, 62, 0.9) 100%);
  padding: 60px 20px;
  text-align: center;
  color: #F8F5F1;
  margin-bottom: 60px;
  border-radius: 12px;
}

.cta-banner h2,
.search-assistant h2,
.investment-teaser h2,
.consultation-cta h2,
.contact-cta h2 {
  color: #F8F5F1;
  margin-bottom: 16px;
}

.cta-banner p,
.search-assistant p,
.investment-teaser p,
.consultation-cta p,
.contact-cta p {
  color: #F8F5F1;
  margin-bottom: 24px;
  opacity: 0.95;
}

.contact-info {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(248, 245, 241, 0.2);
}

.consultation-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto;
  text-align: left;
}

.consultation-benefits li {
  padding-left: 32px;
  position: relative;
  color: #F8F5F1;
}

.consultation-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A96E;
  font-weight: 700;
  font-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #0A0A1E 100%);
  color: #F8F5F1;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-brand,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.tagline {
  font-style: italic;
  color: #C9A96E;
  font-size: 14px;
  line-height: 1.6;
}

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

footer a {
  color: #F8F5F1;
  font-size: 14px;
  opacity: 0.9;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

footer a:hover {
  color: #C9A96E;
  opacity: 1;
  padding-left: 8px;
}

footer p {
  color: #F8F5F1;
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(248, 245, 241, 0.1);
}

.footer-bottom p {
  color: #F8F5F1;
  opacity: 0.6;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #2A2A3E 100%);
  color: #F8F5F1;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-accept {
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87E 100%);
  color: #ffffff;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #B89855 0%, #C9A96E 100%);
  transform: translateY(-2px);
}

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

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

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

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

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.cookie-modal-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #1A1A2E;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  background: #F8F5F1;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-category h3 {
  margin-bottom: 8px;
  color: #1A1A2E;
  font-size: 18px;
}

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

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

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

.toggle-switch.active {
  background: #C9A96E;
}

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

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

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

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-save {
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87E 100%);
  color: #ffffff;
}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.highlight {
  color: #C9A96E;
  font-weight: 600;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  .container {
    max-width: 100%;
  }
}