/* =================================================================
   FIREFLY MOTOR - SCANDINAVIAN CLEAN DESIGN SYSTEM
   ================================================================= */

/* CSS RESET & NORMALIZE */
* {
  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: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* =================================================================
   SCANDINAVIAN CLEAN TYPOGRAPHY
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1B4B8C;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

a {
  color: #1B4B8C;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E8B44D;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

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

strong {
  font-weight: 600;
  color: #2C3E50;
}

/* =================================================================
   LAYOUT CONTAINERS
   ================================================================= */

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

/* =================================================================
   HEADER & NAVIGATION - SCANDINAVIAN MINIMALISM
   ================================================================= */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8EDF2;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(27, 75, 140, 0.05);
}

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

.logo {
  height: 40px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  margin: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

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

.header-cta {
  display: none;
}

/* =================================================================
   MOBILE MENU - SCANDINAVIAN SLIDE-IN
   ================================================================= */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #1B4B8C;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #E8B44D;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  background-color: #F4F7FA;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  color: #2C3E50;
  cursor: pointer;
  margin-bottom: 24px;
  transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E8EDF2;
}

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

.mobile-nav a {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  border-bottom: 1px solid #E8EDF2;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover {
  color: #1B4B8C;
  padding-left: 8px;
}

/* =================================================================
   BUTTONS - SCANDINAVIAN SIMPLICITY
   ================================================================= */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #1B4B8C;
  color: #FFFFFF;
  border-color: #1B4B8C;
}

.btn-primary:hover {
  background-color: #E8B44D;
  border-color: #E8B44D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 180, 77, 0.3);
}

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

.btn-secondary:hover {
  background-color: #1B4B8C;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* =================================================================
   HERO SECTION - SCANDINAVIAN CLEAN
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #F4F7FA 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  color: #1B4B8C;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.hero-benefits span {
  background-color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  color: #2C3E50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

/* =================================================================
   SECTIONS - CONSISTENT SPACING
   ================================================================= */

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

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #5A6C7D;
}

/* =================================================================
   SERVICES GRID - FLEXBOX LAYOUT
   ================================================================= */

