/* ========================================
   BRIGHT BLITZ - TECH FUTURISTIC DESIGN
   CSS Reset & Base Styles
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #E0E7FF;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY - TECH FUTURISTIC
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #60A5FA 0%, #0EA5E9 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #60A5FA;
}

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

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

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

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

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

/* ========================================
   BUTTONS - NEON STYLE
   ======================================== */

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

.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, #0EA5E9 0%, #06B6D4 100%);
  color: #FFFFFF;
  border-color: #0EA5E9;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0284C7 0%, #0891B2 100%);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.8), 0 6px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #0EA5E9;
  border: 2px solid #0EA5E9;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

.btn-secondary:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: #06B6D4;
  color: #06B6D4;
  box-shadow: 0 0 25px rgba(14, 165, 233, 0.5);
}

.btn-large {
  padding: 18px 48px;
  font-size: 18px;
}

/* ========================================
   HEADER - FUTURISTIC NAV
   ======================================== */

.site-header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(14, 165, 233, 0.1);
}

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

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.5));
  transition: filter 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.8));
}

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

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

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

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

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

/* ========================================
   MOBILE MENU - SLIDING PANEL
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #0EA5E9, #06B6D4);
  border: 2px solid #0EA5E9;
  color: #FFFFFF;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #0284C7, #0891B2);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.8);
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  border-left: 2px solid rgba(14, 165, 233, 0.3);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(14, 165, 233, 0.2);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #0EA5E9;
  color: #0EA5E9;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

.mobile-menu-close:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: #06B6D4;
  color: #06B6D4;
  transform: rotate(90deg);
  box-shadow: 0 0 25px rgba(14, 165, 233, 0.5);
}

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

.mobile-nav a {
  color: #CBD5E1;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #0EA5E9;
  border-left-color: #0EA5E9;
  background: rgba(14, 165, 233, 0.05);
  padding-left: 24px;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
}

/* ========================================
   HERO SECTION - GRADIENT & GLOW
   ======================================== */

.hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(15, 23, 42, 0.5) 100%);
  border-bottom: 2px solid rgba(14, 165, 233, 0.2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  animation: pulse 4s 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: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #94A3B8;
  margin-bottom: 32px;
  line-height: 1.8;
  animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 0.8s ease-out 0.4s backwards;
}

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

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

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

/* ========================================
   PAGE HERO - SMALLER VERSION
   ======================================== */

.page-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(15, 23, 42, 0.4) 100%);
  border-bottom: 2px solid rgba(14, 165, 233, 0.2);
  text-align: center;
  position: relative;
}

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

.page-hero p {
  font-size: 18px;
  color: #94A3B8;
  max-width: 700px;
  margin: 0 auto 24px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.hero-benefits li {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #7DD3FC;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
}

/* ========================================
   STATS SECTION - GLOWING CARDS
   ======================================== */

.stats {
  padding: 60px 20px;
  background: rgba(15, 23, 42, 0.5);
}

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

.stat-card {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(15, 23, 42, 0.5));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #0EA5E9, #06B6D4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.stat-card:hover::before {
  opacity: 0.3;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(14, 165, 233, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #0EA5E9;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.stat-label {
  font-size: 14px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   SERVICE CARDS - NEON BORDERS
   ======================================== */

.services-overview,
.services-detail {
  padding: 80px 20px;
}

.services-overview h2,
.services-detail h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

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

.service-card,
.service-detail-card {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card:hover,
.service-detail-card:hover {
  transform: translateY(-5px);
  border-color: #0EA5E9;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(14, 165, 233, 0.3);
}

.service-card h3,
.service-detail-card h3 {
  color: #60A5FA;
  margin-bottom: 12px;
}

.service-card p,
.service-detail-card p {
  color: #CBD5E1;
  flex-grow: 1;
}

.service-price {
  font-size: 18px;
  font-weight: 600;
  color: #F59E0B;
  margin-top: 8px;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.service-features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  color: #94A3B8;
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}

.service-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #0EA5E9;
  font-weight: bold;
}

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

/* ========================================
   PROCESS STEPS - TIMELINE
   ======================================== */

.process {
  padding: 80px 20px;
  background: rgba(15, 23, 42, 0.5);
}

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

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

.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0EA5E9, #06B6D4);
  border: 3px solid rgba(14, 165, 233, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 auto 16px;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
}

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

.step p {
  color: #94A3B8;
  font-size: 14px;
}

/* ========================================
   TESTIMONIALS - DARK CARDS
   ======================================== */

.testimonials {
  padding: 80px 20px;
}

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

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

.testimonial-card {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(15, 23, 42, 0.5));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card h3 {
  color: #60A5FA;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-style: italic;
  color: #E0E7FF;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  padding-top: 16px;
}

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

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

/* ========================================
   CTA SECTION - CENTERED GRADIENT
   ======================================== */

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(15, 23, 42, 0.6));
  border-top: 2px solid rgba(14, 165, 233, 0.3);
  border-bottom: 2px solid rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.cta-content h2 {
  margin-bottom: 16px;
}

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

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

/* ========================================
   COMPANY STORY & MISSION
   ======================================== */

.company-story,
.mission-vision,
.expertise,
.accreditations {
  padding: 80px 20px;
}

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

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #CBD5E1;
  margin-bottom: 24px;
}

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

