/* ==========================================================================
   FIERCE WEALTH CATERING - VIBRANT ENERGETIC DESIGN STYLE
   Complete CSS Stylesheet - Flexbox Only Layout
   ========================================================================== */

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================================================
   VIBRANT ENERGETIC COLOR PALETTE
   ========================================================================== */

:root {
  --primary-electric: #FF1744;
  --primary-vibrant: #FF5252;
  --secondary-energy: #00E5FF;
  --secondary-bright: #18FFFF;
  --accent-gold: #FFD740;
  --accent-orange: #FF9100;
  --dark-contrast: #1a1a1a;
  --light-bg: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #757575;
  --success: #00E676;
  --shadow-vibrant: 0 8px 32px rgba(255, 23, 68, 0.2);
  --shadow-energy: 0 8px 32px rgba(0, 229, 255, 0.2);
  --shadow-gold: 0 8px 32px rgba(255, 215, 64, 0.3);
}

/* ==========================================================================
   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-contrast);
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--primary-electric), var(--secondary-energy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: var(--primary-electric);
  text-transform: uppercase;
  letter-spacing: 2px;
}

h3 {
  font-size: 24px;
  color: var(--dark-contrast);
  font-weight: 700;
}

h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 700;
  color: var(--primary-electric);
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */

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

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

/* ==========================================================================
   BUTTONS - VIBRANT & ENERGETIC
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-electric), var(--accent-orange));
  color: white;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-energy), var(--secondary-bright));
  color: var(--dark-contrast);
  border: 2px solid transparent;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
}

/* ==========================================================================
   HEADER - BOLD & ENERGETIC
   ========================================================================== */

header {
  background: linear-gradient(135deg, var(--dark-contrast) 0%, #2a2a2a 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid var(--primary-electric);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 23, 68, 0.5));
}

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

.main-nav a {
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  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-electric), var(--secondary-energy));
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: var(--secondary-energy);
}

/* ==========================================================================
   MOBILE MENU - VIBRANT SLIDE-IN
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--primary-electric), var(--accent-orange));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 23, 68, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 30px rgba(255, 23, 68, 0.7);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--dark-contrast) 0%, #2a2a2a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-electric);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--secondary-energy);
}

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: var(--secondary-energy);
  background: rgba(0, 229, 255, 0.1);
  transform: translateX(10px);
}

/* ==========================================================================
   HERO SECTION - ELECTRIC ENERGY
   ========================================================================== */

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: movePattern 20s linear infinite;
}

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

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

.hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-badge {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* ==========================================================================
   VALUES SECTION - DYNAMIC LAYOUT
   ========================================================================== */

.values {
  background: var(--gray-light);
  padding: 80px 20px;
}

.values h2 {
  text-align: center;
  margin-bottom: 60px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-item {
  flex: 1 1 300px;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.value-item:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--primary-electric);
  box-shadow: var(--shadow-vibrant);
}

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

/* ==========================================================================
   SERVICES SECTION - ENERGETIC CARDS
   ========================================================================== */

.services {
  padding: 80px 20px;
  background: white;
}

.services h2 {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--gray-medium);
  margin-bottom: 48px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 320px;
  background: linear-gradient(135deg, white 0%, var(--gray-light) 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--secondary-energy);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-energy);
}

.service-card h3 {
  color: var(--primary-electric);
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-gold);
  margin-top: 16px;
  text-shadow: 0 2px 8px rgba(255, 215, 64, 0.3);
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================================================
   PROCESS TIMELINE - DYNAMIC FLOW
   ========================================================================== */

.process {
  background: linear-gradient(135deg, var(--gray-light) 0%, white 100%);
  padding: 80px 20px;
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
}

.process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.process-step {
  flex: 1 1 220px;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-electric), var(--accent-orange));
  color: white;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 900;
  line-height: 80px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

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

.process-step h3 {
  color: var(--dark-contrast);
  margin-bottom: 12px;
  font-size: 20px;
}

