/* ============================================
   TRANQUIL STREAM - ELEGANT CLASSIC DESIGN
   Professional & Trustworthy Integration Services
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a4459;
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  color: #4a5568;
}

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

a:hover {
  color: #D68A3D;
}

ul {
  list-style: none;
}

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

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

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #1a4459;
  border-color: #1a4459;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2C5F7C;
  color: #ffffff;
  transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2C5F7C;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1a4459;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2C5F7C;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #2C5F7C;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

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

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-menu li a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  padding: 8px 0;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D68A3D;
  transition: width 0.3s ease;
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f5f1eb 0%, #e8e3da 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 3px solid #D68A3D;
}

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

.hero h1 {
  font-size: 52px;
  color: #1a4459;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 32px;
  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;
}

.trust-badges span {
  font-size: 14px;
  color: #2C5F7C;
  padding: 8px 20px;
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #D68A3D;
  font-weight: 500;
}

/* HERO SUB (for internal pages) */
.hero-sub {
  background: linear-gradient(135deg, #f5f1eb 0%, #e8e3da 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 2px solid #D68A3D;
}

.hero-sub h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-sub p {
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 20px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumb a {
  color: #2C5F7C;
}

.breadcrumb span {
  color: #718096;
}

.breadcrumb a::after {
  content: '/';
  margin-left: 8px;
  color: #cbd5e0;
}

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

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

/* PROBLEM-SOLUTION SECTION */
.problem-solution {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 60px 20px;
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 48px;
}

.problem-block,
.solution-block {
  margin-bottom: 40px;
}

.problem-block h3 {
  color: #c53030;
  margin-bottom: 24px;
}

.solution-block h3 {
  color: #2C5F7C;
  margin-bottom: 24px;
}

.pain-points,
.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-points li,
.solution-benefits li {
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
}

.pain-points li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c53030;
  font-weight: bold;
  font-size: 20px;
}

.solution-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BA88D;
  font-weight: bold;
  font-size: 20px;
}

/* SERVICES GRID */
.services-grid,
.cities-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.city-card,
.category-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.city-card:hover,
.category-card:hover {
  border-color: #D68A3D;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(214, 138, 61, 0.15);
}

