/* ============================================
   BLOOMING VISTA - VIBRANT ENERGETIC DESIGN
   Complete CSS Styles for All Pages
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #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-position: inside;
}

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

/* ============================================
   VIBRANT ENERGETIC COLOR PALETTE
   ============================================ */
:root {
  --primary: #FF1744;
  --primary-dark: #D50032;
  --primary-light: #FF5177;
  --secondary: #00E5FF;
  --secondary-dark: #00B8CC;
  --secondary-light: #6EFFFF;
  --accent: #FFEA00;
  --accent-dark: #C7B800;
  --accent-light: #FFFF56;
  --electric-purple: #D500F9;
  --electric-green: #00E676;
  --electric-orange: #FF6D00;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #FAFAFA;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(255, 23, 68, 0.15);
  --shadow-md: 0 4px 16px rgba(255, 23, 68, 0.2);
  --shadow-lg: 0 8px 32px rgba(255, 23, 68, 0.25);
}

/* ============================================
   TYPOGRAPHY - BOLD & DYNAMIC
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

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

.lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

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

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ============================================
   BUTTONS - VIBRANT & ENERGETIC
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  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.6s ease, height 0.6s ease;
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--electric-purple));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
  transform: translateY(0);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 23, 68, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--electric-green));
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 229, 255, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 3px solid var(--primary);
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 23, 68, 0.4);
}

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--electric-purple));
  color: var(--white);
  font-size: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary), var(--electric-purple));
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  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: 8px;
}

.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

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

/* ============================================
   HEADER - BOLD & ENERGETIC
   ============================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(255, 23, 68, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 0;
  border-bottom: 3px solid var(--primary);
}

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

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

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--electric-purple));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
  background: rgba(255, 23, 68, 0.05);
}

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

.header-cta {
  display: flex;
}

/* ============================================
   HERO SECTION - EXPLOSIVE ENERGY
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 50%, var(--secondary) 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

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

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

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

.hero-subtitle {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 0.95;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

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

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

.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 25px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* ============================================
   SECTIONS - DYNAMIC LAYOUTS
   ============================================ */
section {
  margin-bottom: 80px;
  padding: 60px 20px;
}

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

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--electric-purple));
  border-radius: 2px;
}

/* ============================================
   FEATURES GRID - ENERGETIC CARDS
   ============================================ */
.features {
  background: var(--bg-light);
  position: relative;
}

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

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 23, 68, 0.3);
  border-color: var(--primary);
}

.feature-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 8px rgba(255, 23, 68, 0.3));
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   SERVICES GRID - VIBRANT CARDS
   ============================================ */
.services-overview {
  background: var(--white);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 50px;
}

.service-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 320px;
  max-width: 360px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 23, 68, 0.25);
  border-color: var(--primary);
}

.service-card h3 {
  color: var(--text-dark);
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  flex: 1;
}

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

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

/* ============================================
   STATS SECTION - HIGH ENERGY
   ============================================ */
.stats {
  background: linear-gradient(135deg, var(--primary), var(--electric-purple));
  position: relative;
  overflow: hidden;
}

.stats::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;
}

.stats h2 {
  color: var(--white);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

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

.stat-card:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-card h3 {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

/* ============================================
   TESTIMONIALS - READABLE & VIBRANT
   ============================================ */
.testimonials {
  background: var(--bg-light);
}

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

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(255, 23, 68, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 23, 68, 0.2);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-info strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.client-info span {
  font-size: 14px;
  color: var(--text-light);
}

.rating {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(255, 234, 0, 0.3);
}

/* ============================================
   CTA SECTION - EXPLOSIVE
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--electric-green) 100%);
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

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

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

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--text-dark);
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 32px;
  font-weight: 600;
}

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

/* ============================================
   PAGE HERO - INTERNAL PAGES
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--electric-purple));
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="25" fill="rgba(255,255,255,0.03)"/></svg>');
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.page-hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.services-detailed {
  background: var(--bg-light);
}

.service-detail {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--primary);
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--bg-light);
}

.service-header h2 {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--electric-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-body h3 {
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 16px;
}

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

.service-body ul li {
  padding: 12px 0 12px 40px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.service-body ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 20px;
  color: var(--primary);
}

/* ============================================
   PROCESS STEPS - DYNAMIC FLOW
   ============================================ */
.service-process {
  background: var(--white);
}

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

.process-step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-light);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--electric-purple));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
}

.process-step h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-light);
  font-size: 15px;
}

/* ============================================
   SOLUTIONS GRID
   ============================================ */
.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.solution-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 23, 68, 0.03) 100%);
  transform: scale(1.05);
}

.solution-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.solution-card h3 {
  color: var(--text-dark);
  font-size: 24px;
}

.solution-card ul {
  margin: 16px 0;
  padding-left: 0;
}

