/* ========================================
   FluxOrbit - Geometric Structured Design
   Modern CSS with Flexbox Layout
   ======================================== */

/* ========================================
   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', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ========================================
   Typography - Geometric & Angular
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #1a1a1a;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

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

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
}

/* ========================================
   Container & Layout System
   ======================================== */

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

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

/* ========================================
   Header - Geometric Structure
   ======================================== */

header {
  background-color: #ffffff;
  border-bottom: 3px solid #2C5F8D;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(44, 95, 141, 0.1);
}

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

.logo img {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C5F8D;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #E67E50;
  border-bottom-color: #E67E50;
}

/* ========================================
   Mobile Menu - Geometric Slide
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2C5F8D;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #E67E50;
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: #2C5F8D;
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E67E50;
  border-color: #E67E50;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  padding: 12px 16px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-nav a:hover {
  background-color: rgba(230, 126, 80, 0.2);
  border-left-color: #E67E50;
  transform: translateX(8px);
}

/* ========================================
   Hero Section - Angular Design
   ======================================== */

.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3d5c 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(230, 126, 80, 0.1);
  transform: rotate(45deg);
  border: 3px solid rgba(244, 211, 94, 0.2);
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  font-size: 14px;
  color: #F4D35E;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: #F4D35E;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ========================================
   Buttons - Geometric Style
   ======================================== */

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

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
}

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

.btn-primary {
  background-color: #E67E50;
  color: #ffffff;
  border-color: #E67E50;
}

.btn-primary:hover {
  background-color: #d66940;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(230, 126, 80, 0.3);
}

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

.btn-secondary:hover {
  background-color: #ffffff;
  color: #2C5F8D;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

/* ========================================
   Card Grids - Structured Layout
   ======================================== */

.value-grid,
.country-grid,
.services-grid,
.testimonials-grid,
.stats-grid,
.benefits-grid,
.membership-grid,
.contact-grid,
.features-grid,
.resources-grid,
.blog-grid,
.tools-grid,
.categories-grid,
.suggestions-grid,
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-card,
.country-card,
.service-card,
.testimonial-card,
.stat-card,
.benefit-card,
.membership-card,
.contact-card,
.feature-card,
.resource-card,
.blog-card,
.tool-category,
.category-card,
.suggestion-card,
.mission-card,
.event-card,
.faq-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 3px solid #2C5F8D;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card::before,
.country-card::before,
.service-card::before,
.benefit-card::before,
.category-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 40px;
  height: 40px;
  background-color: #E67E50;
  transition: all 0.3s ease;
}

.value-card:hover,
.country-card:hover,
.service-card:hover,
.benefit-card:hover,
.membership-card:hover,
.contact-card:hover,
.feature-card:hover,
.resource-card:hover,
.blog-card:hover,
.category-card:hover,
.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 #F4D35E;
  border-color: #E67E50;
}

.value-card:hover::before,
.country-card:hover::before,
.service-card:hover::before,
.benefit-card:hover::before,
.category-card:hover::before {
  width: 60px;
  height: 60px;
}

.service-card h3,
.value-card h3,
.country-card h3,
.benefit-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #E67E50;
  margin: 16px 0;
}

.price-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #E67E50;
  text-align: center;
  margin: 24px 0;
}

.service-card ul,
.membership-card ul {
  margin-top: 16px;
  padding-left: 0;
}

.service-card li,
.membership-card li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.service-card li::before,
.membership-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E50;
  font-weight: 700;
}

/* ========================================
   Testimonials - High Contrast
   ======================================== */

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background-color: #f8f9fa;
  border: 3px solid #2C5F8D;
  padding: 32px;
  position: relative;
}

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

.testimonial-card .author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2C5F8D;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  color: #E67E50;
  opacity: 0.3;
  line-height: 1;
}

/* ========================================
   Stats Section - Angular Numbers
   ======================================== */

.stats {
  background-color: #2C5F8D;
  color: #ffffff;
  padding: 60px 20px;
}

.stats h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
}

.stat-card {
  text-align: center;
  background-color: transparent;
  border-color: #F4D35E;
  padding: 32px;
}

