/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2C3E50;
  line-height: 1.6;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* Playful Dynamic Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #0A2463;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -1px;
  animation: slideInDown 0.8s ease-out;
}

h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3E92CC, #F4F4F9);
  border-radius: 4px;
  animation: expandWidth 0.6s ease-out;
}

h3 {
  font-size: 24px;
  color: #0A2463;
}

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

a {
  text-decoration: none;
  color: #3E92CC;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

a:hover {
  color: #0A2463;
  transform: translateY(-2px);
}

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

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

/* Playful Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

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

/* Header */
header {
  background: linear-gradient(135deg, #0A2463 0%, #1a3a7f 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(10, 36, 99, 0.3);
  animation: slideInDown 0.5s ease-out;
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(-5deg);
  animation: wiggle 0.5s ease;
}

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

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

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

.main-nav a:hover {
  background: rgba(62, 146, 204, 0.2);
  transform: translateY(-2px);
}

.main-nav a:hover::before {
  width: 100%;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #3E92CC 0%, #0A2463 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(62, 146, 204, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(62, 146, 204, 0.6);
  animation: pulse 0.5s ease;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: #0A2463;
  border: 3px solid #3E92CC;
  box-shadow: 0 4px 15px rgba(62, 146, 204, 0.2);
}

.btn-secondary:hover {
  background: #3E92CC;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.05);
  border-color: #0A2463;
}

.btn-link {
  background: transparent;
  color: #3E92CC;
  padding: 10px 24px;
  font-size: 14px;
  border: 2px solid #3E92CC;
}

.btn-link:hover {
  background: #3E92CC;
  color: #FFFFFF;
  transform: translateX(5px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #3E92CC;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(62, 146, 204, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  background: #0A2463;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #0A2463 0%, #1a3a7f 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  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);
  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;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.mobile-nav a:hover {
  background: #3E92CC;
  transform: translateX(10px) scale(1.05);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0A2463 0%, #3E92CC 50%, #F4F4F9 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s linear infinite;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1s ease-out;
}

.hero-subtitle {
  font-size: 20px;
  color: #F4F4F9;
  margin-bottom: 32px;
  font-weight: 600;
  animation: slideInUp 1s ease-out 0.3s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: slideInUp 1s ease-out 0.5s both;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: slideInUp 1s ease-out 0.7s both;
}

.trust-indicators span {
  background: rgba(255, 255, 255, 0.95);
  color: #0A2463;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.trust-indicators span:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #3E92CC;
  color: #FFFFFF;
}

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

/* Value Proposition */
.value-proposition {
  background: #F4F4F9;
  position: relative;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
  color: #0A2463;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(10, 36, 99, 0.15);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #3E92CC, #0A2463);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(62, 146, 204, 0.3);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card h3 {
  color: #0A2463;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p {
  color: #2C3E50;
  line-height: 1.7;
}

.statistics {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #0A2463;
  margin-top: 40px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(10, 36, 99, 0.1);
}

/* Services Grid */
.services-overview, .services-detailed {
  background: #FFFFFF;
}

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

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #F4F4F9 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(62, 146, 204, 0.25);
  border-color: #3E92CC;
  background: linear-gradient(135deg, #FFFFFF 0%, #F4F4F9 100%);
}

.service-card h3 {
  color: #0A2463;
  font-size: 24px;
  margin-bottom: 16px;
}

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

.service-card p {
  margin-bottom: 16px;
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

/* Technology Showcase */
.technology-showcase {
  background: linear-gradient(135deg, #0A2463 0%, #1a3a7f 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.technology-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.technology-showcase h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}

.tech-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.tech-feature {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  padding: 28px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.tech-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.03);
  border-color: #3E92CC;
}

.tech-feature h3 {
  color: #3E92CC;
  margin-bottom: 12px;
  font-size: 20px;
}

.tech-feature p {
  color: #F4F4F9;
}

.certifications {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.certifications span {
  background: #FFFFFF;
  color: #0A2463;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.certifications span:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(62, 146, 204, 0.4);
}

/* Testimonials */
.testimonials {
  background: #F4F4F9;
  padding: 60px 20px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
  border-left: 6px solid #3E92CC;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(62, 146, 204, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(62, 146, 204, 0.25);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: #0A2463;
  font-size: 14px;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 0;
}

.rating-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #0A2463;
  margin-top: 32px;
}

/* CTA Banner */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, #3E92CC 0%, #0A2463 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before, .cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 40px 40px;
  animation: float 15s linear infinite;
}

.cta-banner h2, .cta-section h2 {
  color: #FFFFFF;
  font-size: 38px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  background: linear-gradient(90deg, #FFFFFF, transparent);
}

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

.cta-banner .btn-primary, .cta-section .btn-primary {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  color: #0A2463;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-banner .btn-primary:hover, .cta-section .btn-primary:hover {
  background: #F4F4F9;
  transform: translateY(-5px) scale(1.08);
}

.guarantee {
  margin-top: 24px;
  font-weight: 700;
  font-size: 16px;
  color: #F4F4F9;
  position: relative;
  z-index: 1;
}

/* Location Info */
.location-info, .location-section {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.address, .hours, .contact, .address-block, .directions-block {
  flex: 1 1 250px;
  background: #F4F4F9;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 36, 99, 0.1);
  transition: all 0.3s ease;
}

.address:hover, .hours:hover, .contact:hover, .address-block:hover, .directions-block:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 30px rgba(62, 146, 204, 0.2);
}

.address h3, .hours h3, .contact h3, .address-block h3, .directions-block h3 {
  color: #0A2463;
  margin-bottom: 16px;
  font-size: 20px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

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

.page-hero p {
  font-size: 18px;
  color: #F4F4F9;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumb a {
  color: #F4F4F9;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

/* Service Detail */
.service-detail {
  background: #F4F4F9;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
  transition: all 0.3s ease;
  border-left: 6px solid #3E92CC;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(62, 146, 204, 0.2);
}

.service-detail h3 {
  color: #0A2463;
  font-size: 28px;
  margin-bottom: 16px;
}

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

.service-detail ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #2C3E50;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3E92CC;
  font-weight: 900;
  font-size: 18px;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 800;
  color: #3E92CC;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.bestseller {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0A2463;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  animation: pulse 2s infinite;
}

.savings {
  background: #3E92CC;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  margin-top: 16px;
}

/* Product Cards */
.products-grid, .categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.product-card, .category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.product-card:hover, .category-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(62, 146, 204, 0.25);
  border-color: #3E92CC;
}

.product-card h3, .category-card h3 {
  color: #0A2463;
  font-size: 22px;
  margin-bottom: 12px;
}

.product-card .price {
  font-size: 28px;
  font-weight: 800;
  color: #3E92CC;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.compatibility {
  font-size: 14px;
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 12px;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0A2463;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  animation: pulse 2s infinite;
}

.rating {
  color: #FFD700;
  font-size: 14px;
  margin-top: 12px;
}

/* Materials & Options */
.materials-grid, .options-grid, .discounts-grid, .addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.material-card, .option-card, .discount-card, .addon-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #F4F4F9, #FFFFFF);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(10, 36, 99, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.material-card:hover, .option-card:hover, .discount-card:hover, .addon-card:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 12px 30px rgba(62, 146, 204, 0.2);
  border-color: #3E92CC;
}

.material-card h3, .option-card h3, .discount-card h3, .addon-card h3 {
  color: #0A2463;
  margin-bottom: 12px;
  font-size: 20px;
}

.discount-card p, .addon-card p {
  font-size: 24px;
  font-weight: 800;
  color: #3E92CC;
  margin: 12px 0;
  font-family: 'Montserrat', sans-serif;
}

/* Story & Values */
.story-section, .values-section {
  padding: 60px 20px;
}

.text-section {
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.text-section h2, .text-section h3 {
  color: #0A2463;
  margin-bottom: 16px;
}

.text-section p {
  color: #2C3E50;
  line-height: 1.8;
}

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

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #3E92CC, #0A2463);
  color: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.milestone:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 35px rgba(62, 146, 204, 0.4);
}

.milestone h3 {
  color: #FFD700;
  font-size: 32px;
  margin-bottom: 8px;
}

.milestone p {
  color: #F4F4F9;
  font-size: 16px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
  transition: all 0.3s ease;
  border-top: 5px solid #3E92CC;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(62, 146, 204, 0.25);
}

.value-card h3 {
  color: #0A2463;
  margin-bottom: 16px;
  font-size: 22px;
}

/* Statistics */
.statistics-section {
  background: #F4F4F9;
  padding: 60px 20px;
}

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

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.08);
  border-color: #3E92CC;
  box-shadow: 0 15px 40px rgba(62, 146, 204, 0.25);
}

.stat-card h3 {
  color: #3E92CC;
  font-size: 48px;
  margin-bottom: 8px;
  font-weight: 900;
}

.stat-card p {
  color: #0A2463;
  font-weight: 700;
  font-size: 16px;
}

/* Business Solutions */
.business-benefits {
  background: #F4F4F9;
}

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

.trust-badges span {
  background: #FFFFFF;
  color: #0A2463;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(10, 36, 99, 0.1);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(62, 146, 204, 0.2);
}

.case-study {
  background: #F4F4F9;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 16px;
  border-left: 6px solid #3E92CC;
  box-shadow: 0 4px 20px rgba(10, 36, 99, 0.1);
}

.case-study h3 {
  color: #0A2463;
  margin-bottom: 16px;
  font-size: 22px;
}

.case-study p {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Contact Page */
.contact-options {
  padding: 60px 20px;
}

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

.contact-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #F4F4F9, #FFFFFF);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: #3E92CC;
  box-shadow: 0 15px 40px rgba(62, 146, 204, 0.25);
}

.contact-card h3 {
  color: #0A2463;
  margin-bottom: 16px;
  font-size: 24px;
}

.contact-form-section {
  background: #F4F4F9;
  padding: 60px 20px;
}

.form-notice {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
  border-left: 5px solid #3E92CC;
  box-shadow: 0 4px 15px rgba(10, 36, 99, 0.1);
}

.form-notice p {
  margin-bottom: 8px;
  color: #2C3E50;
}

.contact-form-fields {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(10, 36, 99, 0.15);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 700;
  color: #0A2463;
  margin-bottom: 8px;
  font-size: 16px;
}

.form-field p {
  color: #2C3E50;
  font-size: 14px;
  margin-top: 8px;
}

.form-cta {
  margin-top: 32px;
  padding: 24px;
  background: #F4F4F9;
  border-radius: 12px;
  text-align: center;
}

.form-cta p {
  margin-bottom: 8px;
}

.opening-hours {
  background: #FFFFFF;
  padding: 60px 20px;
}

.hours-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hours-block {
  background: #F4F4F9;
  padding: 28px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 36, 99, 0.1);
}

.hours-block p {
  font-size: 16px;
  margin-bottom: 8px;
}

.visit-incentive {
  background: linear-gradient(135deg, #3E92CC, #0A2463);
  color: #FFFFFF;
  padding: 60px 20px;
}

.visit-incentive h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 32px;
}

.incentive-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.incentive-box h3 {
  color: #FFD700;
  font-size: 32px;
  margin-bottom: 16px;
}

.incentive-box p {
  color: #F4F4F9;
  font-size: 18px;
  margin-bottom: 12px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #3E92CC 0%, #0A2463 100%);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  color: #3E92CC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: bounceIn 1s ease-out;
}

.thank-you-content h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.thank-you-content p {
  color: #F4F4F9;
  font-size: 18px;
}

.next-steps, .while-waiting {
  padding: 60px 20px;
  background: #F4F4F9;
}

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

.step-card, .action-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10, 36, 99, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #3E92CC;
  margin-bottom: 20px;
}

.step-card:hover, .action-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(62, 146, 204, 0.2);
}

