/* ============================================
   FROST WAGON - MODERN BOLD DESIGN SYSTEM
   ============================================ */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - BOLD & MODERN
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', 'Arial Black', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #0A4D8C;
  letter-spacing: -0.5px;
}

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

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

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #2c2c2c;
}

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

a:hover {
  color: #0A4D8C;
}

strong {
  font-weight: 700;
  color: #0A4D8C;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

/* ============================================
   HEADER - BOLD & STRIKING
   ============================================ */

header {
  background: linear-gradient(135deg, #0A4D8C 0%, #1E88E5 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(10, 77, 140, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
}

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

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

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

.main-nav a:hover {
  color: #64B5F6;
  border-bottom-color: #64B5F6;
}

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

/* ============================================
   MOBILE MENU - SLIDE IN ANIMATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #0A4D8C;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(10, 77, 140, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #0A4D8C 0%, #083A6B 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  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);
  overflow-y: auto;
}

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

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

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

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

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

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #64B5F6;
  transform: translateX(10px);
}

/* ============================================
   BUTTONS - BOLD GEOMETRIC STYLE
   ============================================ */

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

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #1E88E5;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0A4D8C;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(10, 77, 140, 0.4);
}

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

.btn-secondary:hover {
  background: #1E88E5;
  color: #ffffff;
  transform: translateY(-3px);
}

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

.hero {
  background: linear-gradient(135deg, #0A4D8C 0%, #1E88E5 50%, #64B5F6 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.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

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

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

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

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

/* ============================================
   PAGE HERO - SIMPLIFIED VERSION
   ============================================ */

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

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 0;
}

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

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

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

/* ============================================
   GRID LAYOUTS - FLEXBOX ONLY
   ============================================ */

.value-grid,
.services-grid,
.process-grid,
.testimonials-grid,
.stats-grid,
.benefits-grid,
.categories-grid,
.products-grid,
.packages-grid,
.link-grid,
.contact-grid,
.hours-grid,
.mission-grid,
.values-grid,
.team-grid,
.resources-grid,
.posts-grid,
.systems-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* ============================================
   CARDS - BOLD GEOMETRIC DESIGN
   ============================================ */

.value-card,
.service-card,
.process-step,
.benefit-card,
.category-card,
.product-card,
.package-card,
.link-card,
.contact-card,
.resource-card,
.post-card,
.system-card,
.benefit-card-large,
.mission-card,
.vision-card,
.value-item,
.team-member,
.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border: 4px solid #0A4D8C;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card::before,
.service-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 60px;
  height: 60px;
  background: #1E88E5;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.value-card:hover,
.service-card:hover,
.process-step:hover,
.benefit-card:hover,
.category-card:hover,
.product-card:hover,
.link-card:hover,
.contact-card:hover,
.resource-card:hover,
.post-card:hover,
.system-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(10, 77, 140, 0.3);
  border-color: #1E88E5;
}

.value-card h3,
.service-card h3,
.benefit-card h3,
.category-card h3,
.product-card h3,
.system-card h3 {
  color: #0A4D8C;
  margin-bottom: 16px;
  font-size: 22px;
}

.value-card p,
.service-card p,
.benefit-card p,
.category-card p,
.product-card p {
  color: #444;
  line-height: 1.7;
}

/* ============================================
   SERVICE CARDS - PRICING
   ============================================ */

.service-card .price,
.product-card .price,
.package-card .price {
  font-size: 32px;
  font-weight: 900;
  color: #1E88E5;
  margin: 20px 0;
  display: block;
}

.service-card ul,
.product-card ul,
.package-card ul,
.system-card ul {
  list-style: none;
  margin: 20px 0;
}

.service-card li,
.product-card li,
.package-card li,
.system-card li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #444;
}

.service-card li::before,
.product-card li::before,
.package-card li::before,
.system-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #1E88E5;
  font-size: 20px;
  font-weight: 900;
}

/* ============================================
   PROCESS STEPS - NUMBERED DESIGN
   ============================================ */

.process-step {
  text-align: center;
  border-color: #1E88E5;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #1E88E5;
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background: #f5f5f5;
  padding: 60px 20px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border-left: 6px solid #1E88E5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #2c2c2c;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #0A4D8C;
  font-size: 18px;
}

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

/* ============================================
   STATS SECTION - BOLD NUMBERS
   ============================================ */

