/* =================================================================
   ZACZAROWANA ZATOKA - VIBRANT & ENERGETIC DESIGN SYSTEM
   ================================================================= */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* VIBRANT COLOR SYSTEM */
:root {
  --primary: #FF6B35;
  --secondary: #F7B801;
  --accent: #00D9FF;
  --dark: #1a1a1a;
  --light: #ffffff;
  --gray: #f5f5f5;
  --text: #2d2d2d;
  --energy-pink: #FF006E;
  --energy-purple: #8338EC;
  --energy-green: #06FFA5;
}

/* TYPOGRAPHY - BOLD & ENERGETIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
}

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

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

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--primary);
  color: var(--light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--energy-pink);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 30px rgba(255, 0, 110, 0.5);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--energy-pink) 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--light);
  border: 2px solid var(--light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--light);
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px;
}

.mobile-nav a {
  color: var(--light);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

/* HEADER */
header {
  background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  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: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS - ENERGETIC & BOLD */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--energy-pink) 100%);
  color: var(--light);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 0, 110, 0.4);
  background: linear-gradient(135deg, var(--energy-pink) 0%, var(--energy-purple) 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(247, 184, 1, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(247, 184, 1, 0.5);
  background: linear-gradient(135deg, var(--accent) 0%, var(--energy-green) 100%);
  color: var(--dark);
}

.btn-link {
  background: transparent;
  color: var(--primary);
  padding: 8px 0;
  font-weight: 700;
  border-bottom: 3px solid var(--primary);
  border-radius: 0;
}

.btn-link:hover {
  color: var(--energy-pink);
  border-bottom-color: var(--energy-pink);
  transform: translateX(5px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--primary) 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.hero h1 {
  color: var(--light);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .subheadline {
  font-size: 22px;
  color: var(--light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

/* INTERNAL HERO */
.hero-internal {
  background: linear-gradient(135deg, var(--primary) 0%, var(--energy-purple) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  color: var(--light);
}

.hero-internal h1 {
  color: var(--light);
  margin-bottom: 16px;
}

.hero-internal .subheadline {
  color: var(--light);
  font-size: 20px;
  margin-bottom: 32px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--light);
  text-decoration: underline;
}

/* SECTIONS - ENERGETIC SPACING */
.section,
section {
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
}

section:nth-child(even) {
  background: var(--gray);
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
  color: var(--dark);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  border-radius: 3px;
}

/* SERVICES GRID - FLEXBOX LAYOUT */
.services-overview,
.services-detailed {
  background: var(--light);
}

.services-grid,
.features-grid,
.values-grid,
.inclusions-grid,
.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.service-card,
.feature,
.value-card,
.inclusion,
.guarantee {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--light);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.service-card:hover,
.feature:hover,
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.service-card h3,
.feature h3,
.value-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p,
.feature p,
.value-card p {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card .price,
.price {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin: 20px 0;
  display: block;
}

.price-highlight {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 184, 1, 0.1));
  border-radius: 15px;
  border: 3px solid var(--primary);
}

/* SERVICE LARGE CARDS */
.service-large {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary);
}

.service-large:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
  border-left-color: var(--energy-pink);
}

.service-large h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 32px;
}

.service-large h2::after {
  left: 0;
  transform: none;
}

/* SPLIT LAYOUT - FLEXBOX */
.split-layout,
.text-image-section {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.split-layout .content,
.content {
  flex: 1 1 400px;
}

.benefits {
  list-style: none;
  margin: 24px 0;
}

.benefits li {
  padding: 12px 0 12px 36px;
  position: relative;
  font-size: 18px;
  color: var(--text);
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
  font-size: 24px;
}

/* FEATURED SERVICE */
.featured-service {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  padding: 80px 20px;
}

.featured-service h2,
.featured-service p {
  color: var(--dark);
}

/* VALUE PROPOSITION */
.value-proposition {
  background: var(--light);
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, var(--gray) 0%, var(--light) 100%);
  padding: 80px 20px;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 24px;
  border-top: 5px solid var(--primary);
}

.testimonial-card p {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card .author {
  color: var(--primary);
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 0;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--energy-purple) 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--light);
}

