/* ========================================
   KAISERLICHE KERAMIK GMUNDEN - CSS
   Vibrant & Energetic Design Style
   ======================================== */

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

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

body {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #FFE5B4 0%, #FFDAB9 50%, #FFC8A8 100%);
  overflow-x: hidden;
}

/* VIBRANT ENERGETIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #D4006C;
  text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
}

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

h2 {
  font-size: 36px;
  color: #FF1493;
}

h3 {
  font-size: 28px;
  color: #FF4500;
}

h4 {
  font-size: 22px;
  color: #FF6347;
}

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

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

a:hover {
  color: #FF4500;
  transform: translateY(-2px);
}

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

em {
  font-style: italic;
  color: #FF6347;
}

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

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

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

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

/* ELECTRIC HEADER */
header {
  background: linear-gradient(135deg, #FF1493 0%, #FF4500 50%, #FFD700 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.4);
  border-bottom: 4px solid #FFD700;
}

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

.logo {
  height: 60px;
  width: auto;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.5));
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
}

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

.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #FFD700;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.cta-button {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1a1a1a !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 3px solid #FF4500;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.7);
  background: linear-gradient(135deg, #FFA500 0%, #FF4500 100%);
  color: #fff !important;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: #FFD700;
  border: 3px solid #FF4500;
  color: #1a1a1a;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: #FF4500;
  color: #FFD700;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FF1493 0%, #FF4500 50%, #FFD700 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFD700;
  border: 3px solid #FF4500;
  color: #1a1a1a;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #FF4500;
  color: #FFD700;
}

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

.mobile-nav a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #FFD700;
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

/* HERO SECTION - ELECTRIC & DYNAMIC */
.hero {
  background: linear-gradient(135deg, #FF1493 0%, #FF4500 25%, #FFD700 50%, #00CED1 75%, #FF1493 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #FFD700;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

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

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

.hero h1 {
  color: #fff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1s ease;
}

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

.hero-subtitle {
  color: #fff;
  font-size: 22px;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.heritage-badge {
  display: inline-block;
  background: #FFD700;
  color: #1a1a1a;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  border: 3px solid #FF4500;
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.badge {
  display: inline-block;
  background: #FF4500;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
  border: 2px solid #FFD700;
}

/* HERO CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1a1a1a;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 24px rgba(255, 165, 0, 0.5);
  transition: all 0.3s ease;
  border: 3px solid #FF4500;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 36px rgba(255, 165, 0, 0.7);
  background: linear-gradient(135deg, #FFA500 0%, #FF4500 100%);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 3px solid #FFD700;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
  background: #FFD700;
  color: #1a1a1a;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 36px rgba(255, 215, 0, 0.6);
}

.btn-link {
  color: #FF1493;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 16px;
  border-bottom: 3px solid #FFD700;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #FF4500;
  border-bottom-color: #FF4500;
  transform: translateX(8px);
}

/* BRAND STORY SECTION */
.brand-story {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4E1 100%);
  padding: 80px 20px;
  border-radius: 24px;
  margin: 60px 0;
  box-shadow: 0 12px 40px rgba(255, 20, 147, 0.2);
  border: 4px solid #FF4500;
}

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

/* SERVICES GRID - DYNAMIC LAYOUT */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.15);
  transition: all 0.4s ease;
  border: 3px solid #FFD700;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.3);
  border-color: #FF4500;
}

.service-card h3 {
  color: #FF1493;
  margin-bottom: 16px;
}

.price {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #FF4500;
  margin: 20px 0;
  text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.3);
}

.price-display {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #FF4500;
  margin: 24px 0;
  padding: 16px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
  border: 3px solid #FF1493;
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.value-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  background: linear-gradient(135deg, #FF1493 0%, #FF4500 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.3);
  transition: all 0.4s ease;
  border: 3px solid #FFD700;
  text-align: center;
}

.value-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.4);
}

.value-item h3 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.value-item p {
  color: #fff;
  font-weight: 500;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #FF4500 0%, #FF1493 100%);
  padding: 80px 20px;
  border-radius: 24px;
  margin: 60px 0;
  box-shadow: 0 12px 40px rgba(255, 20, 147, 0.4);
  border: 4px solid #FFD700;
}

.testimonials h2 {
  color: #fff;
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 3px solid #FFD700;
  position: relative;
}

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

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.3);
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 3px solid #FFD700;
}

.testimonial-author strong {
  color: #FF1493;
  font-size: 18px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.project-type {
  display: inline-block;
  background: #FFD700;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #FF1493 0%, #FF4500 50%, #FFD700 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 0;
  box-shadow: 0 12px 40px rgba(255, 20, 147, 0.4);
  border: 4px solid #FFD700;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

.cta-banner h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.response-note {
  font-size: 14px;
  color: #fff;
  margin-top: 16px;
  font-style: italic;
}

/* COLLECTION & PATTERN CARDS */
.collection-card {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4E1 100%);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(255, 20, 147, 0.2);
  margin-bottom: 40px;
  border: 4px solid #FF4500;
  transition: all 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 69, 0, 0.3);
}

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

.pattern-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.15);
  transition: all 0.4s ease;
  border: 3px solid #FFD700;
}

.pattern-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.3);
  border-color: #FF4500;
}

.pattern-card h3 {
  color: #FF1493;
}