/* ==========================================================================
   TESTIMONIALS - VIBRANT CARDS
   ========================================================================== */

.testimonials {
  padding: 80px 20px;
  background: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  background: var(--gray-light);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-electric);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-vibrant);
  border-left-color: var(--secondary-energy);
}

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

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

.testimonial-card .position,
.testimonial-card .event {
  font-size: 14px;
  color: var(--gray-medium);
  font-style: normal;
  margin-bottom: 0;
}

/* ==========================================================================
   STATS SECTION - ELECTRIC NUMBERS
   ========================================================================== */

.stats {
  background: linear-gradient(135deg, var(--primary-electric) 0%, var(--accent-orange) 100%);
  padding: 80px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: white;
  display: block;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: countUp 1s ease-out;
}

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

.stat-label {
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* ==========================================================================
   CTA BANNER - BOLD ACTION
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--dark-contrast) 0%, #2a2a2a 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 5px solid var(--primary-electric);
  border-bottom: 5px solid var(--secondary-energy);
}

.cta-banner h2 {
  color: white;
  margin-bottom: 24px;
}

.cta-banner p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.contact-info {
  color: var(--secondary-energy);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ==========================================================================
   PAGE HERO - VIBRANT HEADER
   ========================================================================== */

.page-hero {
  background: linear-gradient(135deg, var(--primary-electric) 0%, var(--accent-orange) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
}

.page-hero-simple {
  background: linear-gradient(135deg, var(--secondary-energy) 0%, var(--secondary-bright) 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: white;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: white;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.page-hero h1,
.page-hero-simple h1 {
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.page-hero p,
.page-hero-simple p {
  color: white;
  font-size: 18px;
}

/* ==========================================================================
   SERVICES DETAILED - CONTENT LAYOUT
   ========================================================================== */

.services-detailed {
  padding: 80px 20px;
}

.intro-text {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--gray-medium);
}

.service-detail {
  background: var(--gray-light);
  padding: 40px 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-electric);
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-vibrant);
  border-left-color: var(--secondary-energy);
}

.service-detail h2 {
  color: var(--primary-electric);
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.feature-list li {
  padding-left: 32px;
  position: relative;
  color: #333;
}

.feature-list li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 20px;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-gold);
  margin: 24px 0 8px;
  text-shadow: 0 2px 8px rgba(255, 215, 64, 0.3);
}

.min-guests {
  color: var(--gray-medium);
  font-size: 14px;
  font-weight: 600;
}

/* ==========================================================================
   ADDITIONAL SERVICES - GRID LAYOUT
   ========================================================================== */

.additional-services {
  background: var(--gray-light);
  padding: 80px 20px;
}

.additional-services h2 {
  text-align: center;
  margin-bottom: 60px;
}

.additional-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.additional-item {
  flex: 1 1 280px;
  background: white;
  padding: 32px 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--secondary-energy);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.additional-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-energy);
}

.additional-item h3 {
  color: var(--primary-electric);
  font-size: 20px;
  margin-bottom: 8px;
}

/* ==========================================================================
   SERVICE AREAS
   ========================================================================== */

.service-areas {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.service-areas h2 {
  margin-bottom: 32px;
}

.service-areas p {
  max-width: 800px;
  margin: 0 auto 24px;
}

/* ==========================================================================
   CTA SECTION - ACTION FOCUS
   ========================================================================== */

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

.cta-section h2 {
  color: var(--dark-contrast);
  margin-bottom: 24px;
}

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

.contact-hours {
  color: var(--dark-contrast);
  font-weight: 700;
  margin-top: 24px;
}

/* ==========================================================================
   PRICING TABLES - DYNAMIC PACKAGES
   ========================================================================== */

.pricing-intro {
  padding: 60px 20px;
  text-align: center;
  background: var(--gray-light);
}

.pricing-intro h2 {
  margin-bottom: 24px;
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary-electric), var(--accent-orange));
  color: white;
  padding: 24px;
  border-radius: 15px;
  max-width: 800px;
  margin: 32px auto 0;
  box-shadow: var(--shadow-vibrant);
}

