/* ============================================
   NovqenAltrevoAI - Playful Dynamic CSS
   Modern Financial Services with Energy
   ============================================ */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2D3748;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFFFFF 50%, #E6F3FF 100%);
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #174172 0%, #2C7BB6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInDown 0.8s ease-out;
}

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

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

h3 {
  font-size: 24px;
  color: #1B4B7F;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4A5568;
}

a {
  color: #2C7BB6;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

/* Header - Playful & Sticky */
header {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(23, 65, 114, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideInDown 0.5s ease-out;
}

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

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

header img:hover {
  transform: scale(1.1) rotate(-2deg);
}

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

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

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #E69500, #F4A41A);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #E69500 0%, #F4A41A 100%);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 149, 0, 0.4);
}

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

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 32px rgba(230, 149, 0, 0.6);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #174172 0%, #2C7BB6 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid #E69500;
  transition: all 0.3s ease;
  animation: slideInRight 0.5s ease-out backwards;
}

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

.mobile-nav a:hover {
  background: #E69500;
  transform: translateX(-10px);
  border-left-width: 8px;
}

/* Hero Section - Dynamic & Energetic */
.hero {
  background: linear-gradient(135deg, #174172 0%, #2C7BB6 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(246, 164, 26, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 149, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

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

.hero .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 20px;
  color: #E6F3FF;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* CTA Buttons - Playful */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #E69500 0%, #F4A41A 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(230, 149, 0, 0.4);
}

.btn-primary::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-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(230, 149, 0, 0.6);
}

.btn-secondary {
  background: #FFFFFF;
  color: #174172;
  border: 3px solid #E69500;
  box-shadow: 0 4px 16px rgba(23, 65, 114, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #E69500 0%, #F4A41A 100%);
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(230, 149, 0, 0.5);
}

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: fadeIn 1s ease-out;
}

/* Hero Internal Pages */
.hero-internal {
  background: linear-gradient(135deg, #2C7BB6 0%, #174172 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-internal h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 20px;
  color: #E6F3FF;
  margin-bottom: 24px;
}

/* Sections */
.section,
.value-proposition,
.services-overview,
.testimonials,
.cta-final,
.cta-section,
.content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Value Proposition */
.value-proposition {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(23, 65, 114, 0.1);
}

.value-proposition h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 48px;
}

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

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 100%);
  border-radius: 16px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.value-item::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #E69500, #F4A41A);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.value-item:hover::before {
  opacity: 1;
}

.value-item:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 16px 48px rgba(230, 149, 0, 0.3);
}

.value-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.value-item:hover img {
  transform: scale(1.2) rotate(-10deg);
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #174172;
}

.value-item p {
  font-size: 15px;
  color: #4A5568;
}

/* Services Grid */
.services-overview {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFFFFF 100%);
  padding: 60px 40px;
  border-radius: 20px;
}

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

.services-overview > p {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(23, 65, 114, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E69500, #F4A41A);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(230, 149, 0, 0.3);
  border-color: #F4A41A;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #174172;
}

.service-card p {
  font-size: 16px;
  color: #4A5568;
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 32px;
  font-weight: 800;
  color: #E69500;
  margin: 0;
}

/* Testimonials - Readable */
.testimonials {
  background: linear-gradient(135deg, #174172 0%, #2C7BB6 100%);
  padding: 60px 40px;
  border-radius: 20px;
  color: #FFFFFF;
}

.testimonials h2 {
  text-align: center;
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 48px;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #E69500, #F4A41A);
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-left: 6px solid #E69500;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 16px 56px rgba(230, 149, 0, 0.4);
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #174172;
  font-style: normal;
  font-size: 14px;
}

/* Content Sections */
.text-section {
  margin-bottom: 48px;
}

.text-section h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Values Section */
.values-section {
  background: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 100%);
  padding: 48px;
  border-radius: 20px;
  margin-bottom: 48px;
}

/* Areas Grid */
.areas-section,
.methodology-section {
  margin-bottom: 48px;
}

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

.area-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(23, 65, 114, 0.1);
  border-top: 4px solid #E69500;
  transition: all 0.3s ease;
}

.area-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(230, 149, 0, 0.3);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #174172 0%, #2C7BB6 100%);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 48px;
}

.stats-section h2 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 200px;
  padding: 24px;
}

.stat-item h3 {
  font-size: 56px;
  color: #E69500;
  margin-bottom: 8px;
  animation: countUp 2s ease-out;
}

.stat-item p {
  font-size: 18px;
  color: #E6F3FF;
}

/* Methodology */
.methodology-section ol {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

.methodology-section ol li {
  counter-increment: step-counter;
  margin-bottom: 24px;
  padding-left: 80px;
  position: relative;
  font-size: 18px;
  line-height: 1.8;
}

.methodology-section ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #E69500, #F4A41A);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(230, 149, 0, 0.4);
}

