/* ===================================
   MODERN BOLD CSS STYLES
   Whispering Traveler
   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', Arial, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD & MODERN */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #0A2540;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

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

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

a:hover {
  color: #D4AF37;
  transform: translateY(-2px);
}

ul {
  list-style: none;
}

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

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

/* HEADER - BOLD & PROMINENT */
header {
  background: #0A2540;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: #D4AF37;
  color: #0A2540;
  transform: translateY(0);
}

/* MOBILE MENU - HAMBURGER */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #1C4E80;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 28px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-weight: 900;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #D4AF37;
  color: #0A2540;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: #0A2540;
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 3px solid #FFFFFF;
  color: #FFFFFF;
  width: 45px;
  height: 45px;
  font-size: 30px;
  font-weight: 900;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #D4AF37;
  color: #0A2540;
  padding-left: 30px;
  transform: translateY(0);
}

/* HERO SECTION - BOLD IMPACT */
.hero-section {
  background: linear-gradient(135deg, #0A2540 0%, #1C4E80 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: #A5D8DD;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  color: #A5D8DD;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.breadcrumb a:hover {
  color: #D4AF37;
}

/* CTA BUTTONS - BOLD & PROMINENT */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-primary, .cta-secondary, .cta-button, .cta-button-large {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: inline-block;
  text-align: center;
}

.cta-primary, .cta-button, .cta-button-large {
  background: #D4AF37;
  color: #0A2540;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cta-primary:hover, .cta-button:hover, .cta-button-large:hover {
  background: #FFD700;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
  color: #0A2540;
}

.cta-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
}

.cta-secondary:hover {
  background: #FFFFFF;
  color: #0A2540;
  transform: translateY(-4px);
}

.cta-button-large {
  padding: 20px 50px;
  font-size: 20px;
}

.cta-link {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 32px;
  background: #1C4E80;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  background: #D4AF37;
  color: #0A2540;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* TRUST BADGES - BOLD DISPLAY */
.trust-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 28px;
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* SECTIONS - GEOMETRIC & BOLD */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.services-section, .values-section, .process-section, .testimonials-section,
.services-detail-section, .story-section, .mission-section, .team-section,
.packages-section, .individual-pricing-section, .categories-section,
.featured-section, .guides-section, .blog-section {
  padding: 80px 20px;
  margin-bottom: 0;
}

.services-section {
  background: #F8F9FA;
}

.values-section {
  background: linear-gradient(135deg, #1C4E80 0%, #0A2540 100%);
}

.values-section h2,
.values-section p {
  color: #FFFFFF;
}

.process-section {
  background: #FFFFFF;
}

.testimonials-section {
  background: #F0F8FF;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 48px;
  font-weight: 600;
}

/* CARDS & GRIDS - BOLD GEOMETRIC */
.services-grid, .values-grid, .team-grid, .stats-grid, .pricing-grid,
.categories-grid, .featured-grid, .guides-grid, .blog-grid,
.options-grid, .contacts-grid, .faq-grid, .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.service-card, .value-card, .team-member, .stat-card, .pricing-card,
.category-card, .resource-card, .guide-item, .blog-post,
.option-card, .contact-card, .faq-item {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 400px;
  transition: all 0.3s ease;
  border-top: 6px solid #1C4E80;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover, .value-card:hover, .pricing-card:hover,
.category-card:hover, .resource-card:hover, .option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border-top-color: #D4AF37;
}

.service-card h3, .value-card h3, .pricing-card h3 {
  color: #0A2540;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 900;
}

.service-card p, .value-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.price {
  color: #D4AF37;
  font-size: 24px;
  font-weight: 900;
  margin-top: 20px;
  display: block;
}

/* VALUE CARDS - WHITE TEXT */
.values-grid .value-card {
  background: rgba(255, 255, 255, 0.1);
  border-top: 6px solid #D4AF37;
  backdrop-filter: blur(10px);
}

.values-grid .value-card h3 {
  color: #FFFFFF;
}

.values-grid .value-card p {
  color: #A5D8DD;
}

/* PROCESS STEPS - BOLD NUMBERS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #0A2540;
  font-size: 36px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

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

.step p {
  color: #555;
  font-size: 15px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonial-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 400px;
  max-width: 500px;
  border-left: 6px solid #D4AF37;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  color: #1C4E80;
  font-weight: 800;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rating {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 700;
  color: #D4AF37;
}

/* SERVICE DETAILS */
.service-detail {
  background: #FFFFFF;
  padding: 48px;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left: 8px solid #1C4E80;
}

.service-detail h3 {
  color: #0A2540;
  font-size: 32px;
  margin-bottom: 12px;
}

.tagline {
  color: #D4AF37;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 20px;
}

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

.features-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  color: #333;
  font-weight: 600;
  border-bottom: 2px solid #F0F0F0;
}

.features-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 900;
  font-size: 20px;
}

