/* ===========================
   FLICKERING GEAR - VIBRANT ENERGETIC DESIGN
   CSS RESET & BASE STYLES
   =========================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffffff 0%, #fff5e6 100%);
  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-position: inside;
}

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

:root {
  --primary: #FF6B35;
  --primary-dark: #E85A2B;
  --secondary: #FFD23F;
  --secondary-dark: #E8C038;
  --accent: #00D9FF;
  --accent-dark: #00C2E6;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --bg-light: #FFFFFF;
  --bg-cream: #FFF8E7;
  --bg-gradient: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
  --shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
  --shadow-hover: 0 12px 32px rgba(255, 107, 53, 0.25);
}

/* ===========================
   TYPOGRAPHY - VIBRANT & ENERGETIC
   =========================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s ease-in-out infinite;
}

h2 {
  font-size: 32px;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: var(--primary-dark);
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 16px;
}

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

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===========================
   HEADER - ENERGETIC DESIGN
   =========================== */

header {
  background: var(--bg-light);
  padding: 16px 0;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--secondary);
}

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

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--secondary);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.main-nav a:hover::before {
  width: 80%;
}

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

.mobile-menu-toggle {
  display: none;
  background: var(--bg-gradient);
  color: white;
  border: none;
  font-size: 32px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 1001;
  font-weight: bold;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: var(--shadow-hover);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  font-size: 32px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(8px);
  border-left-width: 8px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===========================
   BUTTONS - ELECTRIC & DYNAMIC
   =========================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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.5s ease, height 0.5s ease;
  z-index: -1;
}

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

.btn-primary {
  background: var(--bg-gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.cta-buttons {
  display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    margin: 24px 0;
    justify-content: center;
}

/* ===========================
   HERO SECTION - EXPLOSIVE ENERGY
   =========================== */

.hero {
  background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 50%, #00D9FF 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, 30px) rotate(180deg); }
}

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

.hero h1 {
  font-size: 56px;
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  -webkit-text-fill-color: white;
}

.hero-subheadline {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.trust-badge {
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ===========================
   HERO SECONDARY - VIBRANT PAGES
   =========================== */

.hero-secondary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.hero-secondary h1 {
  color: white;
  -webkit-text-fill-color: white;
  font-size: 48px;
  position: relative;
  z-index: 1;
}

.hero-secondary p {
  color: white;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.breadcrumbs a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
}

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

/* ===========================
   CARD LAYOUTS - FLEXBOX ONLY
   =========================== */

.card-container,
.services-grid,
.projects-grid,
.testimonials-grid,
.articles-grid,
.categories-grid,
.methods-grid,
.stats-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.service-card,
.project-card,
.testimonial-card,
.article-card,
.category,
.method,
.stat,
.team-member {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
}

.service-card:hover,
.project-card:hover,
.article-card:hover,
.category:hover,
.method:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

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

.price {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

/* ===========================
   TESTIMONIALS - HIGH CONTRAST
   =========================== */

.testimonial-card {
  background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
  padding: 32px;
  border-left: 6px solid var(--secondary);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

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

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

.rating {
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
  margin-top: 24px;
}

/* ===========================
   PROCESS STEPS - DYNAMIC LAYOUT
   =========================== */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.1);
  position: relative;
  border-top: 6px solid var(--primary);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-top-width: 10px;
}

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

/* ===========================
   LISTS - VIBRANT STYLING
   =========================== */

.problem-list,
.benefits-list,
.tips-list,
.topics-list,
.values-list,
.trust-list,
.actions-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.problem-list li,
.benefits-list li,
.tips-list li,
.topics-list li,
.values-list li,
.trust-list li,
.actions-list li {
  padding: 16px 20px 16px 60px;
  margin-bottom: 12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.08);
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary);
}

.problem-list li:hover,
.benefits-list li:hover,
.tips-list li:hover,
.topics-list li:hover,
.values-list li:hover,
.trust-list li:hover,
.actions-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.15);
  border-left-width: 8px;
}

.problem-list li::before,
.benefits-list li::before,
.tips-list li::before,
.topics-list li::before,
.values-list li::before,
.trust-list li::before {
  content: '⚡';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary);
}

.actions-list li {
  font-size: 18px;
}

.actions-list li a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.actions-list li a:hover {
  color: var(--secondary);
}

/* ===========================
   SECTIONS STYLING
   =========================== */

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 600;
}

.problem-solution,
.services-preview,
.process,
.benefits,
.testimonials,
.cta-final {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
}

