/* ===================================
   FRESHET DUST - TECH FUTURISTIC CSS
   Style: tech_futuristic with gradient backgrounds, neon accents
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E8E8E8;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1419 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(127, 179, 213, 0.3);
}

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

h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: #7FB3D5;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #00D9FF;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #7FB3D5;
}

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

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

a:hover {
  color: #7FB3D5;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

ul {
  list-style: none;
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #00D9FF 0%, #7FB3D5 100%);
  color: #0A0E27;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(0, 217, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #00D9FF;
  border-color: #00D9FF;
}

.btn-secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.btn-link {
  padding: 0;
  background: none;
  color: #00D9FF;
  border: none;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}

.btn-link:hover {
  transform: translateX(5px);
}

/* HEADER */
header {
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #B8C5D6;
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #7FB3D5);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #00D9FF;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #00D9FF, #7FB3D5);
  color: #0A0E27;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.8);
  border-left: 2px solid rgba(0, 217, 255, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(0, 217, 255, 0.2);
  color: #00D9FF;
  border: 2px solid #00D9FF;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

.mobile-nav a:hover {
  background: rgba(0, 217, 255, 0.15);
  border-left-color: #00D9FF;
  color: #00D9FF;
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: #B8C5D6;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  animation: fadeInUp 1.2s ease;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.badge img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6));
}

.badge span {
  font-size: 14px;
  color: #B8C5D6;
  font-weight: 600;
}

/* HERO SIMPLE */
.hero-simple {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.breadcrumbs {
  font-size: 14px;
  color: #7FB3D5;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: #00D9FF;
}

.breadcrumbs span {
  color: #B8C5D6;
}

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

.section-subtitle {
  font-size: 18px;
  color: #B8C5D6;
  text-align: center;
  margin-bottom: 48px;
}

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

.text-section p {
  margin-bottom: 20px;
}

.text-section ul {
  margin: 20px 0;
  padding-left: 24px;
}

.text-section ul li {
  list-style: none;
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #B8C5D6;
}

.text-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-weight: bold;
}

/* BENEFITS SECTION */
.benefits {
  padding: 80px 20px;
  background: rgba(26, 31, 58, 0.3);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00D9FF, #7FB3D5);
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
  opacity: 0.2;
}

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

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.7));
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.benefit-card p {
  font-size: 15px;
  color: #B8C5D6;
}

/* SERVICES SECTION */
.services-preview {
  padding: 80px 20px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 20px;
}

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

.service-card {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.8) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.4);
  border-color: #00D9FF;
}

.service-card img {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
}

.service-card h3 {
  font-size: 22px;
}

.service-card p {
  font-size: 15px;
  color: #B8C5D6;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #00D9FF;
  margin: 12px 0;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

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

/* SERVICES DETAILED */
.services-detailed {
  padding: 60px 20px;
}

.service-detailed-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 16px;
}

.service-detailed-card > img {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.8));
}

.service-content {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-includes h3,
.service-meta strong {
  color: #00D9FF;
  font-size: 18px;
  margin-bottom: 12px;
}

.service-includes ul {
  padding-left: 0;
}

.service-includes ul li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.service-includes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-size: 18px;
}

.service-meta p {
  margin-bottom: 8px;
}

/* PROCESS SECTION */
.process {
  padding: 80px 20px;
  background: rgba(26, 31, 58, 0.3);
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #0A0E27;
  background: linear-gradient(135deg, #00D9FF, #7FB3D5);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #B8C5D6;
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 217, 255, 0.4);
}

.rating {
  font-size: 20px;
  margin-bottom: 16px;
  color: #FFB74D;
  text-shadow: 0 0 10px rgba(255, 183, 77, 0.5);
}

.testimonial-card > p {
  font-size: 16px;
  color: #1A1F3A;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

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

.author strong {
  font-size: 16px;
  color: #0A0E27;
  font-weight: 700;
}

.author span {
  font-size: 14px;
  color: #4A5568;
}

/* STATS */
.stats {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(127, 179, 213, 0.1) 100%);
}

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

.stat {
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
  padding: 32px 24px;
  background: rgba(10, 14, 39, 0.6);
  border: 2px solid rgba(0, 217, 255, 0.4);
  border-radius: 16px;
  backdrop-filter: blur(5px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #00D9FF;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.stat p {
  font-size: 16px;
  color: #B8C5D6;
  font-weight: 600;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(127, 179, 213, 0.15) 100%);
  text-align: center;
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

.cta-banner h2,
.cta-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
}

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

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.guarantee-badge img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.7));
}

.guarantee-badge span {
  font-size: 16px;
  color: #B8C5D6;
  font-weight: 600;
}

/* PROGRAMS */
.programs-overview {
  padding: 60px 20px 40px;
  text-align: center;
}

.program-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.program-card:hover {
  box-shadow: 0 16px 48px rgba(0, 217, 255, 0.4);
  border-color: #00D9FF;
}

