/* ====================================
   WIENER KERZENZAUBER - CSS STYLES
   Tech Futuristic Design with Traditional Craft Elements
   ==================================== */

/* 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: #1a1a1a;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  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.3;
  color: #D4AF37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

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;
  margin-bottom: 16px;
}

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

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

a:hover {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

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

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

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

/* HEADER */
header {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 2px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  transition: transform 0.3s ease;
}

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

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

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

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  border: 2px solid #FFD700;
  color: #fff;
  font-size: 28px;
  padding: 12px 16px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1002;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  border-left: 3px solid #D4AF37;
  box-shadow: -5px 0 30px rgba(212, 175, 55, 0.3);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 24px 24px;
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background: #D4AF37;
  color: #0a0a0a;
  transform: rotate(90deg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

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

.mobile-nav a {
  color: #F5E6D3;
  font-size: 18px;
  font-weight: 600;
  padding: 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.mobile-nav a:hover {
  border-left-color: #FFD700;
  background: rgba(212, 175, 55, 0.1);
  padding-left: 24px;
  color: #FFD700;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  color: #fff;
  border-color: #FFD700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  border-color: #FFD700;
}

.btn-secondary {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #FFD700;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.9)), 
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23D4AF37" opacity="0.05" width="1200" height="600"/></svg>');
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #D4AF37;
  position: relative;
  overflow: hidden;
}

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

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

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #F5E6D3;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  font-size: 14px;
  color: #D4AF37;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
  background: rgba(10, 10, 10, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* FEATURES GRID */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 400px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #D4AF37, #FFD700, #D4AF37);
  border-radius: 12px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 0.3;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
  border-color: #FFD700;
}

.feature-card h3 {
  color: #FFD700;
  margin-bottom: 16px;
}

.feature-card p {
  color: #F5E6D3;
  font-size: 15px;
}

/* SERVICES GRID */
.services-overview {
  text-align: center;
}

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

.service-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 350px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5);
  border-color: #FFD700;
}

.service-card h3 {
  color: #FFD700;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.service-card p {
  color: #F5E6D3;
  margin-bottom: 8px;
}

.badge-popular {
  position: relative;
}

