/* ==========================================================================
   VogueBrick Migration - Tech Futuristic Style
   CSS Reset & Base Styles
   ========================================================================== */

* {
  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: #e0e0e0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #00d4ff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

h3 {
  font-size: 24px;
  color: #ffffff;
}

h4 {
  font-size: 18px;
  color: #00d4ff;
}

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

a {
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #7b2ff7;
  text-shadow: 0 0 10px rgba(123, 47, 247, 0.5);
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #b0b0b0;
}

strong {
  color: #ffffff;
  font-weight: 600;
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #00d4ff;
  box-shadow: 0 4px 30px rgba(0, 212, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  box-shadow: -4px 0 30px rgba(0, 212, 255, 0.3);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid #00d4ff;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transform: translateX(8px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary::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-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #00d4ff;
  border: 2px solid #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cpattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"%3E%3Cpath d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/%3E%3C/pattern%3E%3C/defs%3E%3Crect width="100" height="100" fill="url(%23grid)"/%3E%3C/svg%3E');
  opacity: 0.3;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }
  to {
    text-shadow: 0 0 40px rgba(123, 47, 247, 0.5);
  }
}

.subheadline {
  font-size: 24px;
  color: #00d4ff;
  margin-bottom: 24px;
  font-weight: 600;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.trust-bar span {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

/* ==========================================================================
   Page Hero
   ========================================================================== */

.page-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  text-align: center;
}

.breadcrumb {
  color: #7b2ff7;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ==========================================================================
   Sections
   ========================================================================== */

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

.intro,
.services-overview,
.process,
.testimonials,
.value-prop,
.story,
.mission-values,
.team,
.statistics,
.services-detailed,
.guarantees,
.pathways-overview,
.pathway-detail,
.featured-story,
.story-grid,
.statistics-showcase,
.resource-categories,
.featured-resources,
.faq-section,
.contact-methods,
.booking,
.office-info,
.team-availability,
.contact-faq,
.legal-page,
.thank-you-hero,
.next-steps,
.while-waiting,
.social-proof,
.return-nav {
  background: rgba(10, 10, 10, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
}

/* ==========================================================================
   Cards & Grids
   ========================================================================== */

.benefits-grid,
.services-grid,
.value-props-grid,
.pathway-grid,
.category-grid,
.resource-grid,
.contact-grid,
.stats-grid,
.guarantee-grid,
.values-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.benefit-card,
.service-card,
.pathway-card,
.category-card,
.resource-card,
.contact-card,
.stat-card,
.guarantee-item,
.value-card,
.team-member {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(123, 47, 247, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.pathway-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
  border-radius: 12px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before,
.service-card:hover::before,
.pathway-card:hover::before {
  opacity: 1;
}

.benefit-card:hover,
.service-card:hover,
.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
}

.benefit-card h3,
.service-card h3,
.pathway-card h3 {
  color: #00d4ff;
  margin-bottom: 16px;
}

.price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #7b2ff7;
  margin-top: 16px;
  text-shadow: 0 0 10px rgba(123, 47, 247, 0.5);
}

/* ==========================================================================
   Process Steps
   ========================================================================== */

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.step-number {
  font-size: 32px;
  font-weight: 700;
  color: #7b2ff7;
  min-width: 60px;
  text-align: center;
  background: rgba(123, 47, 247, 0.1);
  border: 2px solid #7b2ff7;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(123, 47, 247, 0.3);
}

.step h3 {
  color: #00d4ff;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.testimonial-card p {
  color: #1a1a2e;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(0, 212, 255, 0.2);
}

.testimonial-author strong {
  color: #0a0a0a;
  font-size: 16px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.testimonial-highlight {
  padding: 32px;
  background: rgba(255, 255, 255, 0.95);
  border-left: 4px solid #00d4ff;
  border-radius: 8px;
  margin-top: 32px;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.testimonial-highlight p {
  color: #1a1a2e;
}

.testimonial-highlight strong {
  color: #0a0a0a;
}

/* ==========================================================================
   Statistics & Numbers
   ========================================================================== */

.stats-grid,
.stats-bar,
.trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.stat-item,
.stat-card {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  background: rgba(0, 212, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover,
.stat-card:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  transform: scale(1.05);
}

.stat-number,
.number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-item p,
.stat-card p {
  color: #ffffff;
  font-weight: 600;
}

/* ==========================================================================
   Timeline
   ========================================================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00d4ff 0%, #7b2ff7 100%);
}

.milestone {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-left: 80px;
  position: relative;
  margin-bottom: 20px;
}

.milestone::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: #00d4ff;
  border: 3px solid #0a0a0a;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.year {
  font-size: 24px;
  font-weight: 700;
  color: #7b2ff7;
  min-width: 80px;
}

/* ==========================================================================
   Service Details
   ========================================================================== */

.service-detail {
  padding: 40px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 32px;
}

.tagline {
  font-size: 18px;
  color: #7b2ff7;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.service-detail li {
  margin-bottom: 12px;
  color: #b0b0b0;
  position: relative;
  padding-left: 24px;
}

.service-detail li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-size: 20px;
}

/* ==========================================================================
   Story Cards
   ========================================================================== */

.story-card {
  padding: 32px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.story-card:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  transform: translateX(8px);
}

.story-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
  padding: 16px;
  background: rgba(123, 47, 247, 0.1);
  border-radius: 8px;
}

.story-details p {
  flex: 1 1 200px;
  margin-bottom: 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-item {
  padding: 24px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.faq-item h3 {
  color: #00d4ff;
  margin-bottom: 12px;
}

/* ==========================================================================
   CTA Sections
   ========================================================================== */

.cta-banner,
.cta-section,
.cta-final {
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 212, 255, 0.2);
  margin-top: 40px;
}

.cta-banner h2,
.cta-section h2,
.cta-final h2 {
  margin-bottom: 24px;
}

/* ==========================================================================
   Consultation Options
   ========================================================================== */

.consultation-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.consultation-option {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 32px;
  background: rgba(0, 212, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.consultation-option:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

.consultation-option h3 {
  color: #00d4ff;
  margin-bottom: 16px;
}

.consultation-option ul {
  margin-top: 16px;
  padding-left: 20px;
}

/* ==========================================================================
   Thank You Page
   ========================================================================== */

.thank-you-content {
  text-align: center;
  padding: 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(123, 47, 247, 0.7);
  }
}

.steps-grid,
.resource-suggestions,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.step-item,
.suggestion-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-item:hover,
.suggestion-card:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

.step-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #7b2ff7;
  margin-bottom: 16px;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-left: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: rgba(10, 10, 10, 0.95);
  border-top: 2px solid #00d4ff;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

.footer-col h4 {
  color: #00d4ff;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col p,
.footer-col a {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #00d4ff;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-bottom p {
  color: #666;
  font-size: 14px;
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  border-top: 2px solid #00d4ff;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 30px rgba(0, 212, 255, 0.3);
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    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 1 400px;
  color: #b0b0b0;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6);
}

.cookie-reject,
.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
}

/* ==========================================================================
   Cookie Modal
   ========================================================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
  border: 2px solid #00d4ff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.4);
}

.cookie-modal h3 {
  color: #00d4ff;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-slider {
  background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
}

.cookie-toggle input:checked + .cookie-slider::before {
  transform: translateX(24px);
}

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

/* ==========================================================================
   Responsive Design - Mobile First
   ========================================================================== */

@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Show mobile menu */
  .mobile-menu {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Section padding */
  section {
    padding: 40px 20px;
  }
  
  /* Cards full width on mobile */
  .benefit-card,
  .service-card,
  .pathway-card,
  .category-card,
  .resource-card,
  .contact-card,
  .stat-card,
  .value-card,
  .team-member,
  .testimonial-card,
  .consultation-option {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Flex direction column for mobile */
  .cta-buttons,
  .trust-bar,
  .stats-bar,
  .trust-stats,
  .nav-links {
    flex-direction: column;
  }
  
  /* Steps full width */
  .step {
    flex-direction: column;
    padding-left: 24px;
  }
  
  .step-number {
    margin-bottom: 16px;
  }
  
  /* Footer stacked */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie consent stacked */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Button sizing */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card,
  .pathway-card,
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  h1 {
    font-size: 40px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

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

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

:focus-visible {
  outline: 2px solid #00d4ff;
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #00d4ff;
  outline-offset: 4px;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}