/* EventWave Studio - Neo-Brutalism Corporate Design System */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* ===================================
   CSS VARIABLES - Neo-Brutalism Design System
   =================================== */
:root {
  /* Primary Colors - Complementary Scheme */
  --primary-teal: #2ec4b6;
  --primary-navy: #1d3557;
  --accent-coral: #ff6b6b;
  --accent-yellow: #ffd60a;
  
  /* Extended Palette */
  --teal-light: #cbf3f0;
  --teal-medium: #5dd9c1;
  --teal-dark: #1a9b8e;
  --navy-light: #457b9d;
  --navy-dark: #0d1b2a;
  --coral-light: #ff9999;
  --coral-dark: #e63946;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #e9ecef;
  --gray-200: #dee2e6;
  --gray-300: #ced4da;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --black: #000000;
  
  /* Shadows - Neo-Brutalism Style */
  --shadow-brutal-sm: 4px 4px 0px var(--black);
  --shadow-brutal-md: 6px 6px 0px var(--black);
  --shadow-brutal-lg: 8px 8px 0px var(--black);
  --shadow-brutal-xl: 12px 12px 0px var(--black);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.25);
  
  /* Border Widths - Bold Neo-Brutalism */
  --border-thin: 2px;
  --border-medium: 4px;
  --border-thick: 6px;
  --border-extra-thick: 8px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.875rem;
  --font-size-sm: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 3rem;
  --font-size-3xl: 4rem;
  
  /* Transitions - Elastic/Spring Animations */
  --transition-fast: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-medium: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-slow: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-elastic: 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
  position: relative;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--primary-navy);
  text-transform: none;
}

h1 {
  font-size: clamp(2.5rem, 6vw, var(--font-size-3xl));
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, var(--font-size-2xl));
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 4vw, var(--font-size-xl));
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
  color: var(--gray-700);
  font-weight: 400;
}

strong, b {
  font-weight: 700;
  color: var(--primary-navy);
}

em, i {
  font-style: italic;
}

/* ===================================
   LINKS
   =================================== */
a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}

a:hover {
  color: var(--teal-dark);
}

a:focus {
  outline: var(--border-medium) solid var(--accent-coral);
  outline-offset: 4px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  color: var(--primary-teal);
  padding: var(--space-xs) var(--space-sm);
  border: var(--border-medium) solid var(--primary-teal);
  background: var(--white);
  border-radius: var(--radius-sm);
  transition: all var(--transition-medium);
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  letter-spacing: 0.05em;
}

.read-more:hover {
  background: var(--primary-teal);
  color: var(--white);
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-brutal-sm);
}

.read-more::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* ===================================
   BUTTONS - GLOBAL STYLES
   =================================== */
.btn,
button[type="submit"],
input[type="submit"],
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--primary-navy);
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  box-shadow: var(--shadow-brutal-md);
  white-space: nowrap;
  user-select: none;
}

.btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-brutal-lg);
}

.btn:active,
button[type="submit"]:active,
input[type="submit"]:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-brutal-sm);
}

.btn-primary {
  background: var(--primary-teal);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--accent-coral);
  color: var(--white);
  border-color: var(--black);
}

.btn-secondary:hover {
  background: var(--coral-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: var(--white);
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--font-size-lg);
}

.btn-small {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-xs);
}

.btn-block {
  width: 100%;
  display: flex;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: var(--white);
  border-bottom: var(--border-medium) solid var(--black);
  box-shadow: var(--shadow-brutal-md);
  transition: all var(--transition-medium);
}

header.scrolled {
  box-shadow: var(--shadow-brutal-lg);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.logo a {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--primary-navy);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.logo a:hover {
  color: var(--primary-teal);
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-xs) var(--space-sm);
  border: var(--border-thin) solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-teal);
  border-color: var(--primary-teal);
  background: var(--teal-light);
  transform: translateY(-2px);
}

#burger {
  display: none;
  background: none;
  border: var(--border-medium) solid var(--black);
  padding: var(--space-sm);
  cursor: pointer;
  font-size: var(--font-size-xl);
  color: var(--primary-navy);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