.program-card > img {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 25px rgba(0, 217, 255, 0.8));
}

.program-content {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.program-includes h3,
.program-results h3 {
  color: #00D9FF;
  font-size: 20px;
  margin-bottom: 12px;
}

.program-includes ul li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.program-includes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-size: 18px;
}

.duration {
  font-size: 16px;
  color: #7FB3D5;
  font-weight: 600;
}

/* BLOG */
.featured-post {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(127, 179, 213, 0.1) 100%);
  border-radius: 16px;
  margin-bottom: 60px;
}

.featured-label {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #00D9FF, #7FB3D5);
  color: #0A0E27;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.featured-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.post-meta {
  font-size: 14px;
  color: #7FB3D5;
  margin-bottom: 20px;
}

.excerpt {
  font-size: 16px;
  color: #B8C5D6;
  margin-bottom: 24px;
  line-height: 1.8;
}

.blog-grid {
  padding: 60px 20px;
}

.blog-grid h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.post-card {
  flex: 1 1 320px;
  max-width: 380px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.8) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
  border-color: #00D9FF;
}

.post-category {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 217, 255, 0.2);
  color: #00D9FF;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.post-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.post-card > p {
  font-size: 15px;
  color: #B8C5D6;
  flex-grow: 1;
}

/* CATEGORIES */
.categories {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
}

.categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card {
  flex: 1 1 220px;
  max-width: 260px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
  border-color: #00D9FF;
}

.category-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.7));
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 14px;
  color: #7FB3D5;
}

/* NEWSLETTER */
.newsletter {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(127, 179, 213, 0.1) 100%);
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 20px;
}

.newsletter > p {
  font-size: 18px;
  margin-bottom: 32px;
}

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

.incentive {
  font-size: 16px;
  color: #00D9FF;
  margin-bottom: 24px;
  font-weight: 600;
}

/* CONTACT */
.contact-methods {
  padding: 60px 20px;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-method {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
}

.contact-method h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-method p {
  font-size: 16px;
  color: #B8C5D6;
  line-height: 1.7;
}

.contact-method strong {
  color: #00D9FF;
  font-size: 18px;
}

.contact-form-section {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form-section > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.form-notice {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
}

.form-notice strong {
  color: #00D9FF;
  font-size: 18px;
  display: block;
  margin-bottom: 16px;
}

.form-notice ul {
  margin: 16px 0;
  padding-left: 24px;
}

.form-notice ul li {
  margin-bottom: 8px;
  color: #B8C5D6;
}

.form-info {
  font-size: 14px;
  color: #7FB3D5;
  margin-top: 20px;
}

.form-info a {
  color: #00D9FF;
  text-decoration: underline;
}

/* TEAM */
.team {
  padding: 60px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 20px;
}

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

.team-member {
  flex: 1 1 280px;
  max-width: 340px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.role {
  font-size: 16px;
  color: #00D9FF;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-member p {
  font-size: 15px;
  color: #B8C5D6;
}

/* VALUES & MISSION */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.7));
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.mission,
.vision {
  flex: 1 1 300px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(127, 179, 213, 0.1) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 16px;
}

.mission h3,
.vision h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

/* CERTIFICATIONS */
.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.cert-item {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 24px;
  background: rgba(0, 217, 255, 0.1);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  text-align: center;
}

.cert-item p {
  font-size: 15px;
  color: #B8C5D6;
  font-weight: 600;
}

/* ACHIEVEMENTS */
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.achievement {
  flex: 1 1 220px;
  max-width: 260px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  text-align: center;
}

.achievement img {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.8));
}

