/* ============================================
   JEWEL PATH - TECH FUTURISTIC DESIGN SYSTEM
   Modern Travel Guides with Futuristic Edge
   ============================================ */

/* 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: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1628 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(44, 95, 124, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

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

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

p {
  margin-bottom: 16px;
  color: #B0B8C8;
  line-height: 1.8;
}

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

a:hover {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

ul {
  list-style: none;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4158 100%);
  color: #FFFFFF;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(44, 95, 124, 0.4), 0 0 30px rgba(44, 95, 124, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3A7A9E 0%, #2C5F7C 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 95, 124, 0.6), 0 0 40px rgba(44, 95, 124, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #FFD700;
  border-color: #FFD700;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-text {
  background: transparent;
  color: #D4AF37;
  padding: 8px 0;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.btn-text:hover {
  color: #FFD700;
  transform: translateX(5px);
}

/* HEADER */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo img {
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
  transition: filter 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

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

.main-nav a {
  color: #B0B8C8;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

.header-cta {
  display: flex;
  gap: 16px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #2C5F7C 0%, #1E4158 100%);
  color: #FFFFFF;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(44, 95, 124, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #3A7A9E 0%, #2C5F7C 100%);
  box-shadow: 0 6px 30px rgba(44, 95, 124, 0.6);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  backdrop-filter: blur(20px);
  border-left: 2px solid rgba(212, 175, 55, 0.3);
  padding: 80px 32px 32px;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #FFD700;
  border-color: #FFD700;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #B0B8C8;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4AF37;
  border-left-color: #D4AF37;
  background: rgba(212, 175, 55, 0.05);
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 95, 124, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

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

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

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

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

/* PAGE HERO */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(44, 95, 124, 0.1) 0%, transparent 100%);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 60px;
}

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

.page-hero p {
  font-size: 20px;
  color: #B0B8C8;
  max-width: 700px;
  margin: 0 auto 16px;
}

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

/* SECTIONS */
section {
  padding: 60px 0;
  margin-bottom: 40px;
  position: relative;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
}

/* BENEFITS SECTION */
.benefits {
  background: rgba(26, 31, 58, 0.5);
  border-radius: 16px;
  padding: 80px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

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

.benefit-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 95, 124, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3), 0 0 40px rgba(44, 95, 124, 0.2);
}

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

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  transition: transform 0.4s ease;
}

.benefit-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

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

.benefit-card p {
  font-size: 15px;
  color: #B0B8C8;
  margin-bottom: 0;
}

/* SERVICES SECTION */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(44, 95, 124, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2C5F7C, #D4AF37);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card h3 {
  color: #D4AF37;
  margin-bottom: 16px;
}

