/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: linear-gradient(135deg, #0A0E27 0%, #1A2332 50%, #0D1B2A 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Tech Futuristic Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #E8F1F5;
  text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #E8B887;
  text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

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

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

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

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.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(212, 165, 116, 0.3));
  transition: all 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.6));
  transform: scale(1.05);
}

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

.main-nav a {
  color: #E8F1F5;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4A574, #E8B887);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #2C5F7C, #1A4A63);
  border: 1px solid rgba(212, 165, 116, 0.3);
  color: #E8F1F5;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 165, 116, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #3A7A9C, #2C5F7C);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 165, 116, 0.4);
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27, #1A2332);
  z-index: 1050;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
  border-left: 1px solid rgba(212, 165, 116, 0.2);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid rgba(212, 165, 116, 0.3);
  color: #E8F1F5;
  font-size: 28px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(212, 165, 116, 0.2);
  border-color: #D4A574;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #E8F1F5;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #D4A574;
  padding-left: 10px;
  border-bottom-color: rgba(212, 165, 116, 0.5);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 35, 50, 0.9));
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(212, 165, 116, 0.3);
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(44, 95, 124, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #E8F1F5;
  text-shadow: 0 0 30px rgba(212, 165, 116, 0.4);
  animation: fadeInUp 0.8s ease;
}

.hero-subheadline {
  font-size: 20px;
  color: #B8C8D8;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Page */
.hero-page {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 35, 50, 0.9));
  padding: 80px 20px 60px;
  border-bottom: 2px solid rgba(212, 165, 116, 0.3);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #B8C8D8;
}

.breadcrumb a {
  color: #D4A574;
}

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

.last-updated {
  color: #8A9BAB;
  font-size: 14px;
  margin-top: 8px;
}

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

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

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

.btn-primary {
  background: linear-gradient(135deg, #D4A574, #B8883D);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3), 0 0 20px rgba(212, 165, 116, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E8B887, #D4A574);
  box-shadow: 0 6px 25px rgba(212, 165, 116, 0.5), 0 0 30px rgba(212, 165, 116, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #E8F1F5;
  border: 2px solid rgba(212, 165, 116, 0.5);
  box-shadow: 0 0 15px rgba(212, 165, 116, 0.2);
}

.btn-secondary:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: #D4A574;
  box-shadow: 0 0 25px rgba(212, 165, 116, 0.4);
  transform: translateY(-2px);
}

/* Section Styles */
section {
  padding: 80px 20px;
  position: relative;
}

section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 16px;
  color: #E8F1F5;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #B8C8D8;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Introduction Section */
.introduction {
  background: rgba(10, 14, 39, 0.5);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 165, 116, 0.1);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.trust-indicators {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.indicator {
  text-align: center;
  padding: 20px;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 150px;
}

.indicator strong {
  display: block;
  font-size: 36px;
  color: #D4A574;
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(212, 165, 116, 0.5);
}

.indicator span {
  font-size: 14px;
  color: #B8C8D8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Feature Grid */
.feature-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.feature-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.4));
}

.feature-card h3 {
  margin-bottom: 16px;
  color: #E8F1F5;
}

.feature-card p {
  color: #B8C8D8;
  line-height: 1.6;
}

/* Service Grid */
.service-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #E8F1F5;
}

.service-card p {
  flex: 1;
  color: #B8C8D8;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #D4A574;
  text-shadow: 0 0 15px rgba(212, 165, 116, 0.5);
  margin: 8px 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A574, #B8883D);
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4), 0 0 20px rgba(212, 165, 116, 0.3);
}

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

.step p {
  color: #B8C8D8;
}

/* Testimonials */
.testimonials {
  background: rgba(10, 14, 39, 0.5);
  backdrop-filter: blur(10px);
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 550px;
  background: linear-gradient(135deg, rgba(232, 241, 245, 0.95), rgba(184, 200, 216, 0.95));
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

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

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #1A1A1A;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.testimonial-author strong {
  font-size: 16px;
  color: #1A4A63;
}

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

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(44, 95, 124, 0.2));
  text-align: center;
  padding: 80px 20px;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  border-bottom: 2px solid rgba(212, 165, 116, 0.3);
}

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

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