.solution-card ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--text-light);
}

.solution-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--electric-green);
  font-weight: 700;
  font-size: 18px;
}

.price-from {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

/* ============================================
   INDUSTRY CARDS
   ============================================ */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.industry-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid transparent;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.industry-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 229, 255, 0.3));
}

.industry-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 20px;
}

.industry-card p {
  color: var(--text-light);
  font-size: 15px;
}

/* ============================================
   CASE STUDIES
   ============================================ */
.case-study {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--accent);
  transition: all 0.3s ease;
}

.case-study:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.case-study h3 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.case-study p {
  margin-bottom: 12px;
  color: var(--text-light);
}

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

/* ============================================
   ABOUT PAGE SECTIONS
   ============================================ */
.about-intro {
  background: var(--white);
}

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

.highlight-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 3px solid var(--bg-light);
}

.highlight-numbers > div {
  text-align: center;
  flex: 1 1 150px;
}

.highlight-numbers strong {
  display: block;
  font-size: 42px;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  margin-bottom: 8px;
}

.highlight-numbers span {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 600;
}

/* ============================================
   VALUES GRID
   ============================================ */
.values {
  background: var(--bg-light);
}

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

.value-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certifications {
  background: var(--white);
}

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

.cert-badge {
  text-align: center;
  flex: 1 1 180px;
  max-width: 220px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cert-badge:hover {
  transform: scale(1.1);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.cert-badge img {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.cert-badge p {
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

/* ============================================
   RESOURCES PAGE
   ============================================ */
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.resource-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.resource-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

.resource-card .meta {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: auto;
}

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.blog-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-left: 5px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category {
  display: inline-block;
  background: var(--accent);
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.blog-card h3 {
  color: var(--text-dark);
  font-size: 20px;
  margin-bottom: 8px;
}

.blog-card .meta {
  font-size: 13px;
  color: var(--text-light);
  margin-top: auto;
}

/* ============================================
   EBOOKS & TOOLS
   ============================================ */
.ebooks-grid,
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.ebook-card,
.tool-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ebook-card:hover,
.tool-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--electric-green);
}

.tool-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--electric-purple), var(--primary));
  padding: 80px 20px;
  margin-bottom: 0;
}

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

.newsletter-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

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

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

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

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-methods {
  background: var(--bg-light);
}

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

.method-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.method-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.method-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.response-time {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  background: var(--white);
}

.form-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-light);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 23, 68, 0.1);
}

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-field.checkbox label {
  margin: 0;
  font-weight: 400;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--secondary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

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

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

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  background: linear-gradient(135deg, var(--electric-green), var(--secondary));
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  color: var(--electric-green);
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.4);
  animation: scaleIn 0.5s ease-out;
}

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

.thank-you-hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.confirmation-message {
  background: var(--white);
}

.message-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--electric-purple));
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 24px;
}

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

.next-steps .step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 250px;
  max-width: 300px;
}

.next-steps .step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--primary), var(--electric-purple));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.next-steps .step-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.next-steps .step-content p {
  font-size: 14px;
  margin: 0;
}

/* ============================================
   LEGAL CONTENT PAGES
   ============================================ */
.legal-content {
  background: var(--white);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.content-wrapper h2 {
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: left;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 16px;
  font-size: 20px;
}

.content-wrapper ul {
  margin: 16px 0 24px 20px;
}

.content-wrapper ul li {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-wrapper p {
  margin-bottom: 20px;
}

/* ============================================
   FOOTER - VIBRANT
   ============================================ */
.site-footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0a0a0a 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--electric-purple));
}

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

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 16px;
}

.tagline {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

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

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

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--text-dark), #0a0a0a);
  color: var(--white);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--primary);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

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

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

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

.cookie-category h3 {
  margin: 0;
  font-size: 18px;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--electric-green);
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

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

/* Tablets */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  section {
    padding: 40px 20px;
    margin-bottom: 60px;
  }
  
  .features-grid,
  .services-grid,
  .solutions-grid,
  .stats-grid,
  .testimonials-grid {
    gap: 24px;
  }
  
  .feature-card,
  .service-card,
  .solution-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .service-header {
    flex-direction: column;
  }
  
  .service-price {
    font-size: 28px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .form-wrapper {
    padding: 30px 24px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .stat-card h3 {
    font-size: 36px;
  }
  
  .service-detail,
  .message-box,
  .content-wrapper {
    padding: 24px 20px;
  }
  
  .cookie-modal-content {
    padding: 24px 20px;
  }
  
  .process-steps {
    gap: 24px;
  }
  
  .process-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

/* Smooth scrolling behavior */
html {
  scroll-padding-top: 100px;
}

/* Selection color */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .site-header,
  .site-footer,
  .cta-section {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}