.stat-card h3 {
  font-size: 56px;
  color: #F4D35E;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-card p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   Section Styling
   ======================================== */

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

section h2 {
  text-align: center;
  color: #2C5F8D;
  margin-bottom: 16px;
}

.value-proposition,
.featured-countries,
.services-overview,
.guide-features,
.benefits,
.membership,
.events,
.categories,
.featured,
.blog,
.tools,
.story,
.mission {
  padding: 80px 20px;
}

.value-proposition {
  background-color: #f8f9fa;
}

.services-overview {
  background-color: #f8f9fa;
}

/* ========================================
   CTA Sections - Bold Geometric
   ======================================== */

.cta-final,
.pricing-cta,
.cta {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3d5c 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.pricing-cta::before,
.cta::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background-color: rgba(230, 126, 80, 0.1);
  transform: rotate(45deg);
  border: 3px solid rgba(244, 211, 94, 0.2);
}

.cta-final h2,
.pricing-cta h2,
.cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-final p,
.pricing-cta p,
.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.guarantee,
.trust-line,
.privacy-note {
  font-size: 14px;
  color: #F4D35E;
  margin-top: 24px;
  font-weight: 600;
}

.pricing-cta ul {
  max-width: 400px;
  margin: 32px auto;
  text-align: left;
}

.pricing-cta li {
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.pricing-cta li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4D35E;
  font-weight: 700;
  font-size: 18px;
}

/* ========================================
   Membership Cards - Featured Highlight
   ======================================== */

.membership-card.featured {
  border-color: #E67E50;
  background: linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: #E67E50;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ========================================
   Timeline - Geometric Structure
   ======================================== */

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #E67E50;
  z-index: 0;
}

.timeline-item {
  flex: 1 1 calc(20% - 32px);
  min-width: 150px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-item::before {
  content: '';
  width: 48px;
  height: 48px;
  background-color: #2C5F8D;
  border: 4px solid #F4D35E;
  display: block;
  margin: 0 auto 16px;
}

.timeline-item h4 {
  font-size: 24px;
  color: #E67E50;
  margin-bottom: 8px;
}

/* ========================================
   Events & Lists
   ======================================== */

.events-list,
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.event-card {
  flex: 1 1 100%;
  border-left: 6px solid #E67E50;
}

.faq-item {
  flex: 1 1 100%;
  border-left: 6px solid #2C5F8D;
}

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

/* ========================================
   Legal Content - Structured Text
   ======================================== */

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

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

.content-wrapper h2 {
  text-align: left;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #2C5F8D;
  border-left: 6px solid #E67E50;
  padding-left: 16px;
}

.content-wrapper h3 {
  color: #2C5F8D;
  margin-top: 32px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 24px 0;
  padding-left: 32px;
}

.content-wrapper li {
  margin-bottom: 12px;
}

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

/* ========================================
   Contact Info & Office
   ======================================== */

.contact-details,
.contact-info,
.office {
  max-width: 600px;
  margin: 48px auto;
  padding: 40px;
  background-color: #f8f9fa;
  border: 3px solid #2C5F8D;
}

.contact-details p,
.contact-info p,
.office p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.contact-details strong,
.contact-info strong,
.office strong {
  color: #2C5F8D;
  font-weight: 700;
}

/* ========================================
   Thank You Pages
   ======================================== */

.next-steps,
.while-waiting,
.free-resources {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.next-steps h2,
.while-waiting h2,
.free-resources h2 {
  text-align: center;
  margin-bottom: 32px;
}

.next-steps ol {
  margin: 32px auto;
  max-width: 600px;
  padding-left: 24px;
}

.next-steps li {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.8;
}

.member-count,
.download-count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #E67E50;
  text-align: center;
  margin-top: 32px;
}

/* ========================================
   Footer - Structured Layout
   ======================================== */

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 24px;
  border-top: 4px solid #E67E50;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-column h4 {
  color: #F4D35E;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 2px solid transparent;
  padding-left: 8px;
}

.footer-nav a:hover {
  color: #F4D35E;
  border-left-color: #E67E50;
  padding-left: 16px;
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Cookie Consent Banner - Geometric
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  z-index: 1000;
  border-top: 4px solid #E67E50;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  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 {
  margin-bottom: 8px;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

.cookie-btn.accept {
  background-color: #E67E50;
  border-color: #E67E50;
}

.cookie-btn.accept:hover {
  background-color: #d66940;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #2C5F8D;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #2C5F8D;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #f8f9fa;
  border-left: 4px solid #2C5F8D;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
  background-color: #cccccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background-color: #E67E50;
}

.toggle-switch::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.toggle-switch.active::before {
  left: 28px;
}

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

/* ========================================
   Responsive Design - Mobile First
   ======================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .price-large { font-size: 32px; }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Sections */
  .section,
  .value-proposition,
  .featured-countries,
  .services-overview,
  .guide-features,
  .benefits,
  .membership,
  .cta-final,
  .pricing-cta,
  .cta {
    padding: 40px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Cards */
  .value-card,
  .country-card,
  .service-card,
  .testimonial-card,
  .stat-card,
  .benefit-card,
  .membership-card,
  .contact-card,
  .feature-card,
  .resource-card,
  .blog-card,
  .tool-category,
  .category-card,
  .suggestion-card,
  .mission-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Timeline */
  .timeline {
    flex-direction: column;
  }
  
  .timeline::before {
    display: none;
  }
  
  .timeline-item {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Membership Featured */
  .membership-card.featured {
    transform: scale(1);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .country-card,
  .service-card,
  .benefit-card,
  .membership-card,
  .contact-card,
  .feature-card,
  .resource-card,
  .blog-card,
  .tool-category,
  .category-card,
  .suggestion-card,
  .mission-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .footer-column {
    flex: 1 1 calc(50% - 40px);
  }
}

/* ========================================
   Animations & Transitions
   ======================================== */

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

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

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

.hero-content {
  animation: fadeInUp 0.8s ease forwards;
}

.btn:active {
  transform: scale(0.95);
}

/* ========================================
   Utility Classes
   ======================================== */

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

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  .hero {
    background: #ffffff;
    color: #1a1a1a;
  }
  
  a {
    text-decoration: underline;
  }
}