/* ===================================
   WIENER MODERNE - TECH FUTURISTIC CSS
   Design Style: Futuristic Tech-Inspired
   =================================== */

/* 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', sans-serif;
  line-height: 1.6;
  color: #E8DCC4;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0f1419 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #C9A961;
  text-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
}

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

li {
  margin-bottom: 8px;
  color: #E8DCC4;
}

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

/* HEADER */
header {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(201, 169, 97, 0.3);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

header img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.5));
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #E8DCC4;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A961, #00ffff);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover::before {
  width: 80%;
}

.main-nav a:hover {
  color: #00ffff;
  border-color: rgba(0, 255, 255, 0.3);
  background: rgba(0, 255, 255, 0.05);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C9A961, #2C5F2D);
  border: 2px solid #00ffff;
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 255, 255, 0.6);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0e1a 0%, #1a1f35 100%);
  border-left: 2px solid rgba(201, 169, 97, 0.5);
  box-shadow: -4px 0 30px rgba(0, 255, 255, 0.2);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #E8DCC4;
  font-size: 18px;
  font-weight: 600;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  text-align: center;
  background: rgba(201, 169, 97, 0.05);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00ffff;
  color: #00ffff;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

/* BUTTONS */
.btn-primary,
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #C9A961 0%, #2C5F2D 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  border: 2px solid #00ffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover::before,
.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover,
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
  border-color: #C9A961;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #C9A961;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  border: 2px solid #C9A961;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: #00ffff;
  color: #00ffff;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
  transform: translateY(-3px);
}

.link-cta {
  display: inline-block;
  margin-top: 24px;
  color: #C9A961;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 2px solid #C9A961;
  transition: all 0.3s ease;
}

.link-cta:hover {
  color: #00ffff;
  border-color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.3) 0%, rgba(10, 14, 26, 0.8) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 255, 0.03) 2px,
    rgba(0, 255, 255, 0.03) 4px
  );
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #C9A961;
  text-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
}

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

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.3) 0%, rgba(10, 14, 26, 0.8) 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
  margin-bottom: 60px;
}

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

.page-hero p {
  font-size: 18px;
  color: #E8DCC4;
}

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

section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
}

.introduction,
.mission-statement,
.historical-overview,
.historical-context,
.educational-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* CARDS & GRIDS */
.buildings-grid,
.services-grid,
.benefits-grid,
.routes-grid,
.architects-grid,
.figures-grid,
.categories-grid,
.details-grid,
.options-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.building-card,
.service-card,
.benefit,
.route-card,
.architect-profile,
.figure-card,
.category-card,
.detail-card,
.option-card,
.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.building-card::before,
.service-card::before,
.benefit::before,
.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #C9A961, #00ffff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.building-card:hover::before,
.service-card:hover::before,
.benefit:hover::before,
.route-card:hover::before {
  transform: scaleX(1);
}

.building-card:hover,
.service-card:hover,
.benefit:hover,
.route-card:hover,
.architect-profile:hover,
.figure-card:hover,
.category-card:hover,
.detail-card:hover,
.option-card:hover,
.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
  border-color: #00ffff;
}

.building-card h3,
.service-card h3,
.benefit h3,
.route-card h3 {
  color: #C9A961;
  margin-bottom: 12px;
}

.architect,
.address,
.tagline {
  color: #00ffff;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 8px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #C9A961;
  margin-top: 16px;
  text-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
}

.benefit img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

/* SERVICE CARDS EXPANDED */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.service-card-expanded {
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service-card-expanded:hover {
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
  border-color: #00ffff;
  transform: translateX(8px);
}

.service-card-expanded h3 {
  font-size: 28px;
  color: #C9A961;
  margin-bottom: 8px;
}

.service-card-expanded .tagline {
  font-size: 16px;
  color: #00ffff;
  margin-bottom: 16px;
}

.service-card-expanded ul {
  margin: 20px 0;
  padding-left: 24px;
}

.service-card-expanded li {
  margin-bottom: 8px;
  color: #E8DCC4;
  position: relative;
}

.service-card-expanded li::before {
  content: '▹';
  position: absolute;
  left: -20px;
  color: #00ffff;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.2) 0%, rgba(10, 14, 26, 0.5) 100%);
  padding: 60px 20px;
}

.testimonial-card {
  background: rgba(232, 220, 196, 0.95);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid #C9A961;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

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

.testimonial-card .author {
  color: #2C5F2D;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  text-align: right;
  margin-bottom: 0;
}

/* WHY CHOOSE US */
.why-choose-us {
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.5) 0%, rgba(10, 14, 26, 0.8) 100%);
}