.stats {
  background: linear-gradient(135deg, #0A4D8C 0%, #1E88E5 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ============================================
   CTA SECTIONS - ATTENTION GRABBING
   ============================================ */

.cta-banner,
.cta-section,
.consultation-cta,
.consultation-booking,
.blog-cta {
  background: linear-gradient(135deg, #1E88E5 0%, #0A4D8C 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.cta-content h2,
.cta-section h2,
.consultation-cta h2,
.consultation-booking h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p,
.cta-section p,
.consultation-cta p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

.service-detail,
.services-detailed .service-detail {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 40px;
  border-left: 8px solid #1E88E5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-detail h2 {
  color: #0A4D8C;
  margin-bottom: 20px;
}

.service-detail ul {
  list-style: none;
  margin: 24px 0;
}

.service-detail li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #444;
  font-size: 16px;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1E88E5;
  font-size: 20px;
  font-weight: 900;
}

/* ============================================
   PACKAGE CARDS - POPULAR HIGHLIGHT
   ============================================ */

.package-card {
  text-align: center;
  border-width: 4px;
}

.package-card.popular {
  border-color: #1E88E5;
  background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(30, 136, 229, 0.3);
}

.package-card.popular::after {
  content: 'BELIEBT';
  position: absolute;
  top: -15px;
  right: 20px;
  background: #1E88E5;
  color: #ffffff;
  padding: 8px 20px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ============================================
   BENEFITS LIST
   ============================================ */

.benefits-list {
  list-style: none;
  margin: 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #64B5F6;
  font-size: 24px;
  font-weight: 900;
}

/* ============================================
   TEAM MEMBERS
   ============================================ */

.team-member {
  text-align: center;
  border-color: #64B5F6;
}

.team-member h3 {
  color: #0A4D8C;
  margin-bottom: 8px;
}

.team-member .role {
  color: #1E88E5;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

/* ============================================
   BLOG POSTS
   ============================================ */

.featured-post {
  margin-bottom: 60px;
}

.featured-card {
  background: linear-gradient(135deg, #0A4D8C 0%, #1E88E5 100%);
  padding: 60px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.featured-card h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 20px;
}

.featured-card p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #999;
  margin-top: 16px;
}

.featured-card .post-meta {
  color: rgba(255, 255, 255, 0.9);
}

.post-meta span {
  position: relative;
  padding-left: 20px;
}

.post-meta span::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #1E88E5;
}

.featured-card .post-meta span::before {
  color: #64B5F6;
}

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

.contact-methods,
.office-hours {
  margin-bottom: 60px;
}

.contact-item {
  margin-bottom: 16px;
}

.contact-card .availability,
.availability {
  color: #1E88E5;
  font-weight: 700;
  margin: 12px 0;
  display: block;
}

.hours-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  padding: 24px;
  background: #f5f5f5;
  border-left: 4px solid #1E88E5;
  font-size: 16px;
  margin-bottom: 20px;
}

.notice {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 24px;
}

/* ============================================
   FORM PLACEHOLDER
   ============================================ */

.form-placeholder,
.map-placeholder {
  background: #f5f5f5;
  padding: 60px 40px;
  text-align: center;
  border: 4px dashed #0A4D8C;
  margin: 40px 0;
}

.form-placeholder p,
.map-placeholder p {
  color: #666;
  margin-bottom: 12px;
}

.form-placeholder em {
  color: #999;
  font-size: 14px;
}

/* ============================================
   ERROR & THANK YOU PAGES
   ============================================ */

.error-hero,
.thank-you-hero {
  background: linear-gradient(135deg, #0A4D8C 0%, #1E88E5 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.error-content,
.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.error-content p,
.thank-you-content p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.confirmation {
  font-style: italic;
  margin-bottom: 32px !important;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  padding: 40px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
  color: #0A4D8C;
  margin-bottom: 40px;
  border-bottom: 4px solid #1E88E5;
  padding-bottom: 20px;
}

.legal-content h2 {
  color: #0A4D8C;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #1E88E5;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: #444;
  line-height: 1.8;
}

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

.updated {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #ddd;
  color: #999;
  font-style: italic;
}

/* ============================================
   FOOTER - BOLD & STRUCTURED
   ============================================ */

footer {
  background: #0A4D8C;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: #64B5F6;
  transform: translateX(5px);
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0A4D8C;
  color: #ffffff;
  padding: 24px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  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;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 300px;
}

.cookie-text p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* ============================================
   COOKIE SETTINGS MODAL
   ============================================ */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  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: 40px;
  border-radius: 0;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  background: #f5f5f5;
  margin-bottom: 16px;
  border-left: 4px solid #1E88E5;
}

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

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

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

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

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

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

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

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

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

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

@media (max-width: 768px) {
  /* Typography scaling */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 42px; }
  .page-hero h1 { font-size: 36px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Section padding */
  section {
    padding: 30px 15px;
  }
  
  .hero,
  .page-hero {
    padding: 60px 20px;
  }
  
  /* Card layouts - stack on mobile */
  .value-card,
  .service-card,
  .process-step,
  .benefit-card,
  .category-card,
  .product-card,
  .package-card,
  .link-card,
  .contact-card,
  .resource-card,
  .post-card,
  .system-card,
  .benefit-card-large,
  .mission-card,
  .vision-card,
  .value-item,
  .team-member,
  .step-card,
  .stat-item,
  .hours-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Package cards - remove scale on mobile */
  .package-card.popular {
    transform: scale(1);
  }
  
  /* Hero CTA buttons - stack vertically */
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Footer - stack columns */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Stats - larger on mobile */
  .stat-number {
    font-size: 48px;
  }
  
  /* Cookie banner - stack vertically */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Legal content padding */
  .legal-content {
    padding: 30px 20px;
  }
  
  /* Form and map placeholders */
  .form-placeholder,
  .map-placeholder {
    padding: 40px 20px;
  }
  
  /* Error code size */
  .error-code {
    font-size: 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-card,
  .service-card,
  .benefit-card,
  .category-card,
  .product-card,
  .system-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .process-step,
  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations on scroll */
.value-card,
.service-card,
.process-step,
.testimonial-card {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

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

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

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .hero-cta,
  .btn {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}