#burger:hover {
  background: var(--primary-teal);
  color: var(--white);
  transform: rotate(90deg);
}

#mobile-menu {
  background: var(--white);
  border-bottom: var(--border-medium) solid var(--black);
  box-shadow: var(--shadow-brutal-md);
}

#mobile-menu a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  color: var(--primary-navy);
  border-bottom: var(--border-thin) solid var(--gray-200);
  transition: all var(--transition-fast);
}

#mobile-menu a:hover {
  background: var(--teal-light);
  color: var(--primary-teal);
  padding-left: calc(var(--space-lg) + var(--space-sm));
}

/* ===================================
   HERO SECTION
   =================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-lg);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.85) 0%, rgba(46, 196, 182, 0.75) 100%);
  z-index: 1;
}

#hero > * {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--white) !important;
  margin-bottom: var(--space-lg);
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
  animation: heroTitleSlide 1s var(--transition-elastic) backwards;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white) !important;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
  animation: heroSubtitleSlide 1s var(--transition-elastic) 0.2s backwards;
}

.hero-content > p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white) !important;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: heroTextSlide 1s var(--transition-elastic) 0.4s backwards;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.7) 0%, rgba(46, 196, 182, 0.6) 100%);
  z-index: 1;
}

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

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

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

/* ===================================
   CARDS - UNIVERSAL STYLES
   =================================== */
.card,
.item,
.testimonial-card,
.team-member,
.product-card,
.workshop-card,
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  height: 100%;
}

.card:hover,
.item:hover,
.testimonial-card:hover,
.team-member:hover,
.product-card:hover,
.workshop-card:hover,
.service-card:hover {
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-brutal-xl);
}

.card-image,
.item-image,
.card-img,
.image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-bottom: var(--border-medium) solid var(--black);
  position: relative;
}

.card-image img,
.item-image img,
.card-img img,
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img,
.item:hover .item-image img,
.card:hover .card-img img,
.item:hover .image-container img {
  transform: scale(1.1) rotate(2deg);
}

.card-content,
.item-content,
.content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-content h3,
.item-content h3,
.content h3 {
  color: var(--primary-navy);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-xl);
}

.card-content p,
.item-content p,
.content p {
  color: var(--gray-700);
  line-height: 1.8;
  flex-grow: 1;
}

/* ===================================
   SECTIONS - GENERAL STYLES
   =================================== */
section {
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
}

section h2 {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: var(--primary-teal);
  border-radius: var(--radius-full);
}

section > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: var(--font-size-md);
  color: var(--gray-700);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Background Variations */
.bg-white {
  background: var(--white);
}

.bg-gradient-teal {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
}

.bg-gradient-navy {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--white) 100%);
}

.bg-pattern {
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(46, 196, 182, 0.05) 10px, rgba(46, 196, 182, 0.05) 20px);
}

/* ===================================
   SERVICES SECTION
   =================================== */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

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

.service-card .card-image {
  height: 250px;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-teal);
  color: var(--white);
  font-size: 2.5rem;
  border-radius: var(--radius-full);
  border: var(--border-medium) solid var(--black);
  box-shadow: var(--shadow-brutal-sm);
}

/* ===================================
   WORKSHOPS SECTION
   =================================== */
#workshops {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.workshop-card .card-image {
  height: 280px;
}

/* ===================================
   INSTRUCTORS / TEAM SECTION
   =================================== */
#team,
#instructors {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

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

.team-member .card-image {
  height: 350px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.team-member h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-lg);
}

.team-role {
  display: block;
  color: var(--primary-teal);
  font-weight: 700;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   SUCCESS STORIES / TESTIMONIALS
   =================================== */
#success,
#testimonials {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--white) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  padding: var(--space-xl);
  background: var(--white);
  border-left: var(--border-extra-thick) solid var(--primary-teal);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: var(--space-lg);
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--teal-light);
  line-height: 1;
}

.testimonial-content p {
  font-size: var(--font-size-md);
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: var(--border-thin) solid var(--gray-200);
}

.testimonial-author h4 {
  margin: 0;
  font-size: var(--font-size-md);
  color: var(--primary-navy);
}

.testimonial-author p {
  margin: 0;
  font-size: var(--font-size-xs);
  color: var(--primary-teal);
  font-weight: 600;
}

/* ===================================
   AWARDS SECTION
   =================================== */
#awards {
  background: var(--white);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.award-item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal-sm);
  transition: all var(--transition-medium);
}

.award-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-brutal-md);
  border-color: var(--accent-coral);
}

.award-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-yellow);
  border-radius: var(--radius-full);
  border: var(--border-medium) solid var(--black);
  box-shadow: var(--shadow-brutal-sm);
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-md);
}

.award-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--primary-navy);
}

.award-item p {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  margin: 0;
}

/* ===================================
   TIMELINE / PROCESS SECTION
   =================================== */
#process {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
}

.timeline-container {
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: var(--border-medium);
  background: var(--primary-teal);
}

.timeline-item {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.timeline-number {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--white);
  background: var(--primary-teal);
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-brutal-md);
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: var(--space-lg);
  background: var(--white);
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal-sm);
  transition: all var(--transition-medium);
}

.timeline-content:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-brutal-md);
}

.timeline-content h3 {
  color: var(--primary-navy);
  margin-bottom: var(--space-sm);
}

.timeline-content p {
  color: var(--gray-700);
  margin: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */
#contact {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
  color: var(--white);
}

#contact h2,
#contact h3,
#contact p {
  color: var(--white);
}

#contact h2::after {
  background: var(--accent-coral);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.contact-form-container {
  background: var(--white);
  padding: var(--space-xl);
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal-lg);
}

.contact-info {
  padding: var(--space-xl);
}

.contact-info-item {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border: var(--border-thin) solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.contact-info-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--accent-yellow);
}

.contact-info-item p {
  margin: 0;
  font-size: var(--font-size-md);
  line-height: 1.8;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 700;
  color: var(--primary-navy);
  font-size: var(--font-size-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  color: var(--gray-800);
  background: var(--white);
  border: var(--border-medium) solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.2);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  border-top: var(--border-extra-thick) solid var(--primary-teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

footer h3,
footer h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

footer p,
footer a {
  color: var(--gray-300);
  font-size: var(--font-size-sm);
}

footer a {
  display: block;
  padding: var(--space-xs) 0;
  transition: all var(--transition-fast);
}

footer a:hover {
  color: var(--primary-teal);
  padding-left: var(--space-sm);
}

footer ul {
  list-style: none;
}

.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-teal);
  color: var(--white);
  border: var(--border-medium) solid var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--font-size-md);
  transition: all var(--transition-medium);
  padding: 0;
  text-transform: uppercase;
}

.social-links a:hover {
  background: var(--accent-coral);
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0px var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: var(--border-thin) solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
  color: var(--gray-400);
}

/* ===================================
   SUCCESS PAGE
   =================================== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
}

.success-content {
  text-align: center;
  max-width: 700px;
  padding: var(--space-3xl);
  background: var(--white);
  border: var(--border-thick) solid var(--black);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-brutal-xl);
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-teal);
  border-radius: var(--radius-full);
  border: var(--border-thick) solid var(--black);
  box-shadow: var(--shadow-brutal-md);
  animation: successPulse 2s var(--transition-bounce) infinite;
}

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

.success-icon svg {
  width: 70%;
  height: 70%;
}

/* ===================================
   PRIVACY & TERMS PAGES
   =================================== */
.legal-page {
  padding-top: 120px;
  padding-bottom: var(--space-3xl);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--white);
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal-md);
}

.legal-content h1 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: var(--border-medium) solid var(--primary-teal);
}

.legal-content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  text-align: left;
}

.legal-content h2::after {
  display: none;
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

/* ===================================
   ACCORDION
   =================================== */
.accordion-container {
  background: var(--white);
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-brutal-sm);
}