.cta-info {
  font-size: 14px;
  color: #8A9BAB;
  margin-top: 16px;
}

/* Mission & Values */
.values-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  max-width: 450px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.value-item h3 {
  color: #D4A574;
  margin-bottom: 12px;
}

/* Milestone Stats */
.milestone-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.stat {
  text-align: center;
  padding: 24px;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  min-width: 180px;
}

.stat strong {
  display: block;
  font-size: 42px;
  color: #D4A574;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

.stat span {
  font-size: 14px;
  color: #B8C8D8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team Grid */
.team-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.team-member {
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  max-width: 400px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

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

.team-member .role {
  color: #D4A574;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Methodology List */
.methodology-list {
  max-width: 700px;
  margin: 32px auto;
  padding-left: 0;
}

.methodology-list li {
  padding: 20px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  margin-bottom: 16px;
  border-radius: 8px;
  border-left: 4px solid #D4A574;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  list-style: none;
}

.methodology-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 165, 116, 0.2);
}

/* Location Details */
.location-details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.detail {
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  max-width: 450px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.detail h3 {
  color: #D4A574;
  margin-bottom: 16px;
  font-size: 20px;
}

/* Programs Page */
.program-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.program-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 550px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  padding: 36px;
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.program-card h3 {
  font-size: 24px;
  color: #E8F1F5;
  margin-bottom: 16px;
}

.program-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.program-details span {
  font-size: 14px;
  color: #B8C8D8;
}

/* Learning Outcomes */
.outcome-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.outcome-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  max-width: 350px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.outcome-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.outcome-card h3 {
  color: #D4A574;
  margin-bottom: 12px;
  font-size: 20px;
}

/* Services Detailed */
.service-block {
  padding: 48px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.service-block:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.service-block h2 {
  text-align: left;
  font-size: 32px;
  color: #E8F1F5;
  margin-bottom: 20px;
}

.service-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 20px;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.service-info span {
  font-size: 14px;
  color: #B8C8D8;
}

/* Benefits Grid */
.benefit-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  max-width: 450px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.benefit-card h3 {
  color: #D4A574;
  margin-bottom: 12px;
}

/* Gallery Tours */
.tour-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.tour-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  padding: 36px;
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.tour-card h3 {
  font-size: 24px;
  color: #E8F1F5;
}

.tour-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.tour-details span {
  font-size: 14px;
  color: #B8C8D8;
}

/* Highlight Grid */
.highlight-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.highlight-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  max-width: 400px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.highlight-item img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.4));
}

.highlight-item h3 {
  color: #E8F1F5;
  margin-bottom: 8px;
}

/* Practical Info */
.info-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.info-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  max-width: 450px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.info-card h3 {
  color: #D4A574;
  margin-bottom: 16px;
}

/* Resources Page */
.category-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.category-card img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.4));
}

.category-card h3 {
  color: #E8F1F5;
  margin-bottom: 8px;
}

.resource-count {
  font-size: 13px;
  color: #D4A574;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Guide Grid */
.guide-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.guide-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  padding: 36px;
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.guide-card h3 {
  font-size: 22px;
  color: #E8F1F5;
}

.page-count {
  font-size: 13px;
  color: #D4A574;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Glossary */
.glossary-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.term-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  max-width: 550px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.term-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.term-card h3 {
  color: #D4A574;
  margin-bottom: 12px;
  font-size: 20px;
}

/* Newsletter Signup */
.newsletter-signup {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(44, 95, 124, 0.15));
  padding: 80px 20px;
  text-align: center;
}

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

.form-note {
  margin-bottom: 24px;
  color: #B8C8D8;
}

/* Contact Page */
.method-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.method-card img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.4));
}