.badge-popular::after {
  content: 'BELIEBT';
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #0a0a0a;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

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

.step {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
  border-color: #FFD700;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 16px;
  border: 3px solid #FFD700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.step h3 {
  color: #FFD700;
  margin-bottom: 12px;
  font-size: 20px;
}

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

.note {
  text-align: center;
  font-style: italic;
  color: #D4AF37;
  margin-top: 24px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
  text-align: center;
}

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

.testimonial-card {
  background: rgba(245, 230, 211, 0.95);
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid #D4AF37;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #D4AF37;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

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

.testimonial-card .author {
  color: #8B4513;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-align: right;
}

.rating {
  color: #FFD700;
  font-weight: 700;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(212, 175, 55, 0.9));
  text-align: center;
  padding: 60px 20px;
  border-radius: 16px;
  border: 2px solid #FFD700;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.cta-banner h2 {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.cta-banner p {
  color: #F5E6D3;
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.guarantee {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LOCATION INFO */
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.address, .hours {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 300px;
  max-width: 500px;
}

.address h3, .hours h3 {
  color: #FFD700;
  margin-bottom: 16px;
}

.address p, .hours p {
  color: #F5E6D3;
  line-height: 1.8;
}

/* WORKSHOPS LIST */
.workshop-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
  padding: 40px 32px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.workshop-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  border-color: #FFD700;
}

.workshop-item h2 {
  color: #FFD700;
  text-align: left;
  margin-bottom: 16px;
}

.workshop-item .price {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.workshop-item .duration {
  color: #F5E6D3;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #0a0a0a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.badge-premium {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

.badge-exclusive {
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  color: #fff;
}

.badge-seasonal {
  background: linear-gradient(135deg, #FF6B6B, #FFD700);
}

/* BOOKING INFO */
.booking-info ul {
  max-width: 800px;
  margin: 0 auto;
}

.booking-info li {
  background: rgba(212, 175, 55, 0.1);
  padding: 16px;
  border-left: 4px solid #D4AF37;
  margin-bottom: 16px;
  border-radius: 4px;
}

/* STORY SECTION */
.story blockquote {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
  padding: 32px;
  border-left: 5px solid #D4AF37;
  border-radius: 8px;
  font-style: italic;
  color: #F5E6D3;
  font-size: 18px;
  margin: 32px 0;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  border-color: #FFD700;
}

.team-member h3 {
  color: #FFD700;
  margin-bottom: 8px;
}

.team-member .role {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.value-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 400px;
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
  border-color: #FFD700;
}

.value-card h3 {
  color: #FFD700;
}

/* CREDENTIALS */
.credentials ul {
  max-width: 700px;
  margin: 0 auto;
}

.credentials li {
  background: rgba(212, 175, 55, 0.1);
  padding: 16px;
  border-left: 4px solid #D4AF37;
  margin-bottom: 16px;
  border-radius: 4px;
  color: #F5E6D3;
}

/* GALLERY */
.gallery-description p {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}

.process-visual ol {
  max-width: 600px;
  margin: 32px auto;
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.process-visual ol li {
  counter-increment: step-counter;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 20px 20px 20px 70px;
  border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.process-visual ol li:hover {
  transform: translateX(8px);
  border-color: #FFD700;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.process-visual ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #FFD700;
  line-height: 40px;
  text-align: center;
}

.social-proof {
  text-align: center;
  color: #D4AF37;
  font-weight: 600;
  margin-top: 24px;
}

/* VOUCHERS */
.vouchers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.voucher-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.voucher-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5);
  border-color: #FFD700;
}

.voucher-card h3 {
  color: #FFD700;
}

.voucher-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.value-vouchers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.value-option {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  border-color: #FFD700;
}

.value-option h3 {
  color: #FFD700;
  font-size: 28px;
}

/* DELIVERY OPTIONS */
.delivery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.delivery-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.delivery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  border-color: #FFD700;
}

.delivery-card h3 {
  color: #FFD700;
}

/* HOW IT WORKS */
.how-it-works ol {
  max-width: 800px;
  margin: 0 auto;
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.how-it-works ol li {
  counter-increment: step-counter;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 24px 24px 24px 80px;
  border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.how-it-works ol li:hover {
  transform: translateX(8px);
  border-color: #FFD700;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.how-it-works ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  border: 3px solid #FFD700;
  line-height: 50px;
  text-align: center;
}

.security {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

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

.contact-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  border-color: #FFD700;
}

.contact-card h3 {
  color: #FFD700;
}

.contact-detail {
  color: #D4AF37;
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0;
}

.form-placeholder {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 40px 32px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  max-width: 700px;
  margin: 32px auto;
}

.form-placeholder ul {
  margin-bottom: 24px;
}

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

.address-block, .directions {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 400px;
  max-width: 500px;
}

.address-block h3, .directions h3 {
  color: #FFD700;
}

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

.hours-block {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 300px;
  max-width: 450px;
  text-align: center;
}

.hours-block h3 {
  color: #FFD700;
}

.faq-list {
  max-width: 800px;
  margin: 32px auto 0;
}

.faq-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 24px;
  border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #FFD700;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

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

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

.contact-option {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.contact-option h3 {
  color: #FFD700;
}

.contact-info {
  color: #D4AF37;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}

.urgent {
  color: #FFD700;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.9));
  padding: 60px 20px;
  text-align: center;
  border-bottom: 3px solid #D4AF37;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2 {
  color: #FFD700;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #D4AF37;
  text-align: left;
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.9));
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #D4AF37;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00C851, #007E33);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(0, 200, 81, 0.4);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0, 200, 81, 0.6); }
}

.confirmation h2 {
  color: #FFD700;
  text-align: center;
}

.confirmation ol {
  max-width: 700px;
  margin: 32px auto;
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.confirmation ol li {
  counter-increment: step-counter;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 20px 20px 20px 70px;
  border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 16px;
  position: relative;
}

.confirmation ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #FFD700;
  line-height: 40px;
  text-align: center;
}

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

.suggestion-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  border-color: #FFD700;
}

.suggestion-card h3 {
  color: #FFD700;
  margin-bottom: 20px;
}

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

.stat {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 24px;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.stat p {
  color: #F5E6D3;
  font-size: 14px;
  margin: 0;
}

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

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

/* FOOTER */
footer {
  background: rgba(10, 10, 10, 0.95);
  border-top: 3px solid #D4AF37;
  padding: 48px 20px 24px;
  margin-top: 60px;
  box-shadow: 0 -4px 20px rgba(212, 175, 55, 0.2);
}

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

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

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

.footer-section p {
  color: #F5E6D3;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

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

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

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

.copyright {
  text-align: center;
  color: #D4AF37;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  margin-top: 24px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 46, 0.98));
  border-top: 3px solid #D4AF37;
  padding: 24px 20px;
  z-index: 1000;
  box-shadow: 0 -8px 40px rgba(212, 175, 55, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  backdrop-filter: blur(10px);
}

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

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

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

.cookie-text h4 {
  color: #FFD700;
  margin-bottom: 8px;
  font-size: 18px;
}

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

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 46, 0.98));
  border: 3px solid #D4AF37;
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .modal-content {
  transform: scale(1);
}

.modal-content h3 {
  color: #FFD700;
  margin-bottom: 24px;
}

.cookie-category {
  background: rgba(212, 175, 55, 0.1);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 16px;
}

.cookie-category h4 {
  color: #D4AF37;
  margin-bottom: 8px;
  font-size: 16px;
}

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

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

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

.toggle-switch.active {
  background: linear-gradient(135deg, #8B4513, #D4AF37);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav { display: none; }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header .container {
    justify-content: center;
  }
  
  .logo {
    margin-right: 60px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Sections */
  section {
    padding: 40px 16px;
    margin-bottom: 24px;
  }
  
  /* Grids */
  .features-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .vouchers-grid,
  .value-vouchers,
  .delivery-grid,
  .contact-grid,
  .team-grid,
  .values-grid,
  .suggestions-grid,
  .stats {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card,
  .service-card,
  .step,
  .testimonial-card,
  .voucher-card,
  .value-option,
  .delivery-card,
  .contact-card,
  .team-member,
  .value-card,
  .suggestion-card,
  .stat {
    max-width: 100%;
    width: 100%;
  }
  
  /* Location */
  .location-details,
  .location-content,
  .hours-grid,
  .contact-options {
    flex-direction: column;
  }
  
  .address, .hours,
  .address-block, .directions,
  .hours-block,
  .contact-option {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons .btn {
    flex: 1 1 auto;
  }
  
  /* Process Steps */
  .how-it-works ol li,
  .process-visual ol li,
  .confirmation ol li {
    padding-left: 20px;
  }
  
  .how-it-works ol li::before,
  .process-visual ol li::before,
  .confirmation ol li::before {
    position: relative;
    left: 0;
    transform: none;
    margin-bottom: 12px;
    display: inline-block;
  }
  
  /* Workshop Items */
  .workshop-item:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card .price,
  .voucher-card .price {
    font-size: 24px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
  }
  
  .modal-content {
    padding: 24px 20px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .hero-cta,
  .cta-banner,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #8B4513;
  }
  
  p, li {
    color: black;
  }
}