/* ===================================
   FRESHOVERLAYS - MODERN BOLD CSS
   Design Style: Modern Bold
   =================================== */

/* === 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.7;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1A4266;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: #C79127;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #1A4266;
  transform: translateX(2px);
}

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

li {
  margin-bottom: 12px;
  line-height: 1.8;
}

strong {
  font-weight: 700;
  color: #1A4266;
}

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

/* === HEADER === */
header {
  background: linear-gradient(135deg, #1A4266 0%, #2C5F8D 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(26, 66, 102, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #C79127;
  border-bottom-color: #C79127;
  transform: translateY(-2px);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #C79127;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(199, 145, 39, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #1A4266;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A4266 0%, #2C5F8D 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(199, 145, 39, 0.3);
  border-left-color: #C79127;
  transform: translateX(10px);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #1A4266 0%, #2C5F8D 50%, #C79127 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #C79127;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(199, 145, 39, 0.4);
}

.btn-primary:hover {
  background: #1A4266;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(26, 66, 102, 0.5);
}

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

.btn-secondary:hover {
  background: #ffffff;
  color: #1A4266;
  transform: translateY(-3px);
}

/* === SECTIONS === */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.problem-solution {
  background: #F5F5F5;
  padding: 60px 20px;
}

.content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.problem, .solution {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #C79127;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.problem h3, .solution h3 {
  color: #1A4266;
  margin-bottom: 20px;
  font-size: 24px;
}

/* === SERVICES === */
.services-highlight {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #F5F5F5 100%);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  font-weight: 600;
}

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

.service-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #1A4266;
  box-shadow: 0 8px 30px rgba(26, 66, 102, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(199, 145, 39, 0.3);
  border-color: #C79127;
}

.service-card h3 {
  color: #1A4266;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 900;
  color: #C79127;
  margin-top: 20px;
  display: block;
}

/* === PROCESS === */
.process {
  background: #1A4266;
  padding: 60px 20px;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #C79127;
  backdrop-filter: blur(10px);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #C79127;
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(199, 145, 39, 0.4);
}

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

.step p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

/* === BENEFITS === */
.benefits {
  padding: 60px 20px;
  background: #F5F5F5;
}

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

.benefit {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-top: 6px solid #C79127;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit h3 {
  color: #1A4266;
  margin-bottom: 16px;
  font-size: 22px;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C5F8D 0%, #1A4266 100%);
}

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

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

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-left: 6px solid #C79127;
  position: relative;
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #1A4266;
  font-size: 15px;
  margin-top: 16px;
}

.testimonial-card .quote {
  font-style: italic;
  color: #333;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, #C79127 0%, #1A4266 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 40px;
}

.cta-section p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 600;
}

.cta-section.urgent {
  background: linear-gradient(135deg, #d32f2f 0%, #1A4266 100%);
  border-top: 8px solid #C79127;
  border-bottom: 8px solid #C79127;
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #1A4266 0%, #2C5F8D 100%);
  padding: 60px 20px;
  text-align: center;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: #ffffff;
  font-weight: 600;
}

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

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat strong {
  font-size: 36px;
  color: #C79127;
  font-weight: 900;
}

.stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === SERVICES DETAILED === */
.services-list {
  padding: 60px 20px;
}

.service-detailed {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 12px;
  border: 3px solid #1A4266;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.service-detailed h2 {
  color: #1A4266;
  margin-bottom: 16px;
  font-size: 28px;
}

.service-price {
  font-size: 32px;
  font-weight: 900;
  color: #C79127;
  margin-bottom: 16px;
  display: inline-block;
}

.service-detailed h3 {
  color: #1A4266;
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-detailed .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C79127;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
}

/* === COUNTRIES === */
.countries {
  padding: 60px 20px;
  background: #F5F5F5;
}

.countries-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
}

.countries-grid > div {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #C79127;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.countries-grid h3 {
  color: #1A4266;
  margin-bottom: 16px;
}

/* === PRINCIPLES === */
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.principle {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-top: 6px solid #1A4266;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.principle h3 {
  color: #1A4266;
  margin-bottom: 16px;
}

/* === CASES === */
.cases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.case {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #C79127;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.case h3 {
  color: #1A4266;
  margin-bottom: 16px;
  font-size: 20px;
}

