/* ===================================
   AutoSelect La Paz - Vibrant Energetic Design
   Complete CSS Styles for All Pages
   =================================== */

/* 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a1a1a;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1A5F7A 0%, #E67E22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #1A5F7A;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

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

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

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

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

strong {
  font-weight: 600;
  color: #1A5F7A;
}

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

/* Header */
header {
  background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4d 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(26, 95, 122, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #E67E22;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after {
  width: 80%;
}

.main-nav a:hover {
  color: #E67E22;
  background: rgba(230, 126, 34, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.7);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1A5F7A 0%, #0d3d4d 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

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

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

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 80px 20px 20px;
  overflow-y: auto;
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(230, 126, 34, 0.2);
  border-left-color: #E67E22;
  padding-left: 30px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #E67E22 0%, #d35400 50%, #1A5F7A 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

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

.hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 48px;
  margin-bottom: 24px;
  animation: slideInDown 0.8s ease;
}

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

.hero-subtitle, .hero p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

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

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeIn 1.2s ease 0.5s both;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeIn 1.4s ease 0.7s both;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.badge span {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

/* Value Proposition */
.value-proposition {
  background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.value-proposition h2 {
  text-align: center;
  color: #1A5F7A;
  font-size: 36px;
  margin-bottom: 24px;
}

.value-proposition > .container > p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333333;
}

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

.benefit-item {
  background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 95, 122, 0.15);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  border-left: 5px solid #E67E22;
  position: relative;
}

.benefit-item::before {
  content: '✓';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
  border-left-color: #1A5F7A;
}

.benefit-item h3 {
  color: #1A5F7A;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Services Overview */
.services-overview {
  padding: 60px 20px;
  background: #ffffff;
  margin-bottom: 60px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.services-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card, .card {
  background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 95, 122, 0.15);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
  border-top: 4px solid #E67E22;
}

.service-card:hover, .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.3);
  border-top-color: #1A5F7A;
}

.service-card.featured {
  border: 3px solid #E67E22;
  border-top: 6px solid #E67E22;
  background: linear-gradient(135deg, #FFF5E6 0%, #ffffff 100%);
}

.service-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.4);
}

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

.service-card p {
  color: #333333;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .price {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #E67E22;
  margin: 20px 0;
  text-align: center;
}

.service-card .btn {
  margin-top: auto;
  background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4d 100%);
  color: #ffffff;
  padding: 12px 24px;
  font-size: 14px;
}

.service-card .btn:hover {
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
}

/* Process Steps */
.process {
  background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4d 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.process h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
  font-size: 36px;
}

.process-steps, .timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.step, .timeline-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-item h3, .timeline-item p {
  color: #1a1a1a !important;
}

.step:hover, .timeline-item:hover {
  background: rgba(230, 126, 34, 0.2);
  border-color: #E67E22;
  transform: translateY(-8px);
}

.step-number, .phase-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.step h3, .timeline-item h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}

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

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 100%);
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

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

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 95, 122, 0.15);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  border-left: 5px solid #E67E22;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: #E67E22;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.testimonial-card p {
  color: #333333;
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.client-info strong {
  color: #1A5F7A;
  font-size: 16px;
  font-weight: 700;
}

.client-info span {
  color: #666666;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #E67E22 0%, #d35400 50%, #1A5F7A 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.contact-info {
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 8px;
}

/* Service Detail Pages */
.services-detail .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-card-detail {
  background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 100%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 95, 122, 0.15);
  border-left: 6px solid #E67E22;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card-detail:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.service-card-detail h2 {
  color: #1A5F7A;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card-detail .price {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: #E67E22;
  background: rgba(230, 126, 34, 0.1);
  padding: 12px 24px;
  border-radius: 10px;
  margin: 16px 0;
}

.service-card-detail ul {
  margin: 24px 0;
}

.service-card-detail li {
  padding: 8px 0;
  color: #333333;
  position: relative;
  padding-left: 30px;
}

.service-card-detail li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 18px;
  font-weight: bold;
}

/* Process Detail */
.process-detail {
  padding: 60px 20px;
  background: #ffffff;
  margin-bottom: 60px;
}

.process-detail h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

/* Methodology */
.methodology {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 100%);
  margin-bottom: 60px;
}

.methodology h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.inspection-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.category {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.1);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  border-top: 4px solid #E67E22;
  transition: all 0.3s ease;
}

.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
  border-top-color: #1A5F7A;
}

.category h3 {
  color: #1A5F7A;
  font-size: 16px;
  margin-bottom: 8px;
}

.category p {
  color: #E67E22;
  font-weight: 600;
  font-size: 14px;
}

.total-count {
  text-align: center;
  font-size: 20px;
  color: #1A5F7A;
  margin-top: 24px;
}

/* Report Sample */
.report-sample, .equipment {
  padding: 60px 20px;
  background: #ffffff;
  margin-bottom: 60px;
}

.report-sample h2, .equipment h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 32px;
}

.report-sections, .equipment-list {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 100%);
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 95, 122, 0.15);
}

.report-sections li, .equipment-list li {
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
  padding-left: 30px;
}

.report-sections li:last-child, .equipment-list li:last-child {
  border-bottom: none;
}

.report-sections li::before, .equipment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: bold;
  font-size: 18px;
}

/* Differentiators */
.differentiators, .statistics, .problems-solutions, .guarantees {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.differentiators {
  background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 100%);
}