.step-card h3, .action-card h3 {
  color: #0A2463;
  margin-bottom: 12px;
  font-size: 20px;
}

.notice {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #2C3E50;
  font-style: italic;
}

.immediate-help {
  background: #FFFFFF;
  padding: 60px 20px;
}

.help-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: #F4F4F9;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(10, 36, 99, 0.1);
}

.help-info p {
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-snippet {
  background: #F4F4F9;
  padding: 60px 20px;
}

.special-offer {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  padding: 60px 20px;
}

.special-offer h2 {
  color: #0A2463;
  text-align: center;
  margin-bottom: 32px;
}

.offer-box {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.offer-box h3 {
  color: #0A2463;
  font-size: 28px;
  margin-bottom: 16px;
}

.offer-box p {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 12px;
}

/* Legal Pages */
.legal-page {
  padding: 60px 20px;
  background: #F4F4F9;
}

.legal-page h1 {
  color: #0A2463;
  margin-bottom: 16px;
  font-size: 42px;
}

.last-updated, .subtitle {
  color: #2C3E50;
  font-size: 14px;
  margin-bottom: 40px;
  font-style: italic;
}

.subtitle {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: #FFFFFF;
}

.faq-item {
  background: #F4F4F9;
  padding: 24px 32px;
  margin-bottom: 16px;
  border-radius: 12px;
  border-left: 5px solid #3E92CC;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(62, 146, 204, 0.15);
}

.faq-item h3 {
  color: #0A2463;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #2C3E50;
  line-height: 1.7;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0A2463 0%, #1a3a7f 100%);
  color: #F4F4F9;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

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

.footer-col h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
}

.footer-col p, .footer-col a {
  color: #F4F4F9;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

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

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

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

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0A2463, #1a3a7f);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cookie-consent.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 {
  margin-bottom: 0;
  font-size: 14px;
  color: #F4F4F9;
}

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

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

.cookie-btn-accept {
  background: #3E92CC;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: #FFFFFF;
  color: #0A2463;
  transform: translateY(-2px) scale(1.05);
}

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

.cookie-btn-reject:hover {
  background: #FFFFFF;
  color: #0A2463;
  transform: translateY(-2px) scale(1.05);
}

.cookie-btn-settings {
  background: transparent;
  color: #F4F4F9;
  border: 2px solid #3E92CC;
}

.cookie-btn-settings:hover {
  background: #3E92CC;
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.05);
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

#cookie-settings-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

#cookie-settings-modal.show .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #0A2463;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #F4F4F9;
  transform: rotate(90deg);
}

.modal-content h2 {
  color: #0A2463;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F4F4F9;
  border-radius: 12px;
  border-left: 4px solid #3E92CC;
}

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

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

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

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

.toggle-switch.active {
  background: #3E92CC;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-cta {
    display: none;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .benefits-grid,
  .services-grid,
  .tech-features,
  .testimonials-grid,
  .products-grid,
  .categories-grid,
  .materials-grid,
  .options-grid,
  .discounts-grid,
  .addons-grid,
  .values-grid,
  .stats-grid,
  .contact-grid,
  .steps-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .tech-feature,
  .testimonial-card,
  .product-card,
  .category-card,
  .material-card,
  .option-card,
  .discount-card,
  .addon-card,
  .value-card,
  .stat-card,
  .contact-card,
  .step-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  .location-details {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .service-detail {
    padding: 24px;
  }
  
  .contact-form-fields {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators span {
    width: 100%;
    text-align: center;
  }
}

/* Print Styles */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  footer,
  #cookie-consent,
  #cookie-settings-modal,
  .btn-primary,
  .btn-secondary,
  .btn-link {
    display: none !important;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}