.pricing-tables {
  padding: 80px 20px;
}

.pricing-category {
  margin-bottom: 80px;
}

.pricing-category h2 {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-category > p {
  text-align: center;
  color: var(--gray-medium);
  font-size: 18px;
  margin-bottom: 48px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.pricing-package {
  flex: 1 1 320px;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--secondary-energy);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-package:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.pricing-package h3 {
  color: var(--primary-electric);
  text-align: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.package-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(255, 215, 64, 0.3);
}

.package-price::after {
  content: ' / Person';
  font-size: 16px;
  color: var(--gray-medium);
  font-weight: 600;
}

.pricing-package ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-package li {
  padding-left: 28px;
  position: relative;
  color: #333;
}

.pricing-package li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
  font-size: 18px;
}

/* ==========================================================================
   OPTIONAL SERVICES LIST
   ========================================================================== */

.optional-services {
  background: var(--gray-light);
  padding: 60px 20px;
}

.optional-services h2 {
  text-align: center;
  margin-bottom: 40px;
}

.optional-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.optional-list li {
  background: white;
  padding: 20px 24px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-electric);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.optional-list li:hover {
  transform: translateX(10px);
  border-left-color: var(--secondary-energy);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.note {
  text-align: center;
  font-style: italic;
  color: var(--gray-medium);
  margin-top: 32px;
}

/* ==========================================================================
   COMPANY STORY & TIMELINE
   ========================================================================== */

.company-story {
  padding: 80px 20px;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 40px;
}

.company-story p {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}

.milestone-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
}

.milestone {
  flex: 1 1 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.milestone .year {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent-gold);
  display: block;
  text-shadow: 0 2px 8px rgba(255, 215, 64, 0.3);
}

/* ==========================================================================
   VALUES GRID - ENERGETIC CARDS
   ========================================================================== */

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

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */

.team {
  background: var(--gray-light);
  padding: 80px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 24px;
}

.team > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.team-member {
  flex: 1 1 320px;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--secondary-energy);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-energy);
}

.team-member h3 {
  color: var(--primary-electric);
  margin-bottom: 8px;
}

.team-member .position {
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-size: 14px;
}

/* ==========================================================================
   CERTIFICATIONS
   ========================================================================== */

.certifications {
  padding: 80px 20px;
  text-align: center;
}

.certifications h2 {
  margin-bottom: 48px;
}

.cert-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cert-list li {
  background: linear-gradient(135deg, var(--primary-electric), var(--accent-orange));
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(255, 23, 68, 0.3);
  transition: all 0.3s ease;
}

.cert-list li:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.5);
}

.address {
  font-weight: 700;
  color: var(--gray-medium);
  margin-top: 24px;
}

/* ==========================================================================
   GALLERY SECTIONS
   ========================================================================== */

.gallery-intro {
  padding: 60px 20px;
  text-align: center;
  background: var(--gray-light);
}

.gallery-intro h2 {
  margin-bottom: 24px;
}

.gallery-intro p {
  max-width: 800px;
  margin: 0 auto;
}

.event-showcase {
  padding: 80px 20px;
}

.showcase-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--secondary-energy);
  transition: all 0.3s ease;
}

.showcase-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-energy);
  border-left-color: var(--accent-gold);
}

.showcase-item h3 {
  color: var(--primary-electric);
  margin-bottom: 16px;
}

.showcase-item .details {
  color: var(--gray-medium);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ==========================================================================
   BEHIND THE SCENES
   ========================================================================== */

.behind-scenes {
  background: var(--gray-light);
  padding: 80px 20px;
}

.behind-scenes h2 {
  text-align: center;
  margin-bottom: 24px;
}

.behind-scenes > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.bts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.bts-item {
  flex: 1 1 300px;
  background: white;
  padding: 32px 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-electric);
  transition: all 0.3s ease;
}