.milestone {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.milestone-year {
  font-size: 32px;
  font-weight: 700;
  color: #0EA5E9;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

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

.milestone p {
  color: #94A3B8;
  font-size: 14px;
}

.two-col-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.mission-card,
.vision-card {
  flex: 1;
  min-width: 280px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(15, 23, 42, 0.5));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.1);
}

.values-section {
  margin-top: 48px;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.values-grid,
.expertise-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card,
.expertise-card,
.benefit-card {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.value-card:hover,
.expertise-card:hover,
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #0EA5E9;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(14, 165, 233, 0.3);
}

.value-card h3,
.expertise-card h3,
.benefit-card h3 {
  color: #60A5FA;
  margin-bottom: 12px;
  font-size: 18px;
}

.value-card p,
.expertise-card p,
.benefit-card p {
  color: #CBD5E1;
  font-size: 14px;
}

.accreditation-list {
  max-width: 600px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accreditation-list li {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  color: #E0E7FF;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.1);
}

/* ========================================
   EVENT TYPES & SERVICES
   ======================================== */

.event-types,
.event-services,
.travel-services,
.optimization {
  padding: 80px 20px;
}

.event-types h2,
.event-services h2,
.travel-services h2,
.optimization h2 {
  text-align: center;
  margin-bottom: 48px;
}

.event-types-grid,
.travel-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.event-type-card,
.travel-service-card {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(15, 23, 42, 0.5));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-type-card:hover,
.travel-service-card:hover {
  transform: translateY(-5px);
  border-color: #0EA5E9;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 50px rgba(14, 165, 233, 0.3);
}

.event-type-card h3,
.travel-service-card h3 {
  color: #60A5FA;
}

.event-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.event-meta span {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  color: #7DD3FC;
}

.travel-service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.travel-service-card li {
  color: #94A3B8;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.travel-service-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #0EA5E9;
}

.services-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.category {
  flex: 1;
  min-width: 260px;
  max-width: 300px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.category h3 {
  color: #60A5FA;
  margin-bottom: 20px;
}

.category ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category li {
  color: #CBD5E1;
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}

.category li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0EA5E9;
  font-weight: bold;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-methods,
.office-location,
.departments {
  padding: 60px 20px;
}

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

.contact-card,
.department-card {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(15, 23, 42, 0.5));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.1);
}

.contact-card h3,
.department-card h3 {
  color: #60A5FA;
  margin-bottom: 16px;
}

.contact-card p,
.department-card p {
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.8;
}

.contact-card a {
  color: #0EA5E9;
  text-decoration: underline;
}

.contact-card a:hover {
  color: #06B6D4;
}

.contact-note {
  font-size: 12px;
  color: #94A3B8;
  font-style: italic;
  margin-top: 8px;
}

.contact-form-section {
  padding: 80px 20px;
  background: rgba(15, 23, 42, 0.5);
}

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

.form-info {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: center;
}

.privacy-note {
  font-size: 14px;
  color: #94A3B8;
  font-style: italic;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(15, 23, 42, 0.5));
  border: 2px dashed rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}

