/* CSS Reset and 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', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
  overflow-x: hidden;
}

/* Playful Typography with Animated Bounce */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #174270;
  margin-bottom: 16px;
  animation: bounceIn 0.6s ease-out;
}

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

h1 {
  font-size: 48px;
  text-shadow: 3px 3px 0 rgba(184, 150, 31, 0.2);
}

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

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #B8961F 0%, #FFD700 100%);
  border-radius: 2px;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from { width: 0; }
  to { width: 100%; }
}

h3 {
  font-size: 24px;
  color: #2C5F8D;
}

h4 {
  font-size: 18px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #34495E;
}

a {
  color: #174270;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

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

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #FFD700;
  animation: twinkle 2s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

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

/* Header with Playful Shadow */
header {
  background: linear-gradient(135deg, #174270 0%, #2C5F8D 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(23, 66, 112, 0.3);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

.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;
}

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

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: #B8961F;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 12px rgba(184, 150, 31, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #B8961F 0%, #FFD700 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(184, 150, 31, 0.5);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

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

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #FFD700 0%, #B8961F 100%);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #174270 0%, #2C5F8D 100%);
  z-index: 1999;
  padding: 80px 20px 20px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
}

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

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

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #FFD700;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  transform: translateX(100px);
  opacity: 0;
  animation: slideInNav 0.4s ease forwards;
}

.mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav a:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav a:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInNav {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.mobile-nav a:hover {
  background: #B8961F;
  transform: translateX(8px);
}

/* Hero Section with Dynamic Colors */
.hero {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 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.3) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

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

.hero-subheadline {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 32px;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Buttons with Playful Animation */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #174270 0%, #2C5F8D 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(23, 66, 112, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(23, 66, 112, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, #B8961F 0%, #FFD700 100%);
  color: #174270;
  box-shadow: 0 8px 20px rgba(184, 150, 31, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(184, 150, 31, 0.5);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.3);
}

.trust-item img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.trust-item span {
  color: #FFFFFF;
  font-weight: 600;
}

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

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

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Services Grid */
.services-overview {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9E6 100%);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  border: 3px solid transparent;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #FFD700, #FF6B6B, #B8961F, #FFA500);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
  animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

.service-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 16px 40px rgba(184, 150, 31, 0.3);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(184, 150, 31, 0.3));
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: rotate(360deg) scale(1.2);
}

.service-card h3 {
  margin-bottom: 16px;
  color: #174270;
}

.service-card p {
  margin-bottom: 20px;
  font-size: 14px;
}

.service-card .price {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #B8961F;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Benefits Section */
.benefits {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 50%, #FFD700 100%);
  padding: 60px 20px;
}

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

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 32px 24px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.3);
}

.benefit-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.benefit-item:hover img {
  transform: rotate(360deg);
}

.benefit-item h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
  font-size: 18px;
}

.benefit-item p {
  color: #FFFFFF;
  font-size: 14px;
  margin: 0;
}

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

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  border-left: 6px solid #FFD700;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(184, 150, 31, 0.2);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #FFD700;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  color: #2C3E50;
  line-height: 1.8;
}

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

.testimonial-author strong {
  color: #174270;
  font-size: 16px;
}

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

.rating {
  text-align: center;
  font-size: 24px;
  color: #FFD700;
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #174270 0%, #2C5F8D 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 107, 107, 0.2) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

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

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

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.contact-info {
  position: relative;
  z-index: 1;
}

.contact-info p {
  margin-bottom: 8px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

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

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

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

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

/* Service Detail */
.services-detailed {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #FFD700;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 28px rgba(184, 150, 31, 0.2);
}

/* Pricing */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9E6 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  transition: left 0.6s ease;
}

.pricing-card:hover::before {
  left: 100%;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 16px 40px rgba(184, 150, 31, 0.3);
}

.pricing-card h3 {
  margin-bottom: 20px;
  color: #174270;
}

.price-large {
  font-size: 32px;
  font-weight: 700;
  color: #B8961F;
  margin-bottom: 24px;
  display: block;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 0;
}

.vat-notice {
  text-align: center;
  font-size: 14px;
  color: #7F8C8D;
  margin-top: 32px;
}

/* Factors Grid */
.factors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.factor-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.factor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(184, 150, 31, 0.2);
}

/* Payment Grid */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 24px;
}

.payment-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.payment-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(184, 150, 31, 0.2);
}

.payment-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

/* About Section */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.stat-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(184, 150, 31, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
}

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

.stat-item p {
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(184, 150, 31, 0.2);
}

.value-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 8px rgba(184, 150, 31, 0.3));
}

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

.faq-category h2 {
  color: #174270;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #FFD700;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #FFD700;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(184, 150, 31, 0.2);
}

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

.faq-item p {
  margin: 0;
  color: #2C3E50;
}

/* Contact */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.contact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(184, 150, 31, 0.2);
}

.contact-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.contact-item h3 {
  margin-bottom: 12px;
}

.contact-item a {
  color: #174270;
  font-weight: 600;
}

/* Form Placeholder */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-placeholder {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
  padding: 40px;
  border-radius: 20px;
  border: 3px dashed #B8961F;
  text-align: center;
}

.note {
  font-size: 14px;
  color: #7F8C8D;
  font-style: italic;
}

/* Map Placeholder */
.map-placeholder {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
  padding: 120px 40px;
  border-radius: 20px;
  text-align: center;
  border: 3px dashed #B8961F;
  margin-top: 32px;
  font-size: 18px;
  color: #7F8C8D;
}

/* Hours Table */
.hours-table {
  max-width: 600px;
  margin: 0 auto 32px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hours-row:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(184, 150, 31, 0.2);
}

.hours-row .day {
  font-weight: 600;
  color: #174270;
}

.hours-row .time {
  color: #B8961F;
  font-weight: 600;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.legal-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.legal-section h2 {
  color: #174270;
  margin-bottom: 16px;
}

.legal-section h3 {
  color: #2C5F8D;
  margin-top: 24px;
  margin-bottom: 12px;
}

.last-updated {
  color: #7F8C8D;
  font-size: 14px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 56px;
  color: #4CAF50;
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.confirmation-text {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.step-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-8px);
}

.step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #FFFFFF;
  border-radius: 50%;
  line-height: 56px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.contact-option {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(184, 150, 31, 0.2);
}

.contact-option img {
  width: 40px;
  height: 40px;
}

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

.resource-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(184, 150, 31, 0.2);
}

.resource-item h3 a {
  color: #174270;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #174270 0%, #2C5F8D 100%);
  color: #FFFFFF;
  padding: 48px 20px 24px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: #FFD700;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

.footer-nav a {
  color: #FFFFFF;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

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

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #174270 0%, #2C5F8D 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  margin: 0;
  color: #FFFFFF;
}

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

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

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: slideUp 0.4s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #B8961F;
  color: #FFFFFF;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  color: #174270;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #FFF9E6;
  border-radius: 12px;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 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: #4CAF50;
}

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

.toggle-switch.active::after {
  left: 27px;
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .pricing-grid,
  .factors-grid,
  .payment-grid,
  .stats-grid,
  .values-grid,
  .contact-grid,
  .steps-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card,
  .pricing-card,
  .factor-item,
  .payment-item,
  .stat-item,
  .value-item,
  .contact-item,
  .step-item,
  .resource-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .section, section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .service-card,
  .pricing-card,
  .legal-section {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}