/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  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.7;
  color: #1A1A1A;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 50%, #00C9A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

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

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #2C5F8D 0%, #1A3A5C 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(28, 95, 141, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 30px rgba(0, 201, 167, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #1A3A5C 0%, #2C5F8D 50%, #00C9A7 100%);
  z-index: 999;
  padding: 80px 40px 40px;
  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: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: white;
  color: #1A3A5C;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  padding: 15px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: white;
  color: #1A3A5C;
  transform: translateX(10px);
  border-color: #00C9A7;
}

/* ============================================
   HEADER
   ============================================ */

header {
  background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
  padding: 20px 0;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
}

.logo-section img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 4px 10px rgba(0, 201, 167, 0.5));
}

.tagline {
  color: #00C9A7;
  font-size: 14px;
  font-style: italic;
  display: none;
}

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

.main-nav a {
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

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

.main-nav a:hover {
  color: #00C9A7;
  background: rgba(0, 201, 167, 0.1);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #00C9A7 0%, #2C5F8D 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 201, 167, 0.3);
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 201, 167, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #1A3A5C;
  border: 2px solid #2C5F8D;
}

.btn-secondary:hover {
  background: #2C5F8D;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(44, 95, 141, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 50%, #00C9A7 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #00C9A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 201, 167, 0.3);
}

.hero-subheadline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

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

.trust-badges span {
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   HERO INTERNAL
   ============================================ */

.hero-internal {
  background: linear-gradient(135deg, #2C5F8D 0%, #1A3A5C 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-internal h1 {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #00C9A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-internal p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.breadcrumb a {
  color: #00C9A7;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
}

.last-updated {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

.services-overview,
.services-detailed,
.product-categories,
.repair-services,
.blog-grid {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.services-grid,
.categories-grid,
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.category-card,
.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2C5F8D 0%, #00C9A7 100%);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before,
.category-card:hover::before,
.article-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.category-card:hover,
.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 201, 167, 0.3);
}

.service-card img,
.category-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px rgba(44, 95, 141, 0.3));
}

.service-card h3,
.category-card h3,
.article-card h3 {
  color: #1A3A5C;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #1A3A5C 0%, #00C9A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card p,
.category-card p,
.article-card p {
  color: #555555;
  line-height: 1.7;
  flex-grow: 1;
}

.price {
  color: #00C9A7;
  font-weight: 700;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  margin-top: auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features,
.trust-section,
.value-proposition {
  background: white;
  border-radius: 30px;
  padding: 60px 40px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(26, 58, 92, 0.1);
}

.features-grid,
.trust-grid,
.benefits-grid,
.reasons-grid,
.values-grid,
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.feature-item,
.trust-item,
.benefit-item,
.reason-item,
.value-item,
.expertise-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.feature-item:hover,
.trust-item:hover,
.benefit-item:hover,
.reason-item:hover,
.value-item:hover,
.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 201, 167, 0.2);
}

.feature-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.feature-item h3,
.trust-item h3,
.benefit-item h3,
.reason-item h3,
.value-item h3,
.expertise-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-item p,
.trust-item p,
.benefit-item p,
.reason-item p,
.value-item p,
.expertise-item p {
  color: #666666;
  font-size: 14px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 40px;
  margin-bottom: 60px;
  border-radius: 30px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: rgba(0, 201, 167, 0.2);
  font-family: Georgia, serif;
}

.rating {
  color: #FFB800;
  font-size: 20px;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: #333333;
  line-height: 1.8;
  font-style: italic;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
}

.author strong {
  color: #1A3A5C;
  font-weight: 700;
}

.author span {
  color: #888888;
  font-size: 14px;
}

.rating-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1A3A5C;
  margin-top: 20px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2,
.cta-section h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #00C9A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner p,
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-info {
  margin-top: 30px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* ============================================
   DETAILED SECTIONS
   ============================================ */

.service-detail,
.text-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
}

.service-detail h2 {
  color: #1A3A5C;
  margin-bottom: 20px;
}

.service-detail ul,
.text-section ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detail li,
.text-section li {
  color: #555555;
  margin-bottom: 10px;
  padding-left: 10px;
}

.intro {
  font-size: 20px;
  color: #1A3A5C;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
}

/* ============================================
   PROCESS & STEPS
   ============================================ */

.repair-process,
.next-steps {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2C5F8D 0%, #00C9A7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.3);
}

.step h3 {
  color: #1A3A5C;
  margin-top: 20px;
}

.step p {
  color: #666666;
}

/* ============================================
   PRICING
   ============================================ */

.pricing-transparency,
.pricing-examples {
  background: white;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
}

.pricing-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  margin-top: 30px;
}

.price-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
  transition: all 0.3s ease;
}

.price-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.3);
}

.price-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.price-item .price {
  font-size: 28px;
}

.guarantee-note {
  text-align: center;
  color: #00C9A7;
  font-weight: 600;
  margin-top: 30px;
}

/* ============================================
   WARRANTY & INFO SECTIONS
   ============================================ */