.services-grid,
.country-cards,
.benefits-grid,
.testimonials-grid,
.link-grid,
.category-grid,
.addon-grid,
.pricing-grid,
.methods-grid,
.resource-grid,
.article-grid,
.breakdown-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.country-card,
.benefit,
.testimonial-card,
.link-card,
.category-card,
.addon-card,
.pricing-card,
.method-card,
.resource-card,
.article-card,
.breakdown-card,
.stat-card {
  background-color: #FFFFFF;
  border: 1px solid #E8EDF2;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card:hover,
.country-card:hover,
.link-card:hover,
.category-card:hover,
.pricing-card:hover,
.resource-card:hover,
.article-card:hover {
  border-color: #E8B44D;
  box-shadow: 0 8px 24px rgba(27, 75, 140, 0.1);
  transform: translateY(-4px);
}

.service-card h3,
.country-card h3,
.benefit h3,
.link-card h3,
.category-card h3,
.addon-card h3 {
  color: #1B4B8C;
  margin-bottom: 12px;
}

.service-card p,
.country-card p,
.benefit p,
.link-card p,
.category-card p,
.addon-card p {
  flex-grow: 1;
}

/* =================================================================
   PRICING SECTION - SCANDINAVIAN ELEGANCE
   ================================================================= */

.price {
  font-size: 24px;
  font-weight: 700;
  color: #1B4B8C;
  margin: 16px 0;
}

.price-large {
  font-size: 40px;
  font-weight: 700;
  color: #1B4B8C;
  margin: 24px 0;
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid #E8B44D;
  box-shadow: 0 8px 24px rgba(232, 180, 77, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E8B44D;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-features ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.price-features li {
  padding: 8px 0;
  color: #5A6C7D;
  font-size: 14px;
}

.country-highlights {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.country-highlights span {
  background-color: #F4F7FA;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: #2C3E50;
  font-weight: 600;
}

/* =================================================================
   PROCESS STEPS - FLEXBOX LAYOUT
   ================================================================= */

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

.step {
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number,
.step-num {
  width: 60px;
  height: 60px;
  background-color: #1B4B8C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

/* =================================================================
   TESTIMONIALS - LIGHT BACKGROUNDS FOR READABILITY
   ================================================================= */

.testimonials {
  background-color: #F4F7FA;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #FFFFFF;
  border-left: 4px solid #E8B44D;
  padding: 32px;
  margin-bottom: 24px;
}

.testimonial-card p {
  font-style: italic;
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

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

.testimonial-author span {
  color: #5A6C7D;
  font-size: 14px;
}

/* =================================================================
   CTA SECTIONS - SCANDINAVIAN ACCENT
   ================================================================= */

.cta-banner,
.cta-consultation,
.cta-expert,
.cta-quote,
.cta-join {
  background: linear-gradient(135deg, #1B4B8C 0%, #2C5BA0 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 4px;
  margin: 60px 0;
}

.cta-banner h2,
.cta-consultation h2,
.cta-expert h2,
.cta-quote h2,
.cta-join h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-consultation p,
.cta-expert p,
.cta-quote p,
.cta-join p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-banner .btn-primary,
.cta-consultation .btn-primary,
.cta-expert .btn-primary,
.cta-quote .btn-primary,
.cta-join .btn-primary {
  background-color: #E8B44D;
  border-color: #E8B44D;
}

.cta-banner .btn-primary:hover,
.cta-consultation .btn-primary:hover,
.cta-expert .btn-primary:hover,
.cta-quote .btn-primary:hover,
.cta-join .btn-primary:hover {
  background-color: #FFFFFF;
  color: #1B4B8C;
  border-color: #FFFFFF;
}

/* =================================================================
   SERVICE DETAIL PAGES
   ================================================================= */

.service-detail {
  background-color: #FFFFFF;
  border: 1px solid #E8EDF2;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 32px;
}

.service-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}

.info-item {
  flex: 1 1 200px;
  background-color: #F4F7FA;
  padding: 16px;
  border-radius: 4px;
}

.info-item strong {
  display: block;
  color: #1B4B8C;
  margin-bottom: 8px;
}

.whats-included {
  margin: 24px 0;
}

.whats-included h4 {
  color: #1B4B8C;
  margin-bottom: 16px;
}

.whats-included ul {
  list-style: none;
  padding: 0;
}

.whats-included li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.whats-included li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B44D;
  font-weight: 700;
}

/* =================================================================
   COUNTRY DETAIL SECTIONS
   ================================================================= */

.featured-detail {
  background-color: #FFFFFF;
  border: 1px solid #E8EDF2;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
}

.country-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 24px 0;
}

.detail-section {
  flex: 1 1 250px;
}

.detail-section h4 {
  color: #1B4B8C;
  margin-bottom: 12px;
}

/* =================================================================
   ABOUT PAGE - MISSION & STATS
   ================================================================= */

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

.mission-box {
  flex: 1 1 300px;
  background-color: #F4F7FA;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #1B4B8C;
}

.values {
  margin-top: 40px;
}

.values ul {
  list-style: none;
  padding: 0;
}

.values li {
  padding: 16px;
  margin-bottom: 12px;
  background-color: #FFFFFF;
  border: 1px solid #E8EDF2;
  border-radius: 4px;
  font-size: 16px;
}

.statistics {
  background-color: #F4F7FA;
  padding: 60px 20px;
}

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

.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E8EDF2;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1B4B8C;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #5A6C7D;
}

/* =================================================================
   TIMELINE
   ================================================================= */

.timeline-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8EDF2;
  border-radius: 4px;
}

.year {
  font-size: 24px;
  font-weight: 700;
  color: #1B4B8C;
  min-width: 80px;
}

/* =================================================================
   APPROACH GRID
   ================================================================= */

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

.approach-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #F4F7FA;
  padding: 32px;
  border-radius: 4px;
  text-align: center;
}

/* =================================================================
   ADDITIONAL SERVICES LIST
   ================================================================= */

.additional-services {
  margin-top: 60px;
}

.service-list {
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-bottom: 16px;
  background-color: #FFFFFF;
  border: 1px solid #E8EDF2;
  border-radius: 4px;
  flex-wrap: wrap;
  gap: 16px;
}

.service-item span:first-child {
  flex: 1 1 200px;
  color: #2C3E50;
  font-weight: 500;
}

.service-item .price {
  font-size: 18px;
  font-weight: 700;
  color: #1B4B8C;
  margin: 0;
}

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

.contact-detail {
  font-size: 18px;
  font-weight: 600;
  color: #1B4B8C;
  margin-bottom: 8px;
}

.contact-info {
  color: #5A6C7D;
  font-size: 14px;
}

.booking-info {
  background-color: #F4F7FA;
  padding: 32px;
  border-radius: 4px;
  margin: 32px 0;
}

.booking-info ul {
  list-style: none;
  padding: 0;
}

.booking-info li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.booking-info li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E8B44D;
  font-weight: 700;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.address-box,
.transport-box {
  flex: 1 1 300px;
  background-color: #F4F7FA;
  padding: 24px;
  border-radius: 4px;
}

.hours-table {
  max-width: 600px;
  margin: 32px auto 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 8px;
  background-color: #FFFFFF;
  border: 1px solid #E8EDF2;
  border-radius: 4px;
}

.hours-row span:first-child {
  font-weight: 600;
  color: #2C3E50;
}

.hours-row span:last-child {
  color: #5A6C7D;
}

/* =================================================================
   BLOG PAGE
   ================================================================= */

.article-card {
  text-align: left;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #5A6C7D;
  margin-top: 16px;
}

.newsletter {
  background: linear-gradient(135deg, #F4F7FA 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

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

.newsletter-benefits ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.newsletter-benefits li {
  background-color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid #E8EDF2;
  font-size: 14px;
  color: #2C3E50;
}

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

.legal-hero {
  background-color: #F4F7FA;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.legal-hero p {
  color: #5A6C7D;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E8EDF2;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  color: #1B4B8C;
  margin-bottom: 16px;
}

.legal-section h3 {
  color: #2C3E50;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.thankyou-hero,
.error-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #F4F7FA 0%, #FFFFFF 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #E8B44D;
  line-height: 1;
  margin-bottom: 24px;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

/* =================================================================
   PAGE HERO
   ================================================================= */

.page-hero {
  background: linear-gradient(135deg, #F4F7FA 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

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

/* =================================================================
   GUARANTEE SECTION
   ================================================================= */

.guarantee {
  background-color: #F4F7FA;
  padding: 60px 20px;
  text-align: center;
  border-radius: 4px;
  margin: 60px 0;
}

.guarantee h2 {
  color: #1B4B8C;
  margin-bottom: 16px;
}

.guarantee p {
  font-size: 18px;
  color: #2C3E50;
  max-width: 700px;
  margin: 0 auto;
}

/* =================================================================
   FOOTER - SCANDINAVIAN MINIMALISM
   ================================================================= */

footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-column p,
.footer-column a {
  color: #B0BEC5;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #E8B44D;
}

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

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.legal-links a {
  color: #B0BEC5;
  font-size: 12px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #E8B44D;
}

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

/* =================================================================
   COOKIE CONSENT BANNER - SCANDINAVIAN CLEAN
   ================================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #E8B44D;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #1B4B8C;
  color: #FFFFFF;
}

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

.cookie-reject {
  background-color: #F4F7FA;
  color: #2C3E50;
}

.cookie-reject:hover {
  background-color: #E8EDF2;
}

.cookie-settings {
  background-color: transparent;
  color: #1B4B8C;
  border: 1px solid #1B4B8C;
}

.cookie-settings:hover {
  background-color: #1B4B8C;
  color: #FFFFFF;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 4px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #5A6C7D;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F4F7FA;
  border-radius: 4px;
}

.cookie-category h4 {
  color: #1B4B8C;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

.toggle-switch:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

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

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

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

.cookie-save {
  padding: 12px 24px;
  background-color: #1B4B8C;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-save:hover {
  background-color: #E8B44D;
}

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

@media (min-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  /* Show desktop navigation */
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  .header-cta {
    display: block;
  }
  
  /* Hide mobile menu toggle on desktop */
  .mobile-menu-toggle {
    display: none;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 100px 20px;
  }
  
  /* Grid improvements */
  .service-card,
  .country-card,
  .benefit,
  .link-card,
  .category-card,
  .addon-card,
  .pricing-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  /* Process steps horizontal */
  .process-steps {
    justify-content: space-between;
  }
  
  .step {
    flex: 1 1 auto;
  }
  
  /* Footer columns */
  .footer-column {
    flex: 1 1 calc(25% - 40px);
  }
  
  /* Cookie banner layout */
  .cookie-content {
    flex-wrap: nowrap;
  }
  
  .cookie-buttons {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  /* Container adjustments */
  .container {
    padding: 0 40px;
  }
  
  /* Section spacing */
  section {
    padding: 60px 40px;
  }
  
  /* Hero improvements */
  .hero {
    padding: 120px 40px;
  }
  
  /* Two column grids */
  .service-card,
  .country-card,
  .addon-card,
  .pricing-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .mission-box {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 767px) {
  /* Mobile typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  /* Mobile spacing */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  /* Mobile cards */
  .service-card,
  .country-card,
  .benefit,
  .testimonial-card,
  .link-card,
  .category-card,
  .addon-card,
  .pricing-card,
  .method-card,
  .resource-card,
  .article-card,
  .breakdown-card,
  .stat-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 24px;
  }
  
  /* Mobile CTA sections */
  .cta-banner,
  .cta-consultation,
  .cta-expert,
  .cta-quote,
  .cta-join {
    padding: 40px 16px;
  }
  
  /* Mobile footer */
  footer {
    padding: 40px 16px 16px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Mobile buttons */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Mobile cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Mobile service items */
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Mobile hours table */
  .hours-row {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Mobile timeline */
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .year {
    min-width: auto;
  }
}

/* =================================================================
   ANIMATIONS
   ================================================================= */

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

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* =================================================================
   PRINT STYLES
   ================================================================= */

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cta-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}