/* CTA SECTIONS */
.cta-booking,
.cta-section,
.cta-home {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.3) 0%, rgba(10, 14, 26, 0.9) 100%);
  padding: 60px 20px;
  text-align: center;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  margin: 60px 20px;
}

.cta-booking h2,
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.contact-alt {
  margin-top: 24px;
  font-size: 18px;
  color: #E8DCC4;
}

.contact-alt a {
  color: #00ffff;
  font-weight: 700;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #C9A961, #00ffff);
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #00ffff;
  border: 3px solid #0a0e1a;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.timeline-item h3 {
  color: #C9A961;
  font-size: 24px;
  margin-bottom: 8px;
}

/* PRINCIPLES LIST */
.principles-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.principle {
  padding: 24px;
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.6) 0%, rgba(10, 14, 26, 0.8) 100%);
  border-left: 4px solid #C9A961;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.principle:hover {
  border-left-color: #00ffff;
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

/* FAQ */
.faq,
.faq-contact {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.6) 0%, rgba(10, 14, 26, 0.8) 100%);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00ffff;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.faq-item h3 {
  color: #C9A961;
  margin-bottom: 12px;
}

/* CONTACT PAGE */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.contact-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.6) 0%, rgba(10, 14, 26, 0.8) 100%);
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: #00ffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
}

.contact-item h3 {
  color: #C9A961;
  margin-bottom: 12px;
}

/* FORM NOTICE */
.form-notice {
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #C9A961;
  margin-top: 32px;
}

.form-fields-display {
  margin-top: 20px;
}

.form-fields-display ul {
  margin: 16px 0;
}

.form-action {
  margin-top: 16px;
  padding: 16px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid #00ffff;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  font-size: 80px;
  color: #00ffff;
  margin-bottom: 24px;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
  50% { transform: scale(1.1); text-shadow: 0 0 40px rgba(0, 255, 255, 0.8); }
}

.confirmation-message {
  font-size: 20px;
  color: #E8DCC4;
  max-width: 700px;
  margin: 0 auto;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: center;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #00ffff;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
}

.step h3 {
  color: #C9A961;
  margin-bottom: 16px;
}

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

.tip {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

.timeline {
  font-size: 16px;
  color: #00ffff;
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 8px;
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #C9A961;
}

.legal-content h3 {
  margin-top: 24px;
  color: #E8DCC4;
}

.last-updated {
  color: #00ffff;
  font-style: italic;
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.95) 0%, #000 100%);
  border-top: 2px solid rgba(0, 255, 255, 0.3);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 250px;
}

.footer-col img {
  height: 60px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.5));
}

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

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

.footer-col nav a {
  color: #E8DCC4;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 8px;
  border-left: 2px solid transparent;
}

.footer-col nav a:hover {
  color: #00ffff;
  border-left-color: #00ffff;
  padding-left: 12px;
}

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

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-legal a {
  color: #E8DCC4;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-legal a:hover {
  color: #00ffff;
}

.footer-bottom p {
  color: #E8DCC4;
  font-size: 12px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.98) 0%, rgba(26, 31, 53, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid #00ffff;
  box-shadow: 0 -4px 30px rgba(0, 255, 255, 0.3);
  padding: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  color: #E8DCC4;
  font-size: 14px;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept {
  background: linear-gradient(135deg, #C9A961, #2C5F2D);
  color: #fff;
  border-color: #00ffff;
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
}

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

.cookie-reject:hover {
  background: rgba(232, 220, 196, 0.1);
  color: #fff;
}

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

.cookie-settings:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: #00ffff;
  color: #00ffff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  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: linear-gradient(135deg, #1a1f35 0%, #0a0e1a 100%);
  border: 2px solid #00ffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.4);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}

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

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

.cookie-category {
  padding: 20px;
  background: rgba(26, 31, 53, 0.5);
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

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

.cookie-category h3 {
  color: #C9A961;
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(232, 220, 196, 0.2);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 2px solid #E8DCC4;
}

.cookie-toggle.active {
  background: #00ffff;
  border-color: #00ffff;
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
  background: #fff;
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 28px; }
  
  .hero h1 { font-size: 48px; }
  
  .building-card,
  .service-card,
  .benefit,
  .route-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  header .cta-button {
    display: none;
  }
  
  .building-card,
  .service-card,
  .benefit,
  .route-card,
  .architect-profile,
  .figure-card,
  .category-card,
  .detail-card,
  .option-card,
  .suggestion-card,
  .contact-item,
  .step,
  .tip {
    flex: 1 1 100%;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
  }
  
  section {
    padding: 40px 20px;
  }
  
  .service-card-expanded {
    padding: 24px;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 32px; }
  
  .btn-primary,
  .btn-secondary,
  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .price {
    font-size: 24px;
  }
}