.warranty-section,
.warranty-info,
.location-info,
.consultation-service {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.warranty-info h3 {
  color: #1A3A5C;
  font-size: 28px;
  margin-bottom: 15px;
}

/* ============================================
   BLOG & ARTICLES
   ============================================ */

.blog-categories {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.categories-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.category-pill {
  background: white;
  color: #1A3A5C;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(26, 58, 92, 0.1);
}

.category-pill:hover {
  background: linear-gradient(135deg, #2C5F8D 0%, #00C9A7 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 201, 167, 0.3);
}

.article-meta {
  color: #888888;
  font-size: 14px;
  margin-bottom: 10px;
}

.popular-articles {
  background: white;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.popular-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.popular-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 201, 167, 0.2);
}

.popular-item h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.popular-item span {
  color: #00C9A7;
  font-weight: 700;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */

.contact-methods {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.contact-method {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 201, 167, 0.3);
}

.contact-method img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.response-time {
  text-align: center;
  color: #00C9A7;
  font-weight: 700;
  font-size: 18px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.address-block,
.hours-block,
.info-block {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  text-align: left;
}

.address-block h3,
.hours-block h3,
.info-block h3 {
  color: #1A3A5C;
  margin-bottom: 15px;
}

/* ============================================
   CONTACT FORM
   ============================================ */

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

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(26, 58, 92, 0.1);
}

.form-note {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid #00C9A7;
}

.form-note p {
  color: #555555;
  margin-bottom: 10px;
}

.form-fields-display {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-group label {
  color: #1A3A5C;
  font-weight: 600;
  font-size: 14px;
}

.field-placeholder {
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  color: #999999;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.field-placeholder:hover {
  border-color: #00C9A7;
  background: white;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

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

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

.thank-you-hero {
  background: linear-gradient(135deg, #1A3A5C 0%, #00C9A7 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 30px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  color: #00C9A7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(0, 201, 167, 0.3);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subheadline,
.confirmation-note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.confirmation-note {
  font-size: 16px;
  margin-top: 20px;
}

.quick-links {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 201, 167, 0.3);
}

.link-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.link-card p {
  font-size: 14px;
  color: #666666;
}

.contact-alternative {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 40px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.emergency-note {
  color: #00C9A7;
  font-weight: 700;
  margin-top: 20px;
}

/* ============================================
   COMPANY & INFO SECTIONS
   ============================================ */

.company-story,
.mission-vision,
.expertise,
.location,
.why-choose-us {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   BENEFITS & LISTS
   ============================================ */

.benefits-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
  justify-content: center;
}

.benefits-list li {
  background: white;
  padding: 12px 24px;
  border-radius: 20px;
  color: #1A3A5C;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(26, 58, 92, 0.1);
}

/* ============================================
   TABLES
   ============================================ */

.cookie-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
}

.cookie-table thead {
  background: linear-gradient(135deg, #2C5F8D 0%, #1A3A5C 100%);
  color: white;
}

.cookie-table th,
.cookie-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-table tbody tr:hover {
  background: #f8f9fa;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-col img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: #00C9A7;
  font-size: 18px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00C9A7 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-col a:hover {
  color: #00C9A7;
  padding-left: 10px;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  padding-top: 20px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
  padding: 25px;
  box-shadow: 0 -8px 30px rgba(26, 58, 92, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  color: white;
  flex: 1;
  min-width: 250px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn-accept {
  background: #00C9A7;
  color: white;
}

.cookie-btn-accept:hover {
  background: #00b394;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 201, 167, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-btn-reject:hover {
  background: white;
  color: #1A3A5C;
}

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #1A3A5C;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  margin-bottom: 15px;
}

.cookie-category h3 {
  color: #1A3A5C;
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: #00C9A7;
}

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

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

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: flex-end;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  
  .hero h1 { font-size: 48px; }
  
  .service-card,
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .feature-item,
  .trust-item,
  .benefit-item {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Adjust typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subheadline { font-size: 16px; }
  
  /* Stack cards */
  .service-card,
  .category-card,
  .article-card,
  .testimonial-card,
  .step,
  .contact-method,
  .link-card,
  .price-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .feature-item,
  .trust-item,
  .benefit-item,
  .reason-item,
  .value-item,
  .expertise-item {
    flex: 1 1 100%;
  }
  
  /* Adjust sections */
  .hero,
  .hero-internal {
    padding: 60px 20px;
  }
  
  .section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
  
  /* Stack hero buttons */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  /* Footer */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Header adjustments */
  .header-content {
    justify-content: center;
  }
  
  .header-cta {
    width: 100%;
    justify-content: center;
  }
  
  .tagline {
    display: none;
  }
  
  /* Table responsiveness */
  .cookie-table {
    font-size: 14px;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 28px; }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .section {
    padding: 20px 10px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .service-card,
  .category-card,
  .article-card {
    padding: 20px;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

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

/* Stagger animation for cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: #00C9A7;
  color: white;
}

::-moz-selection {
  background: #00C9A7;
  color: white;
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 3px solid #00C9A7;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .header-cta {
    display: none;
  }
  
  body {
    background: white;
  }
}