/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Color Variables - Tiffany Blue & Warm Teal */
:root {
  --primary: #22d3ee;  /* Tiffany Blue / Cyan */
  --secondary: #14b8a6; /* Teal */
  --accent: #06b6d4;    /* Sky Blue */
  --warm: #2dd4bf;      /* Warm Teal */
  --success: #10b981;   /* Emerald */
  --info: #0ea5e9;      /* Light Blue */
  --warm-gradient: linear-gradient(135deg, #22d3ee 0%, #14b8a6 100%);
  --calm-gradient: linear-gradient(135deg, #06b6d4 0%, #2dd4bf 100%);
}

/* Navigation */
.sticky-nav {
  background: linear-gradient(135deg, #22d3ee 0%, #14b8a6 100%);
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-link {
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-link-btn {
  background: white;
  color: #14b8a6;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  display: block;
  transform: translateY(0);
}

.mobile-menu-link {
  display: block;
  padding: 16px;
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.mobile-menu-link:hover {
  background: linear-gradient(135deg, #cffafe 0%, #ccfbf1 100%);
  color: #14b8a6;
  padding-left: 24px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #22d3ee 0%, #14b8a6 50%, #2dd4bf 100%);
  position: relative;
  overflow: hidden;
}

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

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

/* Buttons */
.btn-primary {
  background: white;
  color: #14b8a6;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  background: #ccfbf1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  border: 2px solid white;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-secondary:hover {
  background: white;
  color: #14b8a6;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: #14b8a6;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid #14b8a6;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline:hover {
  background: #14b8a6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Benefit Cards */
.benefit-card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Service Cards */
.service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Pricing Cards */
.pricing-card {
  background: white;
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  min-height: auto;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
  border: 3px solid #f43f5e;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f43f5e 0%, #f97316 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

.price-tag {
  margin: 20px 0;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.star-rating {
  color: #fbbf24;
  font-size: 18px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Cards */
.contact-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Form Styles */
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-input:focus {
  outline: none;
  border-color: #f43f5e;
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

/* Floating Action Button */
.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f43f5e 0%, #f97316 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(244, 63, 94, 0.6);
}

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

/* Social Icons */
.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.25rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }
  
  .feature-card,
  .service-card,
  .pricing-card,
  .testimonial-card,
  .contact-card {
    padding: 24px;
  }
  
  section {
    padding: 40px 0 !important;
  }
}

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

section {
  animation: fadeIn 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #f43f5e 0%, #f97316 100%);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #e11d48 0%, #ea580c 100%);
}

/* Utility Classes */
.container {
  max-width: 1200px;
}

/* Smooth transitions for all interactive elements */
a, button, .btn-primary, .btn-secondary, .btn-outline {
  transition: all 0.3s ease;
}

/* Difference Cards */
.difference-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.difference-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: #f43f5e;
}

.difference-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* How It Works Cards */
.how-it-works-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 3px solid transparent;
}

.how-it-works-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  border-color: #3b82f6;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.how-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 20px;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Trust Badges */
.trust-badge {
  padding: 20px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-6px);
}

.trust-badge i {
  transition: all 0.3s ease;
}

.trust-badge:hover i {
  transform: scale(1.1);
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.faq-icon {
  color: #a855f7;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon {
  transform: translateX(4px);
}

.faq-answer {
  padding: 0 24px 20px 56px;
  border-top: 1px solid #e5e7eb;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .difference-card,
  .how-it-works-card {
    padding: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: -15px;
  }
  
  .how-icon {
    width: 70px;
    height: 70px;
  }
  
  .difference-icon {
    width: 60px;
    height: 60px;
  }
  
  .faq-answer {
    padding: 0 20px 16px 20px;
  }
}

/* ============================================
   QUIZ STYLES
   ============================================ */

.quiz-icon-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quiz-benefit {
  text-align: center;
  padding: 16px;
}

.quiz-progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
  transition: width 0.3s ease;
  width: 20%;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.quiz-option:hover {
  border-color: #a855f7;
  background: linear-gradient(135deg, #faf5ff 0%, #fce7f3 100%);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.quiz-option.selected {
  border-color: #a855f7;
  background: linear-gradient(135deg, #e9d5ff 0%, #fbcfe8 100%);
  border-width: 3px;
}

.quiz-option i:first-child {
  flex-shrink: 0;
}

.quiz-option span {
  flex: 1;
  font-size: 16px;
}

.quiz-option i:last-child {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.quiz-option:hover i:last-child {
  transform: translateX(4px);
}

.result-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #e5e7eb;
}

.result-card.featured-result {
  border-color: #a855f7;
  background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
}

.result-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* Cost Calculator Slider */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid #a855f7;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  border: 3px solid #a855f7;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

/* Mobile responsive adjustments for quiz */
@media (max-width: 768px) {
  .quiz-icon-large {
    width: 90px;
    height: 90px;
  }
  
  .quiz-icon-large i {
    font-size: 3rem !important;
  }
  
  .quiz-option {
    padding: 16px;
  }
  
  .quiz-option span {
    font-size: 14px;
  }
  
  .result-icon {
    width: 50px;
    height: 50px;
  }
}