.problem-solution {
  background: linear-gradient(135deg, #FFF8E7 0%, white 100%);
}

.cta-final {
  background: var(--bg-gradient);
  color: white;
}

.cta-final h2 {
  color: white;
}

.cta-final h2::after {
  background: white;
}

.cta-final p {
  color: white;
  font-size: 18px;
}

.guarantee {
  margin-top: 24px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   SERVICE DETAILED - ENERGETIC BOXES
   =========================== */

.service-box {
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
  margin-bottom: 40px;
  border: 4px solid var(--secondary);
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.25);
}

.service-box h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.tagline {
  font-size: 20px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 600;
}

.service-box ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-box ul li {
  margin-bottom: 12px;
  padding-left: 8px;
  color: var(--text-dark);
}

/* ===========================
   PORTFOLIO & CASE STUDIES
   =========================== */

.case-study {
  background: white;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
  margin-bottom: 40px;
}

.case-study h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.case-study ul {
  margin: 16px 0;
  padding-left: 24px;
}

.case-study blockquote {
  background: var(--bg-cream);
  padding: 24px 32px;
  border-left: 6px solid var(--secondary);
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--text-dark);
  border-radius: 8px;
}

/* ===========================
   STATISTICS - BOLD NUMBERS
   =========================== */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.1);
  border-top: 6px solid var(--primary);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.stat strong {
  display: block;
  font-size: 48px;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat p {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

/* ===========================
   CONTACT PAGE - ENERGETIC INFO
   =========================== */

.contact-methods,
.contact-info,
.studio-visit,
.service-areas {
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
  margin-bottom: 40px;
}

.info-box {
  background: var(--bg-cream);
  padding: 32px;
  border-radius: 16px;
  border-left: 6px solid var(--secondary);
  margin: 24px 0;
}

.info-box p {
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 16px;
}

/* ===========================
   FAQ - ACCORDION STYLE
   =========================== */

.faq-item {
  background: white;
  padding: 24px 32px;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.08);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
  border-left-width: 8px;
}

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

.faq-item p {
  color: var(--text-dark);
  margin: 0;
}

/* ===========================
   MILESTONES - TIMELINE
   =========================== */

.milestones {
  margin: 40px 0;
  padding: 32px;
  background: var(--bg-cream);
  border-radius: 16px;
}

.milestone {
  padding: 16px 24px;
  margin-bottom: 16px;
  background: white;
  border-radius: 8px;
  border-left: 6px solid var(--secondary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateX(8px);
  border-left-width: 10px;
}

.milestone strong {
  color: var(--primary);
  font-size: 18px;
}

/* ===========================
   THANK YOU PAGE - CELEBRATION
   =========================== */

.thank-you-hero {
  background: var(--bg-gradient);
  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  color: var(--primary);
  font-size: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

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

.subheadline {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.steps-list {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
  padding-left: 24px;
}

.steps-list li {
  margin-bottom: 16px;
  padding: 16px;
  background: var(--bg-cream);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.note {
  font-style: italic;
  color: var(--text-light);
  margin-top: 24px;
}

/* ===========================
   LEGAL PAGES - CLEAN LAYOUT
   =========================== */

.legal-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.legal-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
}

.last-updated {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
}

.legal-content {
  background: white;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
  margin: -40px auto 40px;
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 32px;
}

.legal-content ul li {
  margin-bottom: 12px;
  color: var(--text-dark);
}

/* ===========================
   FOOTER - VIBRANT & ORGANIZED
   =========================== */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 20px 24px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-section h3 {
  color: var(--secondary);
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
}

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

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

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--secondary);
  transform: translateX(8px);
}

.footer-nav a:hover::before {
  opacity: 1;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-banner p {
  color: white;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background: white;
  color: var(--primary);
}

.cookie-accept:hover {
  background: var(--secondary);
  color: white;
  transform: scale(1.05);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.cookie-reject:hover {
  background: white;
  color: var(--primary);
}

.cookie-settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

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

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: white;
  padding: 48px;
  border-radius: 24px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px;
  background: var(--bg-cream);
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid var(--secondary);
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
}

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

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

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

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 42px; }
  .hero-secondary h1 { font-size: 36px; }
  
  .container { padding: 0 16px; }
  
  .service-card,
  .project-card,
  .testimonial-card,
  .article-card,
  .category,
  .method,
  .stat,
  .team-member,
  .step {
    flex: 1 1 100%;
    min-width: auto;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .service-box,
  .case-study,
  .legal-content {
    padding: 32px 24px;
  }
  
  .stat strong { font-size: 36px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
}

/* ===========================
   PRINT STYLES
   =========================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons,
  header,
  footer { display: none; }
  
  body { background: white; }
  
  .container { max-width: 100%; }
}