/* =================================================================
   GLIMMER CRUISE - TECH FUTURISTIC DESIGN SYSTEM
   Futuristic tech-inspired design with gradient backgrounds,
   neon accents, modern fonts, and sleek interfaces
   ================================================================= */

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

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

body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1729 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* TECH FUTURISTIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Rajdhani', 'Exo 2', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: 32px;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 24px;
  letter-spacing: 1px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #00FFFF;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

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

ul {
  list-style: none;
}

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

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* SECTION SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #00D9FF;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: 1px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #B8C5D6;
}

/* BUTTONS - NEON TECH STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid #00D9FF;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 255, 255, 0.2) 100%);
  color: #00FFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

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

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

.btn:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.3) 0%, rgba(0, 255, 255, 0.4) 100%);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 217, 255, 0.3);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #00D9FF 0%, #0099CC 100%);
  border-color: #00FFFF;
  color: #0a0e27;
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00FFFF 0%, #00D9FF 100%);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.8), 0 0 80px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  border-color: #FF6B9D;
  color: #FF6B9D;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(255, 107, 157, 0.3) 100%);
  box-shadow: 0 0 30px rgba(255, 107, 157, 0.6);
  color: #FFB3D1;
}

/* HEADER - FUTURISTIC NAVIGATION */
.main-header {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.9) 100%);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.2);
}

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

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

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
  transform: scale(1.05);
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00D9FF;
  padding: 8px 16px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #00FFFF);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

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

.main-nav a:hover {
  color: #00FFFF;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00D9FF 0%, #0099CC 100%);
  border: 2px solid #00FFFF;
  color: #0a0e27;
  font-size: 24px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #00FFFF 0%, #00D9FF 100%);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
  transform: scale(1.1);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  backdrop-filter: blur(20px);
  z-index: 1999;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
  box-shadow: -10px 0 50px rgba(0, 217, 255, 0.3);
  border-left: 2px solid rgba(0, 217, 255, 0.5);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #FF6B9D;
  color: #FF6B9D;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
}

.mobile-menu-close:hover {
  background: rgba(255, 107, 157, 0.2);
  box-shadow: 0 0 25px rgba(255, 107, 157, 0.6);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00D9FF;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  background: rgba(0, 217, 255, 0.05);
}

.mobile-nav a:hover {
  border-left-color: #00FFFF;
  background: rgba(0, 217, 255, 0.15);
  padding-left: 30px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* HERO SECTION - TECH GRADIENT */
.hero {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2C5F7B 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #00FFFF 0%, #00D9FF 50%, #FF6B9D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5)); }
  to { filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.8)); }
}