.method-card h3 {
  color: #E8F1F5;
  margin-bottom: 12px;
}

/* Contact Form Display */
.form-display {
  max-width: 700px;
  margin: 40px auto;
  padding: 48px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #E8F1F5;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-display {
  width: 100%;
  padding: 14px 16px;
  background: rgba(232, 241, 245, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 8px;
  color: #B8C8D8;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
}

.textarea-display {
  min-height: 120px;
}

.checkbox-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
  font-weight: 400;
}

.privacy-note {
  font-size: 13px;
  color: #8A9BAB;
}

.privacy-note a {
  color: #D4A574;
  text-decoration: underline;
}

/* Booking Options */
.booking-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.booking-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.booking-card h3 {
  color: #E8F1F5;
  margin-bottom: 8px;
}

/* Team Contact Cards */
.team-contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.team-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.team-contact-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #E8F1F5;
}

.team-contact-card .role {
  color: #D4A574;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.general-note {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.2);
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
}

.legal-content h2 {
  text-align: left;
  font-size: 28px;
  color: #E8F1F5;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  text-align: left;
  font-size: 20px;
  color: #D4A574;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.legal-content li {
  margin-bottom: 8px;
  color: #B8C8D8;
  list-style: disc;
}

/* Data Request Section */
.request-info {
  max-width: 700px;
  margin: 32px auto;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Thank You Page */
.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A574, #B8883D);
  color: #FFFFFF;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.5), 0 0 40px rgba(212, 165, 116, 0.4);
}

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

.response-time {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: rgba(212, 165, 116, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  color: #B8C8D8;
}

/* Social Follow */
.social-follow {
  background: rgba(10, 14, 39, 0.5);
  padding: 60px 20px;
  text-align: center;
}

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

.social-link {
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(44, 95, 124, 0.3), rgba(26, 74, 99, 0.3));
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 8px;
  color: #E8F1F5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, rgba(44, 95, 124, 0.5), rgba(26, 74, 99, 0.5));
  border-color: #D4A574;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  transform: translateY(-2px);
}

/* Explore Links */
.explore-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}

.explore-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  max-width: 450px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(26, 35, 50, 0.6));
  border-radius: 12px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 165, 116, 0.3);
  border-color: #D4A574;
}

.explore-card h3 {
  color: #E8F1F5;
  margin-bottom: 8px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0A0E27, #1A2332);
  padding: 60px 20px 30px;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
}

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

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.3));
}

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

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

.footer-nav a {
  color: #B8C8D8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #D4A574;
  padding-left: 5px;
}

.footer-column p {
  color: #B8C8D8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-legal a {
  color: #8A9BAB;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #D4A574;
}

.footer-bottom p {
  color: #8A9BAB;
  font-size: 13px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 35, 50, 0.98));
  backdrop-filter: blur(10px);
  padding: 24px 20px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text a {
  color: #D4A574;
  text-decoration: underline;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #D4A574, #B8883D);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #E8B887, #D4A574);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #E8F1F5;
  border: 2px solid rgba(212, 165, 116, 0.3);
}

.cookie-reject:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: #D4A574;
}

.cookie-settings {
  background: transparent;
  color: #D4A574;
  border: 2px solid rgba(212, 165, 116, 0.3);
}

.cookie-settings:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: #D4A574;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0A0E27, #1A2332);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid rgba(212, 165, 116, 0.3);
  color: #E8F1F5;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(212, 165, 116, 0.2);
  border-color: #D4A574;
  transform: rotate(90deg);
}

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

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

.cookie-category h3 {
  color: #D4A574;
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #D4A574, #B8883D);
}

.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .feature-grid,
  .service-grid,
  .process-steps,
  .testimonial-grid {
    gap: 24px;
  }
  
  .feature-card,
  .service-card,
  .program-card,
  .tour-card {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .trust-indicators {
    gap: 24px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .mobile-menu {
    width: 90%;
  }
  
  .container {
    padding: 0 16px;
  }
}