.achievement p {
  font-size: 16px;
  color: #B8C5D6;
  font-weight: 600;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: rgba(0, 217, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.legal-content th,
.legal-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.legal-content th {
  background: rgba(0, 217, 255, 0.15);
  color: #00D9FF;
  font-weight: 700;
}

.legal-content td {
  color: #B8C5D6;
}

.last-updated {
  font-size: 14px;
  color: #7FB3D5;
  font-style: italic;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #0A0E27;
  background: linear-gradient(135deg, #00D9FF, #7FB3D5);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
  animation: scaleIn 0.6s ease;
}

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

.thank-you-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.next-steps,
.while-you-wait {
  padding: 60px 20px;
}

.next-steps h2,
.while-you-wait h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.action-card {
  flex: 1 1 280px;
  max-width: 340px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  text-align: center;
}

.action-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.action-card p {
  font-size: 15px;
  margin-bottom: 20px;
}

.contact-summary {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
  text-align: center;
}

.contact-info {
  max-width: 600px;
  margin: 32px auto 0;
}

.urgency-note {
  font-size: 14px;
  color: #00D9FF;
  font-weight: 600;
  margin-top: 16px;
}

.navigation-links {
  padding: 60px 20px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.nav-link {
  display: block;
  padding: 16px 32px;
  background: rgba(0, 217, 255, 0.1);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  color: #00D9FF;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(0, 217, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
}

/* LOCATION & BOOKING */
.location,
.booking,
.office-hours {
  padding: 60px 20px;
}

.location-content {
  max-width: 800px;
  margin: 0 auto;
}

.address-details {
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
}

.address-details h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.booking-benefits {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background: rgba(0, 217, 255, 0.05);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
}

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

.hours-item {
  flex: 1 1 200px;
  max-width: 260px;
  padding: 24px;
  background: rgba(0, 217, 255, 0.1);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  text-align: center;
}

.hours-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.hours-note {
  text-align: center;
  font-size: 14px;
  color: #7FB3D5;
  font-style: italic;
}

.social-media {
  padding: 60px 20px;
  text-align: center;
}

.social-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.social-link {
  display: block;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(127, 179, 213, 0.1) 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  color: #00D9FF;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 217, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
}

/* PACKAGES */
.packages {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
}

.packages h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.package-card {
  flex: 1 1 280px;
  max-width: 340px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(127, 179, 213, 0.05) 100%);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
}

.package-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.savings {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #00D9FF, #7FB3D5);
  color: #0A0E27;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  margin-top: 16px;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.guarantee img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.7));
}

.guarantee p {
  font-size: 16px;
  color: #B8C5D6;
  font-weight: 600;
}

.social-proof {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
}

.social-proof h2 {
  text-align: center;
  margin-bottom: 48px;
}

.urgency {
  font-size: 18px;
  color: #FFB74D;
  font-weight: 700;
  margin-bottom: 32px;
  text-shadow: 0 0 15px rgba(255, 183, 77, 0.5);
}

.trust-signals {
  margin-top: 32px;
}

.trust-signals p {
  font-size: 14px;
  color: #7FB3D5;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  padding: 60px 20px 32px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 200px;
  max-width: 280px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.tagline {
  font-size: 14px;
  color: #7FB3D5;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 18px;
  color: #00D9FF;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-column nav a::before {
  content: '▸';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #00D9FF;
}

.footer-column nav a:hover {
  color: #00D9FF;
  padding-left: 20px;
}

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

.footer-column p {
  font-size: 14px;
  color: #B8C5D6;
  line-height: 1.8;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  color: #B8C5D6;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #00D9FF;
  transform: translateX(5px);
}

.footer-legal {
  padding-top: 32px;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal nav a {
  font-size: 13px;
  color: #7FB3D5;
  transition: color 0.3s ease;
}

.footer-legal nav a:hover {
  color: #00D9FF;
}

.footer-legal p {
  font-size: 13px;
  color: #7FB3D5;
  margin: 0;
}

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

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

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

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

.cookie-text strong {
  color: #00D9FF;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00D9FF, #7FB3D5);
  color: #0A0E27;
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: rgba(184, 197, 214, 0.1);
  color: #B8C5D6;
  border-color: rgba(184, 197, 214, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(184, 197, 214, 0.2);
}

.cookie-btn-settings {
  background: transparent;
  color: #00D9FF;
  border-color: #00D9FF;
}

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

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  border: 2px solid rgba(0, 217, 255, 0.4);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 48px rgba(0, 217, 255, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 217, 255, 0.2);
  color: #00D9FF;
  border: 2px solid #00D9FF;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  background: rgba(0, 217, 255, 0.3);
  transform: rotate(90deg);
}

.cookie-modal h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #00D9FF;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
}

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

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

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: rgba(184, 197, 214, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #B8C5D6;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #00D9FF, #7FB3D5);
}

.cookie-toggle.active::after {
  left: 26px;
  background: #0A0E27;
}

.cookie-category p {
  font-size: 14px;
  color: #B8C5D6;
  margin: 0;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

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

  .hero-cta .btn {
    width: 100%;
  }

  .section {
    padding: 40px 16px;
  }

  .benefits,
  .services-preview,
  .process,
  .testimonials,
  .stats {
    padding: 60px 16px;
  }

  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .stats-grid {
    gap: 24px;
  }

  .service-detailed-card,
  .program-card {
    flex-direction: column;
    padding: 32px 24px;
  }

  .service-detailed-card > img,
  .program-card > img {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .footer-main {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    max-width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

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

  .contact-grid,
  .team-grid,
  .values-grid,
  .mission-vision {
    gap: 24px;
  }

  .mission,
  .vision {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 60px 16px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  .trust-badges {
    flex-direction: column;
  }

  .badge {
    width: 100%;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .service-card,
  .benefit-card,
  .value-card {
    padding: 24px 20px;
  }

  .stat-number {
    font-size: 36px;
  }
}

/* UTILITIES */
.text-center {
  text-align: center;
}

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

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

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

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

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

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #00D9FF;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  body {
    background: white;
    color: black;
  }

  h1, h2, h3, h4 {
    color: black;
  }

  a {
    text-decoration: underline;
    color: black;
  }
}