/* === COMPARISON === */
.comparison {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.comparison > div {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comparison h3 {
  color: #1A4266;
  margin-bottom: 20px;
}

.roi {
  background: #C79127;
  color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* === REASONS === */
.when-to-dispute {
  padding: 60px 20px;
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.reason {
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-top: 6px solid #C79127;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.reason h3 {
  color: #1A4266;
  margin-bottom: 16px;
  font-size: 20px;
}

/* === MISSION === */
.mission {
  padding: 60px 20px;
  background: #F5F5F5;
}

.mission h3 {
  color: #1A4266;
  margin-top: 32px;
  margin-bottom: 20px;
}

/* === TEAM === */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.team-member {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #C79127;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  color: #1A4266;
  margin-bottom: 8px;
}

.team-member .role {
  color: #C79127;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

/* === STATS === */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.stats-grid .stat {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #1A4266;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stats-grid .stat strong {
  display: block;
  font-size: 48px;
  color: #C79127;
  margin-bottom: 8px;
}

.stats-grid .stat span {
  display: block;
  font-size: 14px;
  color: #1A4266;
  text-transform: uppercase;
  font-weight: 700;
}

/* === CATEGORIES === */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.category {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #1A4266;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.category:hover {
  transform: translateY(-5px);
  border-color: #C79127;
  box-shadow: 0 12px 40px rgba(199, 145, 39, 0.3);
}

.category h3 {
  color: #1A4266;
  margin-bottom: 16px;
}

.category .count {
  display: block;
  margin-top: 16px;
  color: #C79127;
  font-weight: 700;
  font-size: 14px;
}

/* === ARTICLES === */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.article-card {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #C79127;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26, 66, 102, 0.2);
}

.article-card h3 {
  color: #1A4266;
  margin-bottom: 16px;
  font-size: 22px;
}

.article-card .meta {
  display: block;
  margin-top: 16px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

/* === GUIDES === */
.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.guide {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(135deg, #1A4266 0%, #2C5F8D 100%);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(26, 66, 102, 0.3);
  color: #ffffff;
  position: relative;
}

.guide h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.guide p {
  color: rgba(255, 255, 255, 0.9);
}

.guide .pages {
  display: block;
  margin-top: 16px;
  color: #C79127;
  font-weight: 700;
}

/* === FAQ === */
.faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

details {
  background: #ffffff;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  border-left: 4px solid #C79127;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

summary {
  font-weight: 700;
  color: #1A4266;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 0;
}

summary:hover {
  color: #C79127;
}

details p {
  margin-top: 16px;
  color: #333;
  line-height: 1.8;
}

/* === CONTACT === */
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.option {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-top: 6px solid #C79127;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.option h3 {
  color: #1A4266;
  margin-bottom: 16px;
}

.form-placeholder {
  background: #F5F5F5;
  padding: 40px;
  border-radius: 12px;
  margin-top: 40px;
  border: 3px dashed #C79127;
}

.form-placeholder .note {
  margin-top: 20px;
  color: #1A4266;
  font-weight: 700;
  text-align: center;
}

.office-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border-left: 6px solid #C79127;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.office-info h3 {
  color: #1A4266;
  margin-top: 24px;
  margin-bottom: 16px;
}

/* === LEGAL CONTENT === */
.legal-content {
  padding: 60px 20px;
  background: #ffffff;
}

.legal-content h2 {
  color: #1A4266;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 24px;
}

.legal-content p {
  color: #333;
  margin-bottom: 20px;
}

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

/* === THANK YOU === */
.thank-you {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F5F5F5 0%, #ffffff 100%);
}

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

.icon-success {
  width: 100px;
  height: 100px;
  background: #4CAF50;
  color: #ffffff;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
}

.thank-you h1 {
  color: #1A4266;
  margin-bottom: 24px;
}

.lead {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 32px;
}

.thank-you ol {
  text-align: left;
  max-width: 500px;
  margin: 32px auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.back-link {
  margin-top: 32px;
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #1A4266 0%, #0d1f33 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-section h3 {
  color: #C79127;
  margin-bottom: 20px;
  font-size: 20px;
}

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

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

.footer-nav a {
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #C79127;
  transform: translateX(5px);
}

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

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

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A4266 0%, #2C5F8D 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.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: 250px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #C79127;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #ffffff;
  color: #1A4266;
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #C79127;
  border-color: #C79127;
}

.cookie-settings:hover {
  background: #C79127;
  color: #ffffff;
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #1A4266;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 8px;
  border-left: 4px solid #C79127;
}

.cookie-category h3 {
  color: #1A4266;
  margin-bottom: 12px;
  font-size: 18px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #4CAF50;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .content-wrapper,
  .services-grid,
  .process-steps,
  .benefits-grid,
  .testimonials-grid,
  .countries-grid,
  .principles,
  .cases-grid,
  .comparison,
  .reasons-grid,
  .team-grid,
  .stats-grid,
  .categories-grid,
  .articles-grid,
  .guides-grid,
  .options-grid,
  .footer-content {
    flex-direction: column;
  }
  
  .service-card,
  .step,
  .benefit,
  .testimonial-card,
  .category,
  .article-card,
  .option {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .service-detailed,
  .office-info,
  .problem,
  .solution {
    padding: 24px;
  }
}

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

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.important {
  background: #FFF3CD;
  border-left: 6px solid #C79127;
  padding: 20px;
  margin: 24px 0;
  border-radius: 8px;
}

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* === PRINT STYLES === */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  footer {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}