.bts-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--secondary-energy);
  box-shadow: var(--shadow-vibrant);
}

.bts-item h3 {
  color: var(--primary-electric);
  margin-bottom: 16px;
}

/* ==========================================================================
   CONTACT PAGE SECTIONS
   ========================================================================== */

.contact-intro {
  padding: 60px 20px;
  text-align: center;
  background: var(--gray-light);
}

.contact-intro h2 {
  margin-bottom: 24px;
}

.contact-intro p {
  max-width: 800px;
  margin: 0 auto 16px;
}

.contact-form-section {
  padding: 80px 20px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.form-note {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  background: var(--gray-light);
  padding: 40px 30px;
  border-radius: 20px;
  border: 3px solid var(--secondary-energy);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-placeholder p {
  margin-bottom: 12px;
}

/* ==========================================================================
   CONTACT INFORMATION
   ========================================================================== */

.contact-information {
  background: var(--gray-light);
  padding: 80px 20px;
}

.contact-information h2 {
  text-align: center;
  margin-bottom: 48px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.info-item {
  flex: 1 1 280px;
  background: white;
  padding: 32px 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-electric);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-vibrant);
}

.info-item h3 {
  color: var(--primary-electric);
  margin-bottom: 16px;
}

/* ==========================================================================
   MAP SECTION
   ========================================================================== */

.map-section {
  padding: 80px 20px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.map-placeholder {
  background: var(--gray-light);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 32px;
  border: 3px solid var(--secondary-energy);
}

.directions {
  max-width: 800px;
  margin: 0 auto;
}

.directions h3 {
  color: var(--primary-electric);
  margin-bottom: 24px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-contact {
  background: var(--gray-light);
  padding: 80px 20px;
}

.faq-contact h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  background: white;
  padding: 32px 24px;
  border-radius: 15px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-electric);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-vibrant);
  border-left-color: var(--secondary-energy);
}

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

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */

.trust-section {
  padding: 60px 20px;
  text-align: center;
  background: white;
}

.trust-section h3 {
  color: var(--primary-electric);
  margin-bottom: 24px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.trust-list li {
  background: linear-gradient(135deg, var(--secondary-energy), var(--secondary-bright));
  color: var(--dark-contrast);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

/* ==========================================================================
   LEGAL CONTENT PAGES
   ========================================================================== */

.legal-content {
  padding: 60px 20px;
  background: white;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
}

.text-section h2 {
  color: var(--primary-electric);
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 28px;
}

.text-section h3 {
  color: var(--dark-contrast);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
}

.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.text-section li {
  padding-left: 32px;
  position: relative;
  color: #333;
}

.text-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-electric);
  font-weight: 900;
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.thank-you-hero {
  background: linear-gradient(135deg, var(--primary-electric) 0%, var(--accent-orange) 50%, var(--secondary-energy) 100%);
  padding: 120px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  color: var(--success);
  border-radius: 50%;
  font-size: 60px;
  line-height: 100px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  animation: successPulse 1s ease-in-out;
}

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

.thank-you-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 24px;
}

.thank-you-hero p {
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
}

.confirmation {
  font-size: 16px !important;
  font-weight: 600;
  color: var(--accent-gold) !important;
}

.next-steps {
  padding: 80px 20px;
  background: var(--gray-light);
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step-item {
  flex: 1 1 240px;
  background: white;
  padding: 32px 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--secondary-energy);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-energy);
}

.step-item h3 {
  color: var(--primary-electric);
  margin-bottom: 12px;
  font-size: 18px;
}

/* ==========================================================================
   WHILE WAITING SECTION
   ========================================================================== */

.while-waiting {
  padding: 80px 20px;
}

.while-waiting h2 {
  text-align: center;
  margin-bottom: 48px;
}

.suggestion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.suggestion-item {
  flex: 1 1 300px;
  background: var(--gray-light);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-electric);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.suggestion-item:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--secondary-energy);
  box-shadow: var(--shadow-vibrant);
}