.accordion-item {
  border-bottom: var(--border-thin) solid var(--gray-200);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  padding: var(--space-lg);
  background: var(--white);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

.accordion-header:hover {
  background: var(--teal-light);
}

.accordion-header.active {
  background: var(--primary-teal);
  color: var(--white);
}

.accordion-header h3 {
  margin: 0;
  font-size: var(--font-size-lg);
}

.accordion-header.active h3 {
  color: var(--white);
}

.accordion-icon {
  font-size: var(--font-size-2xl);
  font-weight: 900;
  transition: transform var(--transition-medium);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  background: var(--gray-100);
}

.accordion-content.active {
  max-height: 1000px;
}

.accordion-content p {
  padding: var(--space-lg);
  margin: 0;
  line-height: 1.8;
}

/* ===================================
   MODAL
   =================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border: var(--border-thick) solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-brutal-xl);
  padding: var(--space-2xl);
  animation: modalSlideIn var(--transition-elastic);
}

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

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-coral);
  color: var(--white);
  font-size: var(--font-size-xl);
  font-weight: 900;
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--coral-dark);
  transform: rotate(90deg);
}

/* ===================================
   COOKIE CONSENT
   =================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-modal);
  background: var(--primary-navy);
  color: var(--white);
  padding: var(--space-lg);
  border-top: var(--border-thick) solid var(--primary-teal);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
  animation: cookieSlideUp 0.5s var(--transition-elastic);
}

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

.cookie-consent-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-consent p {
  flex: 1;
  margin: 0;
  color: var(--white);
  min-width: 250px;
}

#accept-cookies {
  background: var(--accent-coral);
  color: var(--white);
  border: var(--border-medium) solid var(--white);
  padding: var(--space-md) var(--space-xl);
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-medium);
  white-space: nowrap;
}

#accept-cookies:hover {
  background: var(--coral-dark);
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0px var(--white);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
  text-align: center;
}

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

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

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 0.6s var(--transition-elastic);
}

.slide-up {
  animation: slideUp 0.8s var(--transition-elastic);
}

.bounce-in {
  animation: bounceIn 1s var(--transition-bounce);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  :root {
    --space-3xl: 4rem;
  }
  
  .services-grid,
  .workshops-grid,
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-3xl: 2.5rem;
    --font-size-2xl: 2rem;
    --space-3xl: 3rem;
    --space-2xl: 2.5rem;
  }
  
  #burger {
    display: block;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.5rem !important;
  }
  
  .services-grid,
  .workshops-grid,
  .team-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-container::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: var(--font-size-lg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  #accept-cookies {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
  }
  
  section {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
  }
  
  .card-content,
  .item-content,
  .content {
    padding: var(--space-md);
  }
  
  .modal-content {
    padding: var(--space-lg);
  }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  header,
  footer,
  #burger,
  #mobile-menu,
  .btn,
  .cookie-consent {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  
  section {
    page-break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}

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

:focus-visible {
  outline: var(--border-medium) solid var(--accent-coral);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===================================
   LOADING STATES
   =================================== */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid var(--primary-teal);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===================================
   ABOUT PAGE
   =================================== */
.team-card {
  overflow: hidden;
  transition: all var(--transition-medium);
}

.team-card:hover {
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-brutal-lg);
}

.team-card .card-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.achievement-card {
  border: var(--border-medium) solid var(--black);
  transition: all var(--transition-medium);
}

.achievement-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-brutal-md);
}

.gallery-grid {
  display: grid;
  gap: var(--space-lg);
}

.gallery-item {
  overflow: hidden;
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-brutal-sm);
  transition: all var(--transition-medium);
}

.gallery-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-brutal-md);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ===================================
   CONTACTS PAGE
   =================================== */
.contact-form {
  display: flex;
  flex-direction: column;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: var(--border-medium) solid var(--black);
  box-shadow: var(--shadow-brutal-sm);
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-container {
  border: var(--border-medium) solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-brutal-md);
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 500px;
}