.form-placeholder p {
  color: #CBD5E1;
  margin-bottom: 12px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.address-block,
.directions {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.address-block h3,
.directions h4 {
  color: #60A5FA;
  margin-bottom: 16px;
}

.directions p {
  margin-bottom: 16px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(15, 23, 42, 0.4));
  border-bottom: 2px solid rgba(14, 165, 233, 0.2);
  text-align: center;
}

.legal-hero h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.legal-hero p {
  color: #94A3B8;
  font-size: 14px;
}

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

.legal-content .text-section {
  max-width: 900px;
}

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

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(15, 23, 42, 0.5));
  border-bottom: 2px solid rgba(14, 165, 233, 0.2);
  text-align: center;
}

.thank-you-content h1 {
  margin-bottom: 24px;
}

.confirmation-message {
  font-size: 20px;
  color: #94A3B8;
  margin-bottom: 40px;
}

.next-steps {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: left;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.next-steps li {
  color: #CBD5E1;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}

.next-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0EA5E9;
  font-weight: bold;
  font-size: 20px;
}

.what-to-expect,
.while-you-wait,
.social-proof {
  padding: 60px 20px;
}

.what-to-expect h2,
.while-you-wait h2,
.social-proof h2 {
  text-align: center;
  margin-bottom: 48px;
}

.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-step {
  flex: 1;
  min-width: 220px;
  max-width: 240px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.timeline-step .step-number {
  width: 50px;
  height: 50px;
  font-size: 20px;
}

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

.timeline-step p {
  color: #94A3B8;
  font-size: 14px;
  margin-bottom: 8px;
}

.timeframe {
  display: block;
  font-size: 12px;
  color: #0EA5E9;
  font-weight: 600;
  margin-top: 8px;
}

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

.suggestion-card {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(15, 23, 42, 0.5));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.1);
}

.suggestion-card h3 {
  margin-bottom: 16px;
}

.suggestion-card p {
  margin-bottom: 24px;
}

/* ========================================
   FOOTER - MODERN GRADIENT
   ======================================== */

.site-footer {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
  border-top: 2px solid rgba(14, 165, 233, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5), 0 0 80px rgba(14, 165, 233, 0.1);
}

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

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

.footer-col h4 {
  color: #60A5FA;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col li a {
  color: #94A3B8;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-col li a:hover {
  color: #0EA5E9;
  padding-left: 8px;
}

.footer-col a[href^="mailto:"],
.footer-col a[href^="tel:"] {
  color: #0EA5E9;
}

.footer-col a[href^="mailto:"]:hover,
.footer-col a[href^="tel:"]:hover {
  color: #06B6D4;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  padding-top: 20px;
  text-align: center;
}

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

/* ========================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(14, 165, 233, 0.3);
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(14, 165, 233, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

.cookie-text p {
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.cookie-text a:hover {
  color: #06B6D4;
}

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

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

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
  border: 2px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.9), 0 0 100px rgba(14, 165, 233, 0.3);
  position: relative;
}

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

.cookie-modal-header h3 {
  color: #60A5FA;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: transparent;
  border: 2px solid #0EA5E9;
  color: #0EA5E9;
  font-size: 24px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: #06B6D4;
  color: #06B6D4;
  transform: rotate(90deg);
}

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

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

.cookie-category h4 {
  color: #7DD3FC;
  margin-bottom: 0;
  font-size: 16px;
}

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(100, 116, 139, 0.3);
  border-radius: 13px;
  border: 1px solid rgba(14, 165, 233, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.cookie-toggle.active {
  background: linear-gradient(135deg, #0EA5E9, #06B6D4);
}

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

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

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

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

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  .page-hero { padding: 60px 20px; }
  .page-hero h1 { font-size: 32px; }
  
  .hero-cta,
  .cta-buttons,
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn,
  .cta-buttons .btn,
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .stats-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .values-grid,
  .expertise-grid,
  .benefits-grid,
  .event-types-grid,
  .travel-services-grid,
  .contact-grid,
  .departments-grid,
  .timeline-steps,
  .suggestions-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-card,
  .service-card,
  .service-detail-card,
  .step,
  .testimonial-card,
  .value-card,
  .expertise-card,
  .benefit-card,
  .event-type-card,
  .travel-service-card,
  .contact-card,
  .department-card,
  .timeline-step,
  .suggestion-card {
    max-width: 100%;
    width: 100%;
  }
  
  .two-col-grid,
  .location-details {
    flex-direction: column;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-modal-footer .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  
  .hero h1 { font-size: 48px; }
  .page-hero h1 { font-size: 40px; }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

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

/* Smooth scrolling for all links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #0EA5E9;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .site-header {
    position: relative;
  }
}