.service-card p {
  color: #B0B8C8;
  margin-bottom: 20px;
  min-height: 80px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* SERVICES CATALOG */
.services-grid-full {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card-extended {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(44, 95, 124, 0.3);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
}

.service-card-extended:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.service-card-extended h3 {
  font-size: 26px;
  color: #D4AF37;
  margin-bottom: 20px;
}

.service-card-extended > p {
  color: #B0B8C8;
  margin-bottom: 24px;
  line-height: 1.8;
}

.features-list {
  margin: 24px 0;
  padding-left: 0;
}

.features-list li {
  color: #B0B8C8;
  padding: 8px 0 8px 32px;
  position: relative;
  line-height: 1.6;
}

.features-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 18px;
}

.service-card-extended .price {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 24px 0;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* TESTIMONIALS */
.testimonials {
  background: rgba(26, 31, 58, 0.5);
  border-radius: 16px;
  padding: 80px 24px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

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

.testimonial-card > p:first-of-type {
  font-style: italic;
  color: #1A1F3A;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: #2C5F7C;
  font-size: 14px;
  margin-bottom: 0;
}

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

.destination-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(44, 95, 124, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
}

.destination-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

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

.destination-card p {
  color: #B0B8C8;
  margin-bottom: 20px;
  line-height: 1.8;
}

.starting-price {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF !important;
  margin-bottom: 20px !important;
}

/* DESTINATION CATEGORIES */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.category-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.category-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

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

.category-card p {
  color: #B0B8C8;
  font-size: 15px;
  margin-bottom: 0;
}

/* TRUST SIGNALS */
.trust-signals {
  background: rgba(26, 31, 58, 0.5);
  border-radius: 16px;
  padding: 80px 24px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: rgba(10, 14, 39, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-card > p:last-child {
  color: #B0B8C8;
  font-size: 16px;
  margin-bottom: 0;
}

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

.value-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(44, 95, 124, 0.3);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.value-card img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.value-card h3 {
  color: #D4AF37;
  margin-bottom: 8px;
}

.value-card p {
  color: #B0B8C8;
  line-height: 1.8;
  margin-bottom: 0;
}

/* BLOG */
.featured-article {
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 60px;
  transition: all 0.4s ease;
}

.featured-article:hover {
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.featured-article h2 {
  text-align: left;
  font-size: 36px;
  color: #D4AF37;
  margin-bottom: 20px;
}

.featured-article p {
  color: #B0B8C8;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: #7A8599;
  font-style: italic;
  margin-bottom: 24px;
}

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

.article-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(44, 95, 124, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

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

.article-card > p:not(.meta) {
  color: #B0B8C8;
  line-height: 1.8;
  flex-grow: 1;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, rgba(44, 95, 124, 0.2) 0%, rgba(26, 31, 58, 0.8) 100%);
  border-radius: 16px;
  padding: 80px 24px;
  text-align: center;
}

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

.newsletter > p {
  font-size: 18px;
  color: #B0B8C8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 14px 20px;
  font-size: 16px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(10, 14, 39, 0.8);
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.email-input::placeholder {
  color: #7A8599;
}

.privacy-note {
  font-size: 14px;
  color: #7A8599;
  margin-bottom: 0;
}

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

.contact-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 300px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(44, 95, 124, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.contact-card img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.contact-card h3 {
  color: #D4AF37;
  margin-bottom: 8px;
}

.contact-card p {
  color: #B0B8C8;
  margin-bottom: 8px;
}

/* CONTACT FORM */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(44, 95, 124, 0.3);
  border-radius: 16px;
  padding: 48px;
}

.form-wrapper h2 {
  text-align: left;
  margin-bottom: 16px;
}

.form-wrapper > p {
  color: #B0B8C8;
  margin-bottom: 32px;
}

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

.form-field label {
  display: block;
  color: #B0B8C8;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 15px;
}

.input-placeholder,
.textarea-placeholder {
  width: 100%;
  padding: 14px 20px;
  background: rgba(26, 31, 58, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.input-placeholder {
  height: 50px;
}

.textarea-placeholder {
  height: 150px;
}

.input-placeholder:hover,
.textarea-placeholder:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #B0B8C8;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label a {
  color: #D4AF37;
  text-decoration: underline;
}

/* MAP */
.map-placeholder {
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(44, 95, 124, 0.3);
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.map-placeholder p {
  color: #B0B8C8;
  font-size: 18px;
  max-width: 600px;
}

/* LEGAL CONTENT */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(44, 95, 124, 0.3);
  border-radius: 16px;
  padding: 48px;
}

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

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper p {
  color: #B0B8C8;
  line-height: 1.9;
  margin-bottom: 20px;
}

.content-wrapper a {
  color: #D4AF37;
  text-decoration: underline;
}

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

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

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #2C5F7C, #D4AF37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #FFFFFF;
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.4);
  animation: scaleIn 0.6s ease;
}

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

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

.thank-you-content .subtitle {
  font-size: 22px;
  color: #D4AF37;
  margin-bottom: 12px;
}

.confirmation-details {
  padding: 60px 0;
}

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

.step-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  max-width: 300px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

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

.step-card p {
  color: #B0B8C8;
  margin-bottom: 0;
}

.contact-reminder {
  text-align: center;
  font-size: 18px;
  color: #B0B8C8;
  margin-top: 32px;
}

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

.resource-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(44, 95, 124, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.resource-card h3 {
  color: #D4AF37;
}

.resource-card p {
  color: #B0B8C8;
  flex-grow: 1;
}

.back-home {
  text-align: center;
  padding: 40px 0;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, rgba(44, 95, 124, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-banner h2 {
  position: relative;
  z-index: 1;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner > p {
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: #B0B8C8;
  margin-bottom: 32px;
}

.cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.contact-info {
  color: #B0B8C8;
  font-size: 16px;
  margin: 0;
}

/* FOOTER */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid rgba(212, 175, 55, 0.2);
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-col h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

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

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

.footer-nav a {
  color: #B0B8C8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
}

.footer-nav a:hover {
  color: #D4AF37;
  border-left-color: #D4AF37;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.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 1 300px;
}

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

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

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

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

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 24px;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 24px;
  color: #D4AF37;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
}

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

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

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

.cookie-toggle.active {
  background: #D4AF37;
}

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

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .benefit-card,
  .service-card,
  .destination-card,
  .article-card {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  /* MOBILE NAVIGATION */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* HERO */
  .hero {
    padding: 60px 0;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* SECTIONS */
  section {
    padding: 40px 0;
    margin-bottom: 20px;
  }
  
  /* GRIDS */
  .benefits-grid,
  .services-grid,
  .services-grid-full,
  .destinations-grid,
  .categories-grid,
  .values-grid,
  .articles-grid,
  .contact-grid,
  .stats-grid,
  .steps-grid,
  .resources-grid {
    gap: 20px;
  }
  
  .benefit-card,
  .service-card,
  .service-card-extended,
  .destination-card,
  .category-card,
  .value-card,
  .article-card,
  .contact-card,
  .stat-card,
  .step-card,
  .resource-card,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA BANNER */
  .cta-banner {
    padding: 60px 20px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    min-width: 100%;
  }
  
  /* NEWSLETTER */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  /* COOKIE BANNER */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* MOBILE MENU */
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
  
  /* FORMS */
  .form-wrapper,
  .content-wrapper {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 0;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .benefit-card,
  .service-card,
  .service-card-extended,
  .destination-card,
  .value-card,
  .article-card,
  .contact-card {
    padding: 24px;
  }
  
  .cta-banner,
  .benefits,
  .trust-signals,
  .newsletter {
    padding: 48px 16px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

/* ACCESSIBILITY */
.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;
}

/* FOCUS STATES */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  .mobile-menu-toggle,
  .cookie-banner,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}