/* Services List */
.services-list {
  padding: 40px 20px;
}

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

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 48px rgba(230, 149, 0, 0.3);
}

.service-detail h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 36px;
  font-weight: 800;
  color: #E69500;
  margin-bottom: 20px;
  display: block;
}

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

.service-detail ul li {
  padding-left: 32px;
  margin-bottom: 12px;
  position: relative;
  font-size: 16px;
}

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

/* Resources */
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.resource-category {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(23, 65, 114, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.resource-category:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 48px rgba(230, 149, 0, 0.3);
}

.resource-category img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

/* Guides Section */
.guides-section {
  background: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 100%);
  padding: 48px;
  border-radius: 20px;
}

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

.guides-section ul li {
  padding: 20px;
  margin-bottom: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  border-left: 4px solid #E69500;
  box-shadow: 0 4px 16px rgba(23, 65, 114, 0.1);
  transition: all 0.3s ease;
}

.guides-section ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 24px rgba(230, 149, 0, 0.3);
}

/* Contact Options */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

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

.contact-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(230, 149, 0, 0.3);
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

/* Office Info */
.office-info,
.contact-form-section {
  background: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 100%);
  padding: 48px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.note {
  font-size: 14px;
  color: #E69500;
  font-weight: 600;
  background: rgba(230, 149, 0, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
}

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

.legal-content h1 {
  font-size: 40px;
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 32px;
}

.legal-content ul li,
.legal-content ol li {
  margin-bottom: 12px;
}

/* Thank You Page */
.thank-you-content {
  padding: 60px 20px;
  text-align: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #E69500, #F4A41A);
  color: #FFFFFF;
  font-size: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(230, 149, 0, 0.4);
  animation: scaleIn 0.6s ease-out;
}

.next-steps,
.suggestions {
  background: #FFFFFF;
  padding: 48px;
  border-radius: 20px;
  margin: 48px 0;
  box-shadow: 0 8px 32px rgba(23, 65, 114, 0.1);
}

.next-steps ol {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
}

.suggestion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.suggestion-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 100%);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(23, 65, 114, 0.1);
  transition: all 0.3s ease;
}

.suggestion-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(230, 149, 0, 0.3);
}

.suggestion-item a {
  display: inline-block;
  margin-top: 16px;
  color: #E69500;
  font-weight: 700;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #174172 0%, #0F2844 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-info {
  flex: 1 1 300px;
}

.footer-info img {
  height: 50px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-info p {
  color: #B3D9FF;
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-links h4 {
  font-size: 18px;
  color: #E69500;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: #B3D9FF;
  margin-bottom: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #E69500;
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  color: #B3D9FF;
  font-size: 14px;
  padding-top: 32px;
  border-top: 2px solid rgba(179, 217, 255, 0.2);
}

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

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

#cookie-consent-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

#cookie-consent-banner p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 15px;
  color: #E6F3FF;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-all-cookies {
  background: linear-gradient(135deg, #E69500, #F4A41A);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(230, 149, 0, 0.4);
}

#accept-all-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 149, 0, 0.6);
}

#reject-all-cookies {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

#reject-all-cookies:hover {
  background: #FFFFFF;
  color: #174172;
}

#cookie-settings {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #E69500;
}

#cookie-settings:hover {
  background: #E69500;
  color: #FFFFFF;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleIn 0.3s ease-out;
}

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

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

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

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #CBD5E0;
  border-radius: 28px;
  transition: 0.3s;
}

.cookie-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .cookie-slider {
  background: linear-gradient(135deg, #E69500, #F4A41A);
}

input:checked + .cookie-slider::before {
  transform: translateX(28px);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-cookie-preferences {
  background: linear-gradient(135deg, #E69500, #F4A41A);
  color: #FFFFFF;
}

#save-cookie-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 149, 0, 0.5);
}

#close-cookie-modal {
  background: #E2E8F0;
  color: #2D3748;
}

#close-cookie-modal:hover {
  background: #CBD5E0;
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }

  .value-item,
  .service-card,
  .testimonial-card,
  .area-item,
  .contact-option,
  .resource-category,
  .suggestion-item {
    flex: 1 1 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  #cookie-consent-banner .container {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .methodology-section ol li {
    padding-left: 72px;
  }

  .methodology-section ol li::before {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-item {
    flex: 1 1 calc(50% - 16px);
  }

  .service-card {
    flex: 1 1 calc(50% - 16px);
  }

  .area-item {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-preferences-modal,
  .cta-buttons {
    display: none !important;
  }

  body {
    background: #FFFFFF;
  }

  header {
    position: relative;
    box-shadow: none;
  }
}