.service-card h3,
.city-card h3,
.category-card h3 {
  color: #1a4459;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.city-card p,
.category-card p {
  color: #4a5568;
  margin-bottom: 20px;
}

.price {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #D68A3D;
  margin-top: 16px;
}

/* PROCESS STEPS */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  text-align: center;
  padding: 24px 16px;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #2C5F7C;
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
  border: 3px solid #D68A3D;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

/* CITY CARDS DETAIL */
.city-card-detail {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.city-card-detail:hover {
  border-color: #7BA88D;
  box-shadow: 0 6px 16px rgba(123, 168, 141, 0.2);
}

.city-facts {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.city-facts li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: #4a5568;
}

.city-facts li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #7BA88D;
}

/* SERVICE DETAIL */
.service-detail {
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-color: #D68A3D;
  box-shadow: 0 4px 12px rgba(214, 138, 61, 0.15);
}

.service-detail.featured {
  border: 3px solid #D68A3D;
  background: linear-gradient(135deg, #fef9f3 0%, #ffffff 100%);
}

.service-detail h3 {
  margin-bottom: 16px;
}

.service-detail ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail ul li {
  padding-left: 28px;
  position: relative;
  color: #4a5568;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BA88D;
  font-weight: bold;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #f7f7f5;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.testimonial-card strong {
  color: #1a4459;
  font-weight: 600;
  font-size: 15px;
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  background-color: #ffffff;
  border-left: 4px solid #D68A3D;
  border-radius: 4px;
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

/* GUIDE CARDS */
.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.guide-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.guide-card:hover {
  border-color: #2C5F7C;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(44, 95, 124, 0.15);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #D68A3D;
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: #1a4459;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-item summary:hover {
  background-color: #faf8f5;
}

.faq-item p {
  padding: 0 24px 20px;
  color: #4a5568;
  line-height: 1.7;
}

/* CONTACT FORMS */
.form-container {
  max-width: 600px;
  margin: 40px auto;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-field {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 15px;
}

.input-field {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #faf8f5;
}

.input-field:focus {
  outline: none;
  border-color: #2C5F7C;
  background-color: #ffffff;
}

textarea.input-field {
  min-height: 120px;
  resize: vertical;
}

select.input-field {
  cursor: pointer;
}

.checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-field label {
  font-weight: 400;
  cursor: pointer;
}

/* CONTACT INFO */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.contact-method {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-method h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

/* LOCATIONS */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.location-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: #7BA88D;
  box-shadow: 0 4px 12px rgba(123, 168, 141, 0.15);
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f1eb 0%, #e8e3da 100%);
}

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

.trust-badge {
  display: inline-block;
  padding: 10px 24px;
  background-color: #2C5F7C;
  color: #ffffff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #f5f1eb 0%, #e8e3da 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 2px solid #D68A3D;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2C5F7C;
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 16px;
  color: #1a4459;
}

/* FOOTER */
footer {
  background-color: #2c3e50;
  color: #e2e8f0;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #D68A3D;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p,
.footer-section li {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section a {
  color: #cbd5e0;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #D68A3D;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #4a5568;
  text-align: center;
}

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

.footer-legal li {
  font-size: 13px;
}

.footer-legal a {
  color: #cbd5e0;
}

.footer-legal a:hover {
  color: #D68A3D;
}

.footer-bottom p {
  font-size: 13px;
  color: #a0aec0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 3px solid #D68A3D;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.cookie-consent-text {
  flex: 1 1 400px;
  color: #2c3e50;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  border: 2px solid transparent;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #2C5F7C;
  color: #ffffff;
  border-color: #2C5F7C;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #2c3e50;
  border-color: #cbd5e0;
}

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

.cookie-btn-settings {
  background-color: transparent;
  color: #2C5F7C;
  border-color: #2C5F7C;
}

.cookie-btn-settings:hover {
  background-color: #2C5F7C;
  color: #ffffff;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #718096;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2C5F7C;
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #1a4459;
}

.cookie-category {
  padding: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-category h3 {
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #cbd5e0;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #7BA88D;
}

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

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

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

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* LISTS */
.info-list,
.reasons-list,
.transparency-list,
.reassurance-list,
.action-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.info-list li,
.reasons-list li,
.transparency-list li,
.reassurance-list li,
.action-list li {
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
}

.info-list li::before,
.reasons-list li::before,
.transparency-list li::before,
.reassurance-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BA88D;
  font-weight: bold;
  font-size: 18px;
}

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

/* QUICK LINKS */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.quick-links a {
  padding: 12px 24px;
  background-color: #2C5F7C;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  background-color: #1a4459;
  transform: translateY(-2px);
}

/* CTA SECTIONS */
.cta-consultation,
.cta-city-service,
.cta-personalized-help {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4459 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  margin: 60px 0;
}

.cta-consultation h2,
.cta-city-service h2,
.cta-personalized-help h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-consultation p,
.cta-city-service p,
.cta-personalized-help p {
  color: #e2e8f0;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-consultation .btn-primary,
.cta-city-service .btn-primary,
.cta-personalized-help .btn-primary {
  background-color: #D68A3D;
  border-color: #D68A3D;
}

.cta-consultation .btn-primary:hover,
.cta-city-service .btn-primary:hover,
.cta-personalized-help .btn-primary:hover {
  background-color: #F4A460;
  border-color: #F4A460;
}

/* DOWNLOADS */
.downloads-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.download-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.download-card:hover {
  border-color: #2C5F7C;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.15);
}

/* TESTIMONIAL LONG */
.testimonial-long {
  background-color: #ffffff;
  border-left: 4px solid #D68A3D;
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-long p {
  font-style: italic;
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  
  .service-card,
  .city-card,
  .city-card-detail,
  .value-card,
  .guide-card,
  .category-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  .main-nav .btn-primary {
    display: none;
  }
  
  header {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero,
  .hero-sub {
    padding: 48px 16px;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Grids */
  .services-grid,
  .cities-grid,
  .categories-grid,
  .steps-grid,
  .values-grid,
  .guides-grid,
  .testimonials-grid,
  .contact-methods,
  .locations-grid,
  .downloads-grid {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Banner */
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Forms */
  .form-container {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-card,
  .city-card,
  .city-card-detail,
  .value-card,
  .guide-card,
  .service-detail,
  .testimonial-card {
    padding: 24px 20px;
  }
  
  .cookie-modal-content {
    padding: 32px 20px;
  }
}

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

.service-card,
.city-card,
.testimonial-card,
.step {
  animation: fadeIn 0.6s ease forwards;
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #D68A3D;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #D68A3D;
  outline-offset: 2px;
}

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