/* ===================================
   MILD WIND TECH - VIBRANT ENERGETIC DESIGN
   Comprehensive CSS Styles
   =================================== */

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

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

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

/* VIBRANT ENERGETIC COLOR PALETTE */
:root {
  --primary: #FF3366;
  --primary-dark: #CC0033;
  --primary-light: #FF6699;
  --secondary: #00CCFF;
  --secondary-dark: #0099CC;
  --accent: #FFCC00;
  --accent-dark: #FF9900;
  --dark: #1a1a1a;
  --gray: #333333;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --success: #00FF88;
  --energy: #FF00FF;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary);
}

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

p {
  font-size: 16px;
  margin-bottom: 16px;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

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

ul {
  list-style: none;
}

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

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

/* BUTTONS - VIBRANT & ENERGETIC */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 51, 102, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 3px solid var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 204, 255, 0.4);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 51, 102, 0.4);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}

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

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

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* HEADER */
header {
  background: linear-gradient(135deg, var(--dark), var(--gray));
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid var(--primary);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(255, 51, 102, 0.3));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

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

.main-nav a:hover {
  color: var(--accent);
  background: rgba(255, 204, 0, 0.1);
}

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: slide 20s linear infinite;
}

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

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

.hero h1 {
  color: var(--white);
  font-size: 56px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
  background: linear-gradient(135deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-subtitle {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  color: var(--white);
  font-weight: 700;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 16px;
}

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

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

section {
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* SERVICES GRID - FLEXBOX */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 51, 102, 0.3);
  border-color: var(--primary);
}

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

.service-card p {
  color: var(--gray);
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-dark);
  margin-top: 16px;
}

/* FEATURES GRID */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.feature {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  border-radius: 16px;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 12px 32px rgba(255, 204, 0, 0.3);
}

.feature h3 {
  color: var(--secondary);
  font-size: 20px;
  margin-bottom: 12px;
}

.feature p {
  color: var(--gray);
  font-size: 14px;
}

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

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

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  border-left: 6px solid var(--primary);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 51, 102, 0.3);
}

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

.testimonial-card .customer {
  color: var(--gray);
  font-weight: 700;
  font-style: normal;
  margin-bottom: 8px;
}

.rating {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 2px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
}

.cta-banner h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
}

/* CONTACT INFO */
.contact-info {
  background: var(--light-gray);
  padding: 60px 20px;
}

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

.contact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--accent);
}

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

.contact-item p {
  color: var(--gray);
}

/* CATEGORY CARDS */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.category-card {
  background: linear-gradient(135deg, var(--white), var(--light-gray));
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  border: 3px solid var(--secondary);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 204, 255, 0.3);
  border-color: var(--primary);
}

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

/* BRANDS GRID */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.brand-item {
  flex: 1 1 calc(20% - 24px);
  min-width: 150px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--gray);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.brand-item:hover {
  border-color: var(--accent);
  transform: scale(1.1);
  color: var(--primary);
}

/* SYSTEMS/PARTNERS GRID */
.systems-grid,
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.system-card,
.partner {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid var(--accent);
}

.system-card:hover,
.partner:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 12px 32px rgba(255, 204, 0, 0.3);
}

.system-card h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* STEPS/PHASES GRID */
.steps-grid,
.phases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.step,
.phase {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  padding: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.step::before,
.phase::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  border: 4px solid var(--white);
}

.step:hover,
.phase:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 16px 40px rgba(255, 51, 102, 0.4);
}

.step h3,
.phase h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 20px;
}

.step p,
.phase p {
  color: var(--white);
  font-size: 14px;
}

/* VALUES/BENEFITS GRID */
.values-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

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

.value:hover,
.benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 204, 0, 0.3);
}

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

.value p,
.benefit p {
  color: var(--gray);
}

/* STATS GRID */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 16px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: scale(1.1) rotate(3deg);
}

.stat h3 {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.milestone {
  flex: 1 1 calc(20% - 24px);
  min-width: 150px;
  padding: 24px;
  background: var(--accent);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-8px) scale(1.05);
}

.milestone h3 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 8px;
}

.milestone p {
  color: var(--gray);
  font-weight: 600;
}

/* CONTACT METHODS */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.method-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary);
  text-align: center;
}

.method-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.method-card .note {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 12px;
}

/* FORM STYLES */
.form-placeholder {
  max-width: 600px;
  margin: 40px auto;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--accent);
}

.form-placeholder input,
.form-placeholder textarea,
.form-placeholder select {
  width: 100%;
  padding: 12px 16px;
  margin-top: 8px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-placeholder input:focus,
.form-placeholder textarea:focus,
.form-placeholder select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.1);
}

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

.form-placeholder label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  cursor: pointer;
  color: var(--gray);
}

.form-placeholder input[type="checkbox"] {
  width: auto;
  margin-top: 0;
}

/* OPENING HOURS */
.hours-table {
  max-width: 500px;
  margin: 40px auto;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 2px solid var(--light-gray);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 700;
  color: var(--primary);
}

.hours-row span:last-child {
  color: var(--gray);
}

/* DEPARTMENTS */
.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.department {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-left: 6px solid var(--secondary);
}

.department h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* LEGAL CONTENT */
.legal-content {
  background: var(--white);
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--light-gray);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 8px;
}

.content-wrapper h3 {
  color: var(--secondary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-wrapper li {
  margin-bottom: 8px;
  color: var(--gray);
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, var(--success), var(--secondary));
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}

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

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

.confirmation {
  font-size: 18px;
  margin-top: 16px;
}

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

.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 6px solid var(--primary);
}

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

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--dark), var(--gray));
  color: var(--white);
  padding: 60px 20px 24px;
  border-top: 4px solid var(--accent);
}

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

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

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

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

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

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 24px;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark), var(--gray));
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 4px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.btn-accept-all {
  background: linear-gradient(135deg, var(--success), var(--secondary));
  color: var(--white);
}

.btn-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.3);
}

.btn-reject-all {
  background: var(--gray);
  color: var(--white);
}

.btn-reject-all:hover {
  background: var(--dark);
}

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

.btn-cookie-settings:hover {
  background: var(--accent);
  color: var(--dark);
}

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

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

.modal-content {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border: 4px solid var(--accent);
}

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

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

.cookie-category h3 {
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

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

.toggle-switch.active::before {
  transform: translateX(24px);
}

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

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

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

  .main-nav {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .page-hero h1 {
    font-size: 32px;
  }

  .service-card,
  .category-card,
  .testimonial-card {
    flex: 1 1 100%;
  }

  .feature,
  .value,
  .benefit,
  .brand-item,
  .system-card,
  .step,
  .phase,
  .stat,
  .milestone {
    flex: 1 1 100%;
  }

  .contact-item,
  .method-card,
  .department,
  .resource-card {
    flex: 1 1 100%;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .modal-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }

  .feature,
  .value,
  .system-card {
    flex: 1 1 calc(50% - 24px);
  }

  .step,
  .phase,
  .stat {
    flex: 1 1 calc(33.333% - 24px);
  }
}

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

.service-card,
.feature,
.testimonial-card,
.category-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
.btn:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }
}