.hero-subtitle {
  font-size: 20px;
  color: #B8C5D6;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1a1f3a 0%, #2C5F7B 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

/* CARD LAYOUTS - FLEXBOX ONLY */
.card-container,
.services-grid,
.benefits-grid,
.testimonials-grid,
.posts-grid,
.qualifications-list,
.values-grid,
.topics-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* SERVICE CARDS */
.service-card,
.benefit,
.testimonial-card,
.post-card,
.qualification-item,
.value-item,
.topic-item,
.resource-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(15, 23, 41, 0.8) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-card::before,
.benefit::before,
.post-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.service-card:hover,
.benefit:hover,
.post-card:hover,
.testimonial-card:hover,
.resource-card:hover {
  transform: translateY(-8px);
  border-color: #00FFFF;
  box-shadow: 0 8px 40px rgba(0, 217, 255, 0.4), 0 0 30px rgba(0, 255, 255, 0.2);
}

.service-card h3,
.benefit h3,
.post-card h3 {
  color: #00FFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-card p,
.benefit p {
  color: #B8C5D6;
  position: relative;
  z-index: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #00D9FF;
  margin-top: 16px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonial-card {
  flex: 1 1 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 240, 255, 0.95) 100%);
  border: 2px solid rgba(0, 217, 255, 0.4);
  padding: 30px;
  color: #1a1f3a;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

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

.client-name {
  font-weight: 600;
  color: #2C5F7B;
  font-style: normal;
}

/* PROCESS STEPS */
.process-steps,
.process-list,
.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.step,
.process-item,
.step-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  padding: 32px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step:hover,
.process-item:hover,
.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.step-number,
.number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #00D9FF 0%, #0099CC 100%);
  color: #0a0e27;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  border: 2px solid #00FFFF;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* CONTENT GRIDS */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.content-grid > * {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

/* FEATURE ITEMS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: rgba(0, 217, 255, 0.05);
  border-left: 3px solid #00D9FF;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 217, 255, 0.1);
  border-left-color: #00FFFF;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

/* SERVICE DETAILS */
.service-detail {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(15, 23, 41, 0.6) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-color: #00FFFF;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
}

.service-meta {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.service-meta .duration,
.service-meta .price {
  color: #00D9FF;
  font-weight: 600;
}

/* BLOG */
.category-filter {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(0, 217, 255, 0.5);
  color: #00D9FF;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-btn:hover,
.category-btn.active {
  background: rgba(0, 217, 255, 0.2);
  border-color: #00FFFF;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.post-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #00D9FF;
  margin-top: 16px;
  flex-wrap: wrap;
}

.post-excerpt {
  color: #B8C5D6;
  line-height: 1.7;
}

/* WORKSHOP SECTIONS */
.workshop-highlight {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
  border: 2px solid rgba(0, 217, 255, 0.4);
  padding: 48px;
  margin-bottom: 40px;
  box-shadow: 0 8px 40px rgba(0, 217, 255, 0.2);
}

.workshop-meta {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.workshop-benefits {
  margin: 32px 0;
}

.workshop-benefits ul {
  list-style: none;
  margin-top: 20px;
}

.workshop-benefits li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #B8C5D6;
}

.workshop-benefits li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-size: 20px;
}

.course-card {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.7) 0%, rgba(15, 23, 41, 0.7) 100%);
  border: 1px solid rgba(0, 217, 255, 0.3);
  padding: 32px;
  margin-bottom: 24px;
}

.course-meta {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
  color: #00D9FF;
}

/* CONTACT */
.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-grid > * {
  flex: 1 1 300px;
}

.contact-info {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(15, 23, 41, 0.6) 100%);
  padding: 40px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.info-block {
  margin-bottom: 32px;
}

.info-block h3 {
  color: #00FFFF;
  margin-bottom: 12px;
  font-size: 18px;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(15, 23, 41, 0.6) 100%);
  padding: 40px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.form-note,
.privacy-text {
  font-size: 14px;
  color: #B8C5D6;
  margin-top: 16px;
}

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

.faq-item {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, rgba(15, 23, 41, 0.5) 100%);
  border-left: 3px solid #00D9FF;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  border-left-color: #00FFFF;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.faq-item h3 {
  color: #00FFFF;
  margin-bottom: 12px;
  font-size: 18px;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-note {
  margin-top: 24px;
}

.privacy-note {
  font-size: 14px;
  color: #B8C5D6;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C5F7B 0%, #1a1f3a 100%);
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  border-top: 2px solid rgba(0, 217, 255, 0.5);
  border-bottom: 2px solid rgba(0, 217, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #B8C5D6;
}

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

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1a1f3a 0%, #2C5F7B 100%);
  padding: 100px 20px;
  text-align: center;
}

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

.confirmation-message {
  font-size: 20px;
  color: #B8C5D6;
  margin-bottom: 32px;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #1a1f3a 0%, #2C5F7B 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

.last-updated,
.intro-text {
  font-size: 16px;
  color: #00D9FF;
  margin-top: 8px;
}

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

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

.legal-text h2 {
  color: #00FFFF;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-text h3 {
  color: #00D9FF;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

/* FOOTER - FUTURISTIC DESIGN */
.main-footer {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(5, 7, 19, 1) 100%);
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  padding: 60px 20px 20px;
  color: #B8C5D6;
}

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

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.4));
}

.tagline {
  font-size: 14px;
  font-style: italic;
  color: #00D9FF;
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

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

.footer-column h4 {
  color: #00FFFF;
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

.footer-column a {
  color: #B8C5D6;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: #00FFFF;
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(5, 7, 19, 0.98) 100%);
  backdrop-filter: blur(20px);
  padding: 24px;
  z-index: 1998;
  border-top: 2px solid rgba(0, 217, 255, 0.5);
  box-shadow: 0 -4px 30px rgba(0, 217, 255, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  color: #B8C5D6;
}

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

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

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.98) 0%, rgba(15, 23, 41, 0.98) 100%);
  border: 2px solid rgba(0, 217, 255, 0.5);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 60px rgba(0, 217, 255, 0.4);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(0, 217, 255, 0.05);
  border-left: 3px solid #00D9FF;
}

.cookie-category h3 {
  color: #00FFFF;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

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

.cookie-toggle label {
  color: #B8C5D6;
  cursor: pointer;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography scaling */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  /* Hide desktop nav, show mobile menu */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Stack layouts */
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Cards stack on mobile */
  .service-card,
  .benefit,
  .post-card,
  .qualification-item,
  .value-item,
  .topic-item,
  .resource-card {
    flex: 1 1 100%;
  }
  
  .step,
  .process-item,
  .step-item {
    flex: 1 1 100%;
  }
  
  /* Text-image sections stack */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Footer stacks */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  /* Contact grid stacks */
  .contact-grid {
    flex-direction: column;
  }
  
  /* Cookie consent stacks */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Padding adjustments */
  .hero { padding: 60px 20px; }
  .page-hero { padding: 50px 20px; }
  .cta-banner,
  .cta-section { padding: 50px 20px; }
  
  .workshop-highlight { padding: 24px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit,
  .post-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step,
  .process-item {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .service-card,
  .post-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .benefit,
  .value-item {
    flex: 1 1 calc(25% - 18px);
  }
  
  .topic-item {
    flex: 1 1 calc(33.333% - 16px);
  }
}

/* ANIMATIONS */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* FOCUS STATES FOR ACCESSIBILITY */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #00FFFF;
  outline-offset: 2px;
}

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