.ideal-for {
  background: #F8F9FA;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 700;
  color: #1C4E80;
  margin-top: 24px;
  border-left: 4px solid #D4AF37;
}

/* PRICING - FEATURED CARD */
.pricing-card.featured {
  border-top: 8px solid #D4AF37;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  right: 20px;
  background: #D4AF37;
  color: #0A2540;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.pricing-card .price {
  font-size: 36px;
  margin: 20px 0;
}

.pricing-card .ideal {
  color: #555;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pricing-card .features {
  text-align: left;
  margin: 24px 0;
}

.pricing-card .features li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #333;
  border-bottom: 1px solid #E0E0E0;
}

.pricing-card .features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 900;
  font-size: 18px;
}

/* TIMELINE - BOLD PROGRESSION */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 48px 0;
  position: relative;
  padding-left: 60px;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1C4E80, #D4AF37);
}

.timeline-item {
  position: relative;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -52px;
  top: 24px;
  width: 24px;
  height: 24px;
  background: #D4AF37;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 0 4px #D4AF37;
}

.timeline-item h3 {
  color: #1C4E80;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 900;
}

/* STATS - BOLD NUMBERS */
.stat-card {
  text-align: center;
  background: linear-gradient(135deg, #1C4E80, #0A2540);
  color: #FFFFFF;
  border-top: none;
}

.stat-card h3 {
  font-size: 56px;
  color: #D4AF37;
  margin-bottom: 12px;
  font-weight: 900;
}

.stat-card p {
  color: #A5D8DD;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* CTA SECTION - HIGH IMPACT */
.cta-section {
  background: linear-gradient(135deg, #1C4E80 0%, #0A2540 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section p {
  color: #A5D8DD;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  font-weight: 600;
}

.availability, .response-time, .promise {
  color: #D4AF37;
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOOTER - BOLD & STRUCTURED */
footer {
  background: #0A2540;
  color: #FFFFFF;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3, .footer-section h4 {
  color: #D4AF37;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-nav a {
  color: #A5D8DD;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 1px solid rgba(165, 216, 221, 0.2);
}

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 10px;
  transform: translateY(0);
}

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

.footer-bottom p {
  color: #A5D8DD;
  font-size: 14px;
  font-weight: 600;
}

/* COOKIE CONSENT BANNER - BOLD DESIGN */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0A2540;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.show {
  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 400px;
  color: #A5D8DD;
  font-size: 14px;
  font-weight: 600;
}

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

.cookie-btn {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.cookie-accept {
  background: #D4AF37;
  color: #0A2540;
  border: none;
}

.cookie-accept:hover {
  background: #FFD700;
  transform: scale(1.05);
}

.cookie-reject, .cookie-settings {
  background: transparent;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
}

.cookie-reject:hover, .cookie-settings:hover {
  background: #FFFFFF;
  color: #0A2540;
}

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

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-content h2 {
  color: #0A2540;
  margin-bottom: 24px;
  font-size: 32px;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle label {
  font-weight: 700;
  color: #333;
  cursor: pointer;
}

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

.modal-save, .modal-close {
  flex: 1 1 200px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.modal-save {
  background: #D4AF37;
  color: #0A2540;
}

.modal-save:hover {
  background: #FFD700;
  transform: translateY(-2px);
}

.modal-close {
  background: #6C757D;
  color: #FFFFFF;
}

.modal-close:hover {
  background: #5A6268;
  transform: translateY(-2px);
}

/* 404 PAGE - BOLD ERROR */
.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

/* LINKS GRID */
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.link-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 6px solid #1C4E80;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border-top-color: #D4AF37;
}

.link-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.link-card h3 a {
  color: #0A2540;
  font-weight: 900;
}

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  color: #0A2540;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 4px solid #D4AF37;
}

.legal-content h3 {
  color: #1C4E80;
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 16px;
}

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

.legal-content ul {
  margin: 20px 0;
  padding-left: 32px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.8;
}

.legal-content strong {
  color: #0A2540;
  font-weight: 800;
}

.last-updated {
  color: #6C757D;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

.summary-box {
  background: #F0F8FF;
  padding: 32px;
  border-radius: 12px;
  margin: 40px 0;
  border-left: 6px solid #1C4E80;
}

.summary-box h3 {
  color: #0A2540;
  font-size: 22px;
  margin-bottom: 16px;
}

.summary-box ul {
  padding-left: 0;
}

.summary-box li {
  list-style: none;
  padding: 10px 0 10px 32px;
  position: relative;
  color: #333;
  font-weight: 600;
}

.summary-box li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 900;
  font-size: 18px;
}

/* RELATED LINKS */
.related-links {
  margin-top: 40px;
  padding: 32px;
  background: #F8F9FA;
  border-radius: 12px;
  border-left: 6px solid #D4AF37;
}

.related-links h3 {
  color: #0A2540;
  font-size: 20px;
  margin-bottom: 16px;
}

.related-links ul {
  padding-left: 0;
}

.related-links li {
  list-style: none;
  margin-bottom: 12px;
}

.related-links a {
  color: #1C4E80;
  font-weight: 700;
  padding: 8px 16px;
  display: inline-block;
  background: #FFFFFF;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.related-links a:hover {
  background: #D4AF37;
  color: #0A2540;
  transform: translateX(8px);
}

/* CONTACT INFO */
.contact-info {
  background: #F8F9FA;
  padding: 32px;
  border-radius: 12px;
  margin: 32px 0;
  border-left: 6px solid #1C4E80;
}

.contact-info p {
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
}

.contact-info strong {
  color: #0A2540;
  font-weight: 800;
}

/* OFFICE INFO */
.office-info {
  background: #F0F8FF;
  padding: 40px;
  border-radius: 12px;
  margin: 32px 0;
  border-left: 6px solid #D4AF37;
}

.office-info p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #333;
}

/* SUCCESS ICON */
.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #0A2540;
  font-size: 72px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

/* BENEFITS LIST */
.benefits-list, .cert-list, .guarantee-points {
  margin: 32px 0;
  padding-left: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li, .cert-list li, .guarantee-points li {
  list-style: none;
  padding: 16px 0 16px 44px;
  position: relative;
  color: #333;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid #E0E0E0;
}

.benefits-list li:before, .cert-list li:before, .guarantee-points li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 900;
  font-size: 28px;
  top: 12px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero-section h1 {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Section padding */
  .services-section, .values-section, .process-section, .testimonials-section,
  .services-detail-section, .story-section, .mission-section, .team-section,
  .packages-section, .individual-pricing-section, .categories-section,
  .featured-section, .guides-section, .blog-section {
    padding: 48px 16px;
  }
  
  /* Cards */
  .service-card, .value-card, .pricing-card, .testimonial-card,
  .service-detail, .legal-content, .office-info, .contact-info {
    padding: 24px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-primary, .cta-secondary, .cta-button, .cta-button-large {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 40px;
  }
  
  .timeline-item:before {
    left: -32px;
  }
  
  /* Error code */
  .error-code {
    font-size: 80px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    padding: 32px 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  /* Stats */
  .stat-card h3 {
    font-size: 42px;
  }
  
  /* Pricing featured card */
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* Step numbers */
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  /* Success icon */
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 56px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero-section h1 {
    font-size: 32px;
  }
  
  .hero-section {
    padding: 48px 16px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  .trust-badges span {
    width: 100%;
    text-align: center;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  header,
  footer,
  .cta-buttons,
  .cta-section {
    display: none;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #D4AF37;
  outline-offset: 3px;
}

button:focus, a:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid #D4AF37;
  outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  .hero-section {
    background: #000000;
  }
  
  .hero-section h1,
  .hero-section p {
    color: #FFFFFF;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* END OF CSS */