/* WORKSHOP CARDS */
.workshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.workshop-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.15);
  transition: all 0.4s ease;
  border: 3px solid #FFD700;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.workshop-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.3);
  border-color: #FF4500;
}

.skill-level {
  display: inline-block;
  background: #FF4500;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* GALLERY GRID */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.15);
  transition: all 0.4s ease;
  border: 3px solid #FFD700;
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.3);
  border-color: #FF4500;
}

.gallery-item h3 {
  color: #FF1493;
  margin-bottom: 12px;
}

.details {
  font-size: 14px;
  color: #FF4500;
  font-weight: 600;
  margin-top: 12px;
  font-style: italic;
}

/* CONTACT & FORM SECTIONS */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.contact-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.15);
  transition: all 0.4s ease;
  border: 3px solid #FFD700;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.3);
  border-color: #FF4500;
}

.contact-card h3 {
  color: #FF1493;
  margin-bottom: 16px;
}

.form-note {
  background: linear-gradient(135deg, #FFE4E1 0%, #FFF5E6 100%);
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
  border: 3px solid #FFD700;
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.1);
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step-item {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  background: linear-gradient(135deg, #FF1493 0%, #FF4500 100%);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.2);
  transition: all 0.4s ease;
  border: 3px solid #FFD700;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.4);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #FFD700;
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border: 3px solid #fff;
}

.step-item h3 {
  color: #fff;
  font-size: 18px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* CRAFTSMEN & INSTRUCTORS */
.craftsmen-grid,
.instructors-grid,
.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.craftsman-card,
.instructor-card,
.department-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.15);
  transition: all 0.4s ease;
  border: 3px solid #FFD700;
}

.craftsman-card:hover,
.instructor-card:hover,
.department-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.3);
  border-color: #FF4500;
}

.specialty,
.instructor-title {
  display: block;
  color: #FF4500;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

.intro-section,
.content-section,
.values-section,
.atelier-section,
.quality-section,
.customization-section,
.care-section,
.experience-section,
.practical-info,
.gift-section,
.location-section,
.direct-contact-section,
.faq-section {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4E1 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 0;
  box-shadow: 0 8px 32px rgba(255, 20, 147, 0.15);
  border: 3px solid #FFD700;
}

/* LOCATION & CONTACT DETAILS */
.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 32px;
}

.location-info {
  flex: 1 1 400px;
}

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

.contact-detail-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.15);
  border: 3px solid #FFD700;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.1);
  border: 3px solid #FFD700;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 32px rgba(255, 69, 0, 0.2);
  border-color: #FF4500;
}

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

/* THANK YOU / SUCCESS PAGE */
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #FFD700;
  color: #1a1a1a;
  font-size: 72px;
  border-radius: 50%;
  margin-bottom: 32px;
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
  border: 6px solid #FF4500;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.confirmation-section,
.next-steps-section,
.meanwhile-section,
.urgent-section,
.thank-you-content {
  padding: 60px 20px;
}

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

.step-card,
.suggestion-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.15);
  transition: all 0.4s ease;
  border: 3px solid #FFD700;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card:hover,
.suggestion-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 69, 0, 0.3);
  border-color: #FF4500;
}

/* LEGAL PAGES */
.legal-content {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4E1 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 0;
  box-shadow: 0 8px 32px rgba(255, 20, 147, 0.15);
  border: 3px solid #FFD700;
}

/* FOOTER - ELECTRIC */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
  border-top: 6px solid #FFD700;
  box-shadow: 0 -8px 32px rgba(255, 20, 147, 0.2);
}

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

.footer-section {
  flex: 1 1 220px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

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

footer h4 {
  color: #FFD700;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 4px rgba(255, 69, 0, 0.3);
}

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

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

.footer-nav a {
  color: #ddd;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
}

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

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FF1493 0%, #FF4500 100%);
  padding: 24px;
  z-index: 1500;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #FFD700;
}

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

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

.cookie-banner p {
  color: #fff;
  margin: 0;
  flex: 1 1 300px;
  font-size: 15px;
}

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

.cookie-button {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept {
  background: #FFD700;
  color: #1a1a1a;
  border: 2px solid #fff;
}

.cookie-accept:hover {
  background: #FFA500;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

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

.cookie-settings:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: #fff;
  transform: translateY(-3px);
}

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

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

.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 4px solid #FFD700;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE4E1 100%);
  border-radius: 12px;
  border: 2px solid #FFD700;
}

.cookie-category h3 {
  color: #FF4500;
  margin-bottom: 12px;
  font-size: 18px;
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .services-grid,
  .values-grid,
  .testimonials-grid,
  .patterns-grid,
  .workshop-grid,
  .gallery-grid,
  .contact-grid,
  .craftsmen-grid,
  .instructors-grid,
  .departments-grid,
  .process-steps,
  .steps-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .service-card,
  .value-item,
  .testimonial-card,
  .pattern-card,
  .workshop-card,
  .gallery-item,
  .contact-card,
  .craftsman-card,
  .instructor-card,
  .department-card,
  .step-item,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .location-content {
    flex-direction: column;
  }
  
  .contact-details {
    flex-direction: column;
  }
  
  .contact-detail-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #FFD700;
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #FF4500;
  outline-offset: 3px;
}

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

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

/* PRINT STYLES */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  footer {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}