.newsletter h2 {
  color: var(--light);
}

.newsletter p {
  color: var(--light);
  font-size: 20px;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto 24px;
}

.email-input,
.input-field {
  flex: 1 1 300px;
  padding: 16px 24px;
  font-size: 16px;
  border: 3px solid var(--light);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.email-input:focus,
.input-field:focus {
  outline: none;
  background: var(--light);
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(247, 184, 1, 0.5);
}

.privacy-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.privacy-note a {
  color: var(--light);
  text-decoration: underline;
}

/* CONTACT SECTIONS */
.contact-quick,
.contact-info,
.contact-form-section {
  padding: 80px 20px;
}

.contact-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.contact-item,
.contact-card,
.info-item {
  flex: 1 1 250px;
  max-width: 350px;
  text-align: center;
  padding: 32px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.contact-item:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.contact-item h3,
.contact-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

/* FORM STYLING */
.form-wrapper {
  max-width: 700px;
  margin: 48px auto;
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-field {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: var(--dark);
  font-size: 16px;
}

.input-field {
  width: 100%;
  border-radius: 12px;
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

select.input-field {
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

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

/* EVENTS & BLOG */
.event-categories,
.blog-categories {
  padding: 60px 20px;
}

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

.category,
.category-btn {
  flex: 1 1 250px;
  max-width: 350px;
  padding: 32px;
  background: var(--light);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 24px;
}

.category:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.category:hover h3,
.category:hover p {
  color: var(--light);
}

.category h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.category-btn {
  border: 3px solid var(--primary);
  background: var(--light);
  color: var(--primary);
  font-weight: 700;
  padding: 12px 24px;
  flex: 0 1 auto;
  max-width: none;
}

.category-btn.active,
.category-btn:hover {
  background: var(--primary);
  color: var(--light);
}

/* EVENTS LIST */
.events-list,
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.event-card,
.post-card {
  flex: 1 1 350px;
  max-width: 450px;
  background: var(--light);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  border-left: 5px solid var(--primary);
}

.event-card:hover,
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
  border-left-color: var(--energy-pink);
}

.event-date,
.meta {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card h3,
.post-card h3 {
  color: var(--dark);
  margin-bottom: 16px;
  font-size: 24px;
}

.post-card .category {
  display: inline-block;
  padding: 6px 16px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FEATURED POST */
.featured-post {
  padding: 60px 20px;
  background: var(--gray);
}

.featured-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--light);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-top: 8px solid var(--primary);
}

.featured-card .category {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--light);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.featured-card h2 {
  text-align: left;
  font-size: 36px;
  margin-bottom: 20px;
}

.featured-card h2::after {
  display: none;
}

/* MISSION & VALUES */
.mission-vision,
.brand-story {
  padding: 80px 20px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 48px;
}

.column {
  flex: 1 1 400px;
  padding: 32px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* STATS & ACHIEVEMENTS */
.achievements {
  background: linear-gradient(135deg, var(--primary) 0%, var(--energy-purple) 100%);
  padding: 80px 20px;
  color: var(--light);
}

.achievements h2 {
  color: var(--light);
}

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

.stat {
  flex: 1 1 200px;
  max-width: 280px;
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.stat .number {
  font-size: 48px;
  font-weight: 900;
  color: var(--light);
  margin-bottom: 12px;
}

.stat .label {
  font-size: 16px;
  color: var(--light);
  font-weight: 600;
}

/* CTA SECTIONS */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  color: var(--dark);
  font-size: 42px;
}

.cta-section p {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 32px;
}

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

/* HOW IT WORKS */
.how-it-works {
  padding: 80px 20px;
  background: var(--light);
}

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

.step {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 32px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 24px;
}

.step h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 16px;
}

.step h3::before {
  content: attr(data-number);
  display: block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  border-radius: 50%;
  font-size: 32px;
  font-weight: 900;
  line-height: 60px;
  margin: 0 auto 20px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h2::after {
  left: 0;
  transform: none;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--primary);
}

.legal-content ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.legal-content li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 16px;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 12px;
  color: var(--primary);
  font-size: 24px;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  margin-top: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero,
.thank-you-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--energy-purple) 100%);
  color: var(--light);
}

.success-icon,
.icon {
  width: 100px;
  height: 100px;
  background: var(--light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1,
.success-message h1 {
  color: var(--light);
  margin-bottom: 20px;
}

.message,
.thank-you-hero p {
  font-size: 22px;
  color: var(--light);
  margin-bottom: 32px;
}

.next-steps,
.continue-browsing {
  padding: 80px 20px;
}

.steps-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.link-card {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 32px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.link-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 22px;
}

/* SOCIAL CONNECT */
.social-connect {
  padding: 60px 20px;
  text-align: center;
  background: var(--gray);
}

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

.social-link {
  padding: 14px 32px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.social-link:hover {
  background: var(--energy-pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
}

/* VISIT INFO */
.visit-info {
  padding: 80px 20px;
  background: var(--light);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
  color: var(--light);
  padding: 60px 20px 20px;
}

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

.footer-col {
  flex: 1 1 220px;
  max-width: 300px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.tagline {
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 20px;
}

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

.footer-col nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-col nav a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  color: var(--light);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: none;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

#cookie-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 16px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--secondary);
  text-decoration: underline;
}

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

.cookie-btn {
  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: 0.5px;
}

#accept-cookies {
  background: var(--primary);
  color: var(--light);
}

#accept-cookies:hover {
  background: var(--energy-pink);
  transform: scale(1.05);
}

#reject-cookies {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

#reject-cookies:hover {
  background: var(--light);
  color: var(--dark);
}

#cookie-settings {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

#cookie-settings:hover {
  background: var(--secondary);
  color: var(--dark);
}

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

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

.modal-content {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content h2 {
  color: var(--dark);
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  background: var(--gray);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.cookie-category h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: var(--light);
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: var(--primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

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

.modal-btn {
  flex: 1 1 140px;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

#save-preferences {
  background: var(--primary);
  color: var(--light);
}

#save-preferences:hover {
  background: var(--energy-pink);
  transform: scale(1.05);
}

#close-modal {
  background: var(--gray);
  color: var(--dark);
  border: 2px solid var(--dark);
}

#close-modal:hover {
  background: var(--dark);
  color: var(--light);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero .subheadline {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  /* Sections */
  section {
    padding: 60px 20px;
  }

  /* Grid layouts - stack on mobile */
  .services-grid,
  .features-grid,
  .values-grid,
  .testimonials-grid,
  .contact-grid,
  .events-list,
  .posts-grid,
  .stats-grid,
  .steps,
  .links-grid {
    flex-direction: column;
    gap: 24px;
  }

  .service-card,
  .feature,
  .value-card,
  .testimonial-card,
  .contact-item,
  .event-card,
  .post-card,
  .stat,
  .step,
  .link-card {
    max-width: 100%;
  }

  /* Split layouts stack on mobile */
  .split-layout,
  .text-image-section,
  .two-column {
    flex-direction: column;
    gap: 32px;
  }

  /* Newsletter form */
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .email-input {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col {
    max-width: 100%;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Modal */
  .modal-content {
    padding: 24px;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .modal-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  /* Adjust grid to 2 columns */
  .service-card,
  .feature,
  .testimonial-card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .header-cta,
  #cookie-banner,
  #cookie-modal,
  footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-link:focus {
  outline: 3px solid var(--secondary);
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary: #FF0000;
    --secondary: #FFD700;
    --text: #000000;
  }

  .btn-primary,
  .btn-secondary {
    border: 3px solid currentColor;
  }
}