.differentiators h2, .statistics h2, .problems-solutions h2, .guarantees h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.diff-grid, .stats-grid, .problem-solution-grid, .guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.diff-card, .stat-item, .ps-item, .guarantee-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 95, 122, 0.15);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  border-top: 4px solid #E67E22;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.diff-card:hover, .stat-item:hover, .ps-item:hover, .guarantee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
  border-top-color: #1A5F7A;
}

.diff-card h3, .ps-item h3, .guarantee-card h3 {
  color: #1A5F7A;
  font-size: 20px;
  margin-bottom: 12px;
}

.diff-card p, .ps-item p, .guarantee-card p {
  color: #333333;
}

/* Statistics */
.statistics {
  background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4d 100%);
}

.statistics h2 {
  color: #ffffff;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 40px 20px;
}

.stat-item:hover {
  background: rgba(230, 126, 34, 0.2);
  border-color: #E67E22;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

/* FAQ */
.faq-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category h2 {
  color: #1A5F7A;
  font-size: 28px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #E67E22;
}

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 100%);
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.1);
  border-left: 4px solid #E67E22;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

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

.faq-item p {
  color: #333333;
  line-height: 1.8;
}

/* Contact Pages */
.contact-info, .contact-details, .office-hours, .location, .response-time {
  padding: 40px 20px;
  margin-bottom: 32px;
}

.contact-methods-grid, .response-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.contact-method, .response-item {
  background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 100%);
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 95, 122, 0.15);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  text-align: center;
  border-top: 4px solid #E67E22;
  transition: all 0.3s ease;
}

.contact-method:hover, .response-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.contact-method h3, .response-item h3 {
  color: #1A5F7A;
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-note {
  background: #FFF5E6;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #E67E22;
  margin-top: 24px;
}

.schedule, .location-info {
  background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 100%);
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 95, 122, 0.15);
  max-width: 600px;
  margin: 0 auto;
}

.schedule p, .location-info p {
  font-size: 16px;
  margin-bottom: 12px;
}

.note {
  color: #666666;
  font-style: italic;
  font-size: 14px;
  margin-top: 16px;
}

/* Legal Pages */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-section {
  background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 100%);
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.1);
  border-left: 4px solid #E67E22;
}

.legal-section h2 {
  color: #1A5F7A;
  font-size: 24px;
  margin-bottom: 16px;
}

.legal-section p {
  color: #333333;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Thank You / Confirmation Pages */
.confirmation, .thank-you-content {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.next-steps, .content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.next-steps .step {
  background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 100%);
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 95, 122, 0.15);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  border-top: 4px solid #E67E22;
}

.next-steps .step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.timeline {
  margin-top: 32px;
  padding: 16px;
  background: #FFF5E6;
  border-radius: 10px;
  display: block;
}

.contact-reminder, .preparation, .related-content {
  padding: 40px 20px;
  margin-bottom: 32px;
}

.contact-reminder {
  background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 100%);
}

.content-links {
  flex-direction: column;
  max-width: 600px;
  margin: 32px auto;
}

.content-links a {
  background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4d 100%);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.3);
}

.content-links a:hover {
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

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

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

.footer-section {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
}

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

.footer-section h4 {
  color: #E67E22;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-section nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-section nav a:hover {
  color: #E67E22;
  padding-left: 8px;
}

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

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

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4d 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-consent.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 300px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}
.cookie-text p {
  color: #fff;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-cookies {
  background: linear-gradient(135deg, #E67E22 0%, #d35400 100%);
  color: #ffffff;
}

#accept-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.5);
}

#reject-cookies {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

#reject-cookies:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

#cookie-settings {
  background: transparent;
  color: #E67E22;
  border: 2px solid #E67E22;
}

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

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

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

.modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: slideInUp 0.4s ease;
}

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

.modal-content h3 {
  color: #1A5F7A;
  font-size: 24px;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #F8F9FA;
  border-radius: 10px;
  border-left: 4px solid #E67E22;
}

.cookie-category h4 {
  color: #1A5F7A;
  font-size: 16px;
  margin-bottom: 8px;
}

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

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

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

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

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

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

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

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

#save-preferences {
  background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4d 100%);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.5);
}

#close-modal {
  background: transparent;
  color: #666666;
  padding: 12px 24px;
  border: 2px solid #ccc;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#close-modal:hover {
  border-color: #1A5F7A;
  color: #1A5F7A;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  
  .service-card, .card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .benefit-item, .diff-card, .ps-item, .guarantee-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  /* Mobile Menu Display */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 28px; }
  .hero-subtitle, .hero p { font-size: 16px; }
  
  /* Hero Section */
  .hero { padding: 60px 20px; }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Trust Badges */
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  .badge {
    width: 100%;
  }
  
  /* Cards */
  .service-card, .card, .benefit-item, .diff-card, .ps-item, .guarantee-card, .testimonial-card, .contact-method, .response-item, .stat-item, .category {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Process Steps */
  .step, .timeline-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
    text-align: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  
  .hero h1 { font-size: 24px; }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card, .card {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .step-number, .phase-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Print Styles */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cta-section, #cookie-consent, #cookie-modal {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
  
  .hero {
    background: none;
    color: #000000;
  }
  
  .service-card, .card, .testimonial-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Accessibility */
.btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-btn:focus {
  outline: 3px solid #E67E22;
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid #1A5F7A;
  outline-offset: 2px;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .btn-secondary {
    border-width: 3px;
  }
  
  .service-card, .card {
    border: 2px solid #1A5F7A;
  }
}