.suggestion-item h3 {
  color: var(--primary-electric);
  margin-bottom: 8px;
}

.trust-stats {
  background: linear-gradient(135deg, var(--dark-contrast) 0%, #2a2a2a 100%);
  padding: 80px 20px;
  text-align: center;
}

.trust-stats h3 {
  color: white;
  margin-bottom: 48px;
}

/* ==========================================================================
   FOOTER - BOLD & ORGANIZED
   ========================================================================== */

footer {
  background: linear-gradient(135deg, var(--dark-contrast) 0%, #2a2a2a 100%);
  color: white;
  padding: 60px 20px 20px;
  border-top: 5px solid var(--primary-electric);
}

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

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

.footer-column h4 {
  color: var(--secondary-energy);
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
}

.footer-nav a:hover {
  color: var(--secondary-energy);
  border-left-color: var(--secondary-energy);
  padding-left: 20px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ==========================================================================
   COOKIE CONSENT BANNER - VIBRANT & CLEAR
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-contrast) 0%, #2a2a2a 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--primary-electric);
}

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

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

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

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

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

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

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--success), #00C853);
  color: white;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 230, 118, 0.4);
}

.cookie-btn.reject {
  background: linear-gradient(135deg, var(--primary-electric), var(--accent-orange));
  color: white;
}

.cookie-btn.reject:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 23, 68, 0.4);
}

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

.cookie-btn.settings:hover {
  background: var(--secondary-energy);
  color: var(--dark-contrast);
  transform: translateY(-2px) scale(1.05);
}

/* ==========================================================================
   COOKIE PREFERENCES MODAL
   ========================================================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: white;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--secondary-energy);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.modal-header h3 {
  color: var(--primary-electric);
  margin-bottom: 0;
}

.modal-close {
  background: var(--primary-electric);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--secondary-energy);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--gray-light);
  border-radius: 10px;
  border-left: 4px solid var(--secondary-energy);
}

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

.category-header h4 {
  color: var(--dark-contrast);
  margin-bottom: 0;
  font-size: 16px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--gray-medium);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--success);
}

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

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.toggle-switch.active::after {
  left: 27px;
}

.category-description {
  font-size: 14px;
  color: var(--gray-medium);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================================================== */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop navigation, show mobile menu button */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  
  /* Hero adjustments */
  .hero { padding: 80px 20px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  
  /* Button adjustments */
  .btn { width: 100%; padding: 14px 32px; }
  
  /* Section padding */
  .section { padding: 40px 20px; }
  
  /* Grid layouts become single column */
  .value-grid,
  .service-grid,
  .process-timeline,
  .testimonial-grid,
  .stats-grid,
  .additional-grid,
  .team-grid,
  .info-grid,
  .steps-grid,
  .suggestion-grid {
    flex-direction: column;
  }
  
  /* Full width cards on mobile */
  .value-item,
  .service-card,
  .process-step,
  .testimonial-card,
  .stat-item,
  .additional-item,
  .team-member,
  .info-item,
  .step-item,
  .suggestion-item,
  .pricing-package {
    flex: 1 1 100%;
  }
  
  /* Footer stacks vertically */
  .footer-content { flex-direction: column; }
  
  /* Cookie banner stacks */
  .cookie-content { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; }
  
  /* Modal full screen on mobile */
  .modal-content { padding: 24px 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container { padding: 0 40px; }
  
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .hero h1 { font-size: 48px; }
  
  /* 2 columns for cards on tablet */
  .value-item,
  .service-card,
  .additional-item,
  .team-member,
  .pricing-package {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

@keyframes slideInFromLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

.mb-small { margin-bottom: 16px; }
.mb-medium { margin-bottom: 32px; }
.mb-large { margin-bottom: 48px; }

.mt-small { margin-top: 16px; }
.mt-medium { margin-top: 32px; }
.mt-large { margin-top: 48px; }

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

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

:focus-visible {
  outline: 3px solid var(--secondary-energy);
  outline-offset: 2px;
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */