/* ========================================
   MODERN BOLD 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.6;
  color: #1a1a1a;
  background-color: #ffffff;
  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;
}

/* ========================================
   MODERN BOLD TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

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

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

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

/* ========================================
   HEADER - MODERN BOLD STYLE
   ======================================== */

header {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a3d4f 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

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

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

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

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

.main-nav a:hover {
  border-bottom-color: #4A90A4;
  color: #4A90A4;
}

.header-cta {
  display: flex;
  gap: 16px;
}

/* ========================================
   BUTTONS - BOLD & STRIKING
   ======================================== */

.btn-primary {
  background: #FF6B35;
  color: #ffffff;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
  background: #e85a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}

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

.btn-link {
  color: #FF6B35;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 2px solid #FF6B35;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #2C5F7C;
  border-bottom-color: #2C5F7C;
}

/* ========================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ======================================== */

.mobile-menu-toggle {
  display: none;
  background: #FF6B35;
  color: #ffffff;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 3px solid #ffffff;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #ffffff;
  color: #2C5F7C;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 0;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FF6B35;
  border-bottom-color: #FF6B35;
  padding-left: 10px;
}

/* ========================================
   HERO SECTION - BOLD & IMPACTFUL
   ======================================== */

.hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #4A90A4 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
}

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

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

.hero-subheadline {
  color: #E8F1F5;
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 400;
}

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

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

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

/* ========================================
   PAGE HERO - INTERNAL PAGES
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #4A90A4 100%);
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero .intro {
  color: #E8F1F5;
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 400;
}

.page-hero .statement {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  text-transform: uppercase;
}

.page-hero .last-updated {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 16px;
}

/* ========================================
   SECTIONS - CONSISTENT SPACING
   ======================================== */

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

.section-intro {
  text-align: center;
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 20px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: #FF6B35;
}

/* ========================================
   SERVICES GRID - FLEXBOX LAYOUT
   ======================================== */

.services-overview,
.services-detailed,
.benefits,
.product-categories,
.pricing-services,
.pricing-packages {
  background: #f8f9fa;
}

.services-grid,
.benefits-grid,
.categories-grid,
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.service-card,
.benefit-card,
.category-card,
.package-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  position: relative;
  border-top: 5px solid #2C5F7C;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit-card:hover,
.category-card:hover,
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-top-color: #FF6B35;
}

.service-card h3,
.benefit-card h3,
.category-card h3,
.package-card h3 {
  color: #2C5F7C;
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 800;
}

.service-card p,
.benefit-card p,
.category-card p {
  color: #4a4a4a;
  margin-bottom: 16px;
  line-height: 1.7;
}

.price {
  font-size: 24px;
  font-weight: 800;
  color: #FF6B35;
  margin: 20px 0 16px;
  font-family: 'Montserrat', sans-serif;
}

/* ========================================
   SERVICE DETAIL - TEXT SECTIONS
   ======================================== */

.service-detail {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #2C5F7C;
}

.service-detail h3 {
  color: #2C5F7C;
  font-size: 26px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.6;
}

.features-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-size: 20px;
  font-weight: 700;
}

.duration {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
}

/* ========================================
   PROCESS STEPS - FLEXBOX
   ======================================== */

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

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  border-top: 4px solid #FF6B35;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: #E8F1F5;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  color: #2C5F7C;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step p {
  color: #4a4a4a;
  font-size: 14px;
}

/* ========================================
   TESTIMONIALS - FLEXBOX CARDS
   ======================================== */

.testimonials {
  background: #f8f9fa;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #FF6B35;
  position: relative;
  margin-bottom: 20px;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #2a2a2a;
  margin-bottom: 20px;
  line-height: 1.7;
}

.client-name {
  font-weight: 700;
  color: #2C5F7C;
  margin-bottom: 8px;
  font-size: 16px;
}

.rating {
  color: #FFD700;
  font-size: 20px;
  letter-spacing: 4px;
}

/* ========================================
   CTA BANNERS - BOLD & PROMINENT
   ======================================== */

.cta-banner,
.cta-section,
.cta-quote,
.cta-consultation,
.cta-service,
.emergency-service {
  background: linear-gradient(135deg, #FF6B35 0%, #e85a2a 100%);
  padding: 80px 20px;
  text-align: center;
  margin: 80px 0;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.cta-banner h2,
.cta-section h2,
.cta-quote h2,
.cta-consultation h2,
.cta-service h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-banner h2::after,
.cta-section h2::after,
.cta-quote h2::after,
.cta-consultation h2::after,
.cta-service h2::after {
  background: #ffffff;
}

.cta-banner p,
.cta-section p,
.cta-quote p,
.cta-consultation p,
.cta-service p {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-banner .btn-primary,
.cta-section .btn-primary,
.cta-quote .btn-primary,
.cta-consultation .btn-primary,
.cta-service .btn-primary {
  background: #ffffff;
  color: #FF6B35;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover,
.cta-quote .btn-primary:hover,
.cta-consultation .btn-primary:hover,
.cta-service .btn-primary:hover {
  background: #2C5F7C;
  color: #ffffff;
}

.highlight-box {
  background: #ffffff;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  margin: 0 auto;
  border-top: 6px solid #FF6B35;
}

.highlight-box h2 {
  color: #2C5F7C;
  text-align: center;
}

.highlight-box p {
  color: #4a4a4a;
  text-align: center;
  font-size: 18px;
}

/* ========================================
   STATISTICS - FLEXBOX GRID
   ======================================== */

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

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #2C5F7C 0%, #4A90A4 100%);
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(44, 95, 124, 0.3);
  margin-bottom: 20px;
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  color: #E8F1F5;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ========================================
   TIMELINE - FLEXBOX
   ======================================== */

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

.milestone {
  flex: 1 1 calc(20% - 19px);
  min-width: 180px;
  background: #FF6B35;
  color: #ffffff;
  padding: 24px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  margin-bottom: 20px;
}

/* ========================================
   TWO COLUMNS LAYOUT - FLEXBOX
   ======================================== */

.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.column {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.column h2 {
  text-align: left;
  font-size: 28px;
}

.column h2::after {
  left: 0;
  transform: none;
}

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

.pricing-table {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 2px solid #E8F1F5;
  gap: 20px;
  flex-wrap: wrap;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:nth-child(even) {
  background: #f8f9fa;
}

.service-name {
  font-weight: 700;
  color: #2C5F7C;
  font-size: 18px;
  flex: 1 1 60%;
}

.service-price {
  font-size: 24px;
  font-weight: 800;
  color: #FF6B35;
  font-family: 'Montserrat', sans-serif;
  flex: 0 0 auto;
}

/* ========================================
   PACKAGE CARDS - SPECIAL STYLING
   ======================================== */

.package-card.popular,
.contract-card.recommended {
  border-top: 5px solid #FF6B35;
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.package-card .badge,
.contract-card .badge {
  background: #FF6B35;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  top: -15px;
  right: 20px;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.package-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.package-price {
  font-size: 32px;
  font-weight: 800;
  color: #2C5F7C;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.package-includes li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4a4a4a;
  border-bottom: 1px solid #E8F1F5;
}

.package-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 700;
  font-size: 18px;
}

/* ========================================
   MAINTENANCE CONTRACTS
   ======================================== */

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

.contract-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: #ffffff;
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
  border-top: 5px solid #2C5F7C;
  position: relative;
  margin-bottom: 20px;
}

.contract-card h3 {
  font-size: 24px;
  color: #2C5F7C;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contract-price {
  font-size: 28px;
  font-weight: 800;
  color: #FF6B35;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.contract-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.contract-card ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4a4a4a;
}

.contract-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 700;
}

.savings {
  background: #E8F1F5;
  color: #2C5F7C;
  padding: 12px;
  font-weight: 700;
  margin-top: 20px;
  font-size: 14px;
  text-transform: uppercase;
}

/* ========================================
   PAYMENT OPTIONS - FLEXBOX
   ======================================== */

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

.method {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2C5F7C;
  margin-bottom: 20px;
}

.method h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.method p {
  color: #4a4a4a;
  font-size: 14px;
}

/* ========================================
   BLOG GRID
   ======================================== */

.blog-categories {
  text-align: center;
  margin-bottom: 48px;
}

.categories {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.category-btn {
  background: #ffffff;
  color: #2C5F7C;
  border: 2px solid #2C5F7C;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.category-btn:hover,
.category-btn.active {
  background: #2C5F7C;
  color: #ffffff;
}

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

.article-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #FF6B35;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.article-card h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
}

.excerpt {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #999;
  font-weight: 600;
}

.article-meta .category {
  color: #FF6B35;
  font-weight: 700;
  text-transform: uppercase;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

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

.contact-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #2C5F7C;
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #2C5F7C;
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 16px;
}

.contact-detail a {
  color: #FF6B35;
}

.contact-detail a:hover {
  color: #2C5F7C;
}

.availability {
  background: #E8F1F5;
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
  color: #2C5F7C;
  margin-top: 20px;
  text-transform: uppercase;
}

.contact-info-detail {
  background: #f8f9fa;
  padding: 48px 20px;
}

.info-section {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FF6B35;
}

.info-section h3 {
  color: #2C5F7C;
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4a4a4a;
}

.info-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 700;
}

.note {
  color: #FF6B35;
  font-weight: 700;
  font-style: italic;
  margin-top: 16px;
}

.map-location {
  background: #f8f9fa;
}

.map-info {
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #2C5F7C;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   LEGAL CONTENT
   ======================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.content-section {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #2C5F7C;
}

.content-section h2 {
  color: #2C5F7C;
  font-size: 24px;
  text-align: left;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.content-section h2::after {
  display: none;
}

.content-section h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin: 24px 0 12px;
}

.content-section ul {
  margin: 16px 0;
  padding-left: 0;
}

.content-section ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4a4a4a;
}

.content-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 700;
  font-size: 18px;
}

.cookie-type {
  background: #f8f9fa;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #FF6B35;
}

.cookie-type h3 {
  color: #2C5F7C;
  font-size: 18px;
  margin-bottom: 8px;
}

.duration {
  color: #666;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #4A90A4 100%);
  padding: 100px 20px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.confirmation-message {
  color: #E8F1F5;
  font-size: 20px;
  margin-bottom: 40px;
}

.next-steps {
  padding: 60px 20px;
  background: #f8f9fa;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-quick {
  padding: 40px 20px;
  background: #ffffff;
}

.info-box {
  background: #E8F1F5;
  padding: 32px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  border: 3px solid #2C5F7C;
}

.info-box p {
  margin-bottom: 12px;
  color: #2a2a2a;
}

.useful-links {
  padding: 60px 20px;
  background: #f8f9fa;
}

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

.link-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2C5F7C;
  margin-bottom: 20px;
}

.link-card h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
}

.link-card p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ========================================
   BRANDS LIST
   ======================================== */

.brands-list {
  background: #ffffff;
  padding: 48px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #FF6B35;
}

.brands-list p {
  font-size: 24px;
  font-weight: 700;
  color: #2C5F7C;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* ========================================
   CRITERIA & FEATURES GRIDS
   ======================================== */

.criteria-grid,
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.criterion,
.feature-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #2C5F7C;
  margin-bottom: 20px;
}

.criterion h3,
.feature-card h3 {
  color: #2C5F7C;
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.criterion p,
.feature-card p {
  color: #4a4a4a;
  line-height: 1.7;
}

/* ========================================
   FOOTER - BOLD STYLE
   ======================================== */

footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

.footer-column h3 {
  color: #FF6B35;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-column p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 600;
}

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

.footer-bottom {
  border-top: 2px solid #333333;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #999999;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  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 60%;
  min-width: 280px;
}

.cookie-text p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 0;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

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

.cookie-btn.accept:hover {
  background: #e85a2a;
}

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

.cookie-btn.reject:hover {
  border-color: #ffffff;
}

.cookie-btn.settings {
  background: transparent;
  color: #4A90A4;
  border: 2px solid #4A90A4;
}

.cookie-btn.settings:hover {
  background: #4A90A4;
  color: #ffffff;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 48px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 1;
  font-weight: 700;
}

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

.cookie-modal h2 {
  color: #2C5F7C;
  font-size: 28px;
  margin-bottom: 24px;
  text-align: left;
}

.cookie-modal h2::after {
  display: none;
}

.cookie-category {
  background: #f8f9fa;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #2C5F7C;
}

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

.cookie-category h3 {
  color: #2C5F7C;
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  width: 60px;
  height: 30px;
  background: #cccccc;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #FF6B35;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  transition: transform 0.3s ease;
}

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

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

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

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

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  p { font-size: 15px; }

  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  /* Page hero */
  .page-hero {
    padding: 60px 20px 40px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  /* Cards and grids to single column */
  .services-grid,
  .benefits-grid,
  .categories-grid,
  .stats-grid,
  .packages-grid,
  .contracts-grid,
  .payment-methods,
  .criteria-grid,
  .features-grid,
  .articles-grid,
  .contact-grid,
  .links-grid,
  .testimonials-grid,
  .process-steps,
  .timeline,
  .two-columns {
    flex-direction: column;
  }

  .service-card,
  .benefit-card,
  .category-card,
  .package-card,
  .stat-card,
  .contract-card,
  .method,
  .criterion,
  .feature-card,
  .article-card,
  .contact-card,
  .link-card,
  .testimonial-card,
  .step,
  .milestone,
  .column {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Package card scale reset */
  .package-card.popular,
  .contract-card.recommended {
    transform: scale(1);
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-text {
    flex: 1 1 100%;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }

  /* Modal adjustments */
  .cookie-modal-content {
    padding: 32px 20px;
  }

  /* CTA sections */
  .cta-banner h2,
  .cta-section h2,
  .cta-quote h2,
  .cta-consultation h2,
  .cta-service h2 {
    font-size: 28px;
  }

  /* Price rows */
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-name {
    flex: 1 1 100%;
  }

  /* Thank you page */
  .thank-you-hero {
    padding: 60px 20px;
    min-height: 50vh;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }

  /* Service detail */
  .service-detail {
    padding: 24px;
  }

  /* Sections */
  section {
    padding: 32px 20px;
    margin-bottom: 48px;
  }

  /* Info box */
  .info-box {
    padding: 24px;
  }

  /* Highlight box */
  .highlight-box {
    padding: 32px 24px;
  }

  /* Blog categories */
  .categories {
    flex-direction: column;
  }

  .category-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }

  h1 { font-size: 40px; }
  h2 { font-size: 32px; }

  .hero h1 {
    font-size: 48px;
  }

  /* Adjust grid items to 2 columns */
  .service-card,
  .benefit-card,
  .category-card,
  .package-card,
  .contract-card,
  .criterion,
  .feature-card,
  .article-card,
  .contact-card {
    flex: 1 1 calc(50% - 16px);
  }

  .stat-card,
  .method,
  .step,
  .link-card {
    flex: 1 1 calc(50% - 16px);
  }
}

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

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

.service-card,
.benefit-card,
.testimonial-card,
.article-card {
  animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .hero-cta,
  .cta-banner,
  .cta-section,
  .btn-primary,
  .btn-secondary,
  .btn-link {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }

  a {
    color: #000;
    text-decoration: underline;
  }

  .page-hero {
    background: none;
    color: #000;
    padding: 20px 0;
  }

  .page-hero h1 {
    color: #000;
  }
}