/* ===================================
   FINTRAVO - TECH FUTURISTIC DESIGN
   Complete CSS Styles
   =================================== */

/* === CSS RESET & NORMALIZE === */
* {
  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', Roboto, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1729 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 100%;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(45, 122, 181, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

/* === CONTAINER & LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content-wrapper {
  width: 100%;
}

/* === HEADER === */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 122, 181, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 32px;
}

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

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

.main-nav a {
  color: #B0B8C8;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2D7AB5, #F4A942);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FFFFFF;
}

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

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2D7AB5, #1B4B7F);
  color: #FFFFFF;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(45, 122, 181, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(45, 122, 181, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  border-left: 1px solid rgba(45, 122, 181, 0.2);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(244, 169, 66, 0.2);
  color: #F4A942;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(244, 169, 66, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #B0B8C8;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(45, 122, 181, 0.1);
  border: 1px solid rgba(45, 122, 181, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(45, 122, 181, 0.2);
  color: #FFFFFF;
  transform: translateX(8px);
  border-color: #2D7AB5;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  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.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #2D7AB5, #1B4B7F);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(45, 122, 181, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(45, 122, 181, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #F4A942;
  border-color: #F4A942;
  box-shadow: 0 0 20px rgba(244, 169, 66, 0.2);
}

.btn-secondary:hover {
  background: rgba(244, 169, 66, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(244, 169, 66, 0.4);
}

/* === HERO SECTION === */
.hero-section {
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(45, 122, 181, 0.15), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(244, 169, 66, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-section h1 {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: #B0B8C8;
  margin-bottom: 32px;
  max-width: 700px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

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

.trust-badges span {
  color: #B0B8C8;
  font-size: 14px;
  padding: 8px 16px;
  background: rgba(45, 122, 181, 0.1);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 20px;
}

/* === SECTIONS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* === STATS GRID === */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.stat-card, .stat-item {
  flex: 1;
  min-width: 250px;
  padding: 32px 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2D7AB5, #F4A942);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
}

.stat-card h3, .stat-item h3 {
  font-size: 48px;
  color: #F4A942;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(244, 169, 66, 0.5);
}

.stat-card p, .stat-item p {
  font-size: 16px;
  color: #B0B8C8;
}

/* === FEATURES GRID === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.feature-card {
  flex: 1;
  min-width: 250px;
  padding: 32px 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
  border-color: #2D7AB5;
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p {
  font-size: 14px;
  color: #B0B8C8;
}

/* === SERVICES GRID === */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.service-card {
  flex: 1;
  min-width: 300px;
  padding: 32px 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card.popular::before {
  content: 'BELIEBT';
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #F4A942, #E09A2E);
  color: #0A0E27;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
}

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

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

.service-card .price {
  font-size: 32px;
  color: #F4A942;
  font-weight: 700;
  margin: 20px 0;
}

.service-card .benefits {
  margin: 20px 0;
  text-align: left;
}

.service-card .benefits li {
  padding: 8px 0;
  color: #B0B8C8;
  position: relative;
  padding-left: 24px;
}

.service-card .benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A942;
  font-weight: 700;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #F4A942, #E09A2E);
  color: #0A0E27;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* === STEPS GRID === */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.step-card {
  flex: 1;
  min-width: 220px;
  padding: 32px 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2D7AB5, #1B4B7F);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(45, 122, 181, 0.4);
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.step-card p {
  font-size: 14px;
  color: #B0B8C8;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  color: #E0E0E0;
}

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

.rating {
  text-align: center;
  font-size: 18px;
  color: #F4A942;
  margin-top: 32px;
  font-weight: 600;
}

/* === CATEGORIES & CARDS === */
.categories-grid, .lifehacks-grid, .articles-grid, .guides-grid, .tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.category-card, .lifehack-card, .article-card, .guide-card, .tool-card, .calculator-card {
  flex: 1;
  min-width: 280px;
  padding: 32px 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.category-card:hover, .lifehack-card:hover, .article-card:hover, .guide-card:hover, .tool-card:hover, .calculator-card:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
  border-color: #2D7AB5;
}

.lifehack-card.featured, .article-card.featured {
  border: 2px solid #F4A942;
  box-shadow: 0 0 30px rgba(244, 169, 66, 0.2);
}

.category-card img, .lifehack-card img, .article-card img, .guide-card img, .tool-card img, .calculator-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

.category-card h3, .lifehack-card h3, .article-card h3, .guide-card h3, .tool-card h3, .calculator-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.category-card p, .lifehack-card p, .article-card p, .guide-card p, .tool-card p, .calculator-card p {
  font-size: 14px;
  color: #B0B8C8;
}

.category-card a, .lifehack-card a, .article-card a, .guide-card a, .tool-card a, .calculator-card a {
  color: #F4A942;
  font-weight: 600;
  margin-top: auto;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.card-meta span {
  padding: 4px 12px;
  background: rgba(244, 169, 66, 0.1);
  border: 1px solid rgba(244, 169, 66, 0.3);
  border-radius: 4px;
  font-size: 12px;
  color: #F4A942;
}

.savings {
  color: #F4A942 !important;
  font-weight: 600;
}

.difficulty {
  color: #2D7AB5 !important;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.article-meta span {
  padding: 4px 12px;
  background: rgba(45, 122, 181, 0.1);
  border: 1px solid rgba(45, 122, 181, 0.3);
  border-radius: 4px;
  font-size: 12px;
  color: #B0B8C8;
}

/* === PROCESS GRID === */
.process-grid, .expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.process-step, .expertise-item {
  flex: 1;
  min-width: 220px;
  padding: 32px 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.process-step:hover, .expertise-item:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2D7AB5, #1B4B7F);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(45, 122, 181, 0.4);
}

.process-step h3, .expertise-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p, .expertise-item p {
  font-size: 14px;
  color: #B0B8C8;
}

.timeline {
  color: #F4A942;
  font-size: 12px;
  font-weight: 600;
}

.expertise-item img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

/* === PRICING SECTION === */
.pricing-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 8px;
}

.pricing-feature img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 5px rgba(244, 169, 66, 0.5));
}

.pricing-feature span {
  color: #B0B8C8;
  font-weight: 600;
}

.value-guarantee {
  text-align: center;
  font-size: 18px;
  color: #F4A942;
  font-weight: 600;
  margin-top: 32px;
  padding: 16px;
  background: rgba(244, 169, 66, 0.1);
  border: 1px solid rgba(244, 169, 66, 0.3);
  border-radius: 8px;
}

/* === VALUES & TIMELINE === */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.value-item {
  flex: 1;
  min-width: 220px;
  padding: 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-item:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
}

.value-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

.value-item h4 {
  font-size: 18px;
  color: #F4A942;
}

.timeline {
  margin-top: 40px;
}

.timeline-item {
  padding: 24px;
  background: rgba(45, 122, 181, 0.05);
  border-left: 3px solid #2D7AB5;
  margin-bottom: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: rgba(45, 122, 181, 0.1);
  transform: translateX(5px);
}

.timeline-item .year {
  font-size: 24px;
  color: #F4A942;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #B0B8C8;
}

/* === CREDENTIALS & DIFFERENTIATORS === */
.credentials-grid, .differentiators-grid, .promises-grid, .stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.credential-item, .diff-item, .promise-item, .story-card {
  flex: 1;
  min-width: 240px;
  padding: 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.credential-item:hover, .diff-item:hover, .promise-item:hover, .story-card:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
}

.credential-item img, .diff-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

.credential-item p, .diff-item p, .promise-item p {
  color: #B0B8C8;
  font-size: 14px;
}

.education-note {
  text-align: center;
  margin-top: 32px;
  color: #F4A942;
  font-weight: 600;
}

.story-card h3 {
  font-size: 24px;
  color: #F4A942;
  margin-bottom: 8px;
}

.story-card p {
  color: #B0B8C8;
}

/* === EXPERTISE AREAS === */
.expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.expertise-areas span {
  padding: 8px 16px;
  background: rgba(244, 169, 66, 0.1);
  border: 1px solid rgba(244, 169, 66, 0.3);
  border-radius: 20px;
  color: #F4A942;
  font-size: 14px;
  font-weight: 600;
}

/* === CONTACT SECTION === */
.contact-info {
  margin-top: 32px;
  padding: 32px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
}

.contact-info p {
  margin-bottom: 16px;
  color: #B0B8C8;
}

.contact-info strong {
  color: #F4A942;
}

/* === CONTACT OPTIONS === */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

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

.contact-option {
  flex: 1;
  min-width: 250px;
  padding: 32px 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-option:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

.contact-option h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-option p {
  color: #B0B8C8;
  font-size: 14px;
}

/* === FORMS === */
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #B0B8C8;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 8px;
  color: #E0E0E0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2D7AB5;
  box-shadow: 0 0 20px rgba(45, 122, 181, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-group.checkbox input {
  width: auto;
  margin: 0;
}

.form-group.checkbox label {
  margin: 0;
}

.security-note {
  text-align: center;
  font-size: 12px;
  color: #B0B8C8;
  margin-top: 16px;
}

/* === SEARCH BAR === */
.search-bar {
  display: flex;
  gap: 8px;
  max-width: 600px;
  margin: 32px auto;
}

.search-bar input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 8px;
  color: #E0E0E0;
  font-size: 14px;
}

.search-bar input:focus {
  outline: none;
  border-color: #2D7AB5;
  box-shadow: 0 0 20px rgba(45, 122, 181, 0.3);
}

.search-bar button {
  padding: 14px 32px;
  background: linear-gradient(135deg, #2D7AB5, #1B4B7F);
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.search-bar button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(45, 122, 181, 0.6);
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
  align-items: center;
}

.popular-searches span {
  color: #B0B8C8;
  font-size: 14px;
}

.popular-searches a {
  padding: 6px 16px;
  background: rgba(45, 122, 181, 0.1);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 20px;
  color: #F4A942;
  font-size: 14px;
  transition: all 0.3s ease;
}

.popular-searches a:hover {
  background: rgba(45, 122, 181, 0.2);
  border-color: #2D7AB5;
}

/* === FILTER & TAGS === */
.category-filter, .category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.filter-btn, .tag-btn {
  padding: 10px 20px;
  background: rgba(45, 122, 181, 0.1);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 8px;
  color: #B0B8C8;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover, .tag-btn:hover {
  background: rgba(45, 122, 181, 0.2);
  color: #FFFFFF;
}

.filter-btn.active, .tag-btn.active {
  background: linear-gradient(135deg, #2D7AB5, #1B4B7F);
  color: #FFFFFF;
  border-color: #2D7AB5;
}

/* === PAGE LINKS === */
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.page-link {
  flex: 1;
  min-width: 200px;
  padding: 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.page-link:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
  border-color: #2D7AB5;
}

.page-link img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

.page-link span {
  color: #F4A942;
  font-weight: 600;
  font-size: 16px;
}

/* === QUICK LINKS === */
.quick-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  justify-content: center;
}

.quick-link {
  padding: 16px 32px;
  background: rgba(45, 122, 181, 0.1);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 8px;
  color: #F4A942;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.quick-link:hover {
  background: rgba(45, 122, 181, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(45, 122, 181, 0.4);
}

/* === TRUST GRID === */
.trust-grid, .trust-elements {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  text-align: center;
}

.trust-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

.trust-item p {
  color: #B0B8C8;
  font-size: 14px;
}

.trust-elements span {
  padding: 8px 16px;
  background: rgba(244, 169, 66, 0.1);
  border: 1px solid rgba(244, 169, 66, 0.3);
  border-radius: 20px;
  color: #F4A942;
  font-size: 14px;
  font-weight: 600;
}

/* === SOCIAL LINKS === */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.social-link {
  padding: 12px 24px;
  background: rgba(45, 122, 181, 0.1);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 8px;
  color: #F4A942;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(45, 122, 181, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(45, 122, 181, 0.4);
}

/* === SPECIAL TEXT STYLES === */
.urgency {
  text-align: center;
  font-size: 14px;
  color: #F4A942;
  font-weight: 600;
  margin-top: 16px;
}

.guarantee, .trust-note, .response-time {
  text-align: center;
  font-size: 14px;
  color: #B0B8C8;
  margin-top: 16px;
}

.last-updated {
  font-size: 14px;
  color: #B0B8C8;
  margin-top: 8px;
}

/* === LEGAL CONTENT === */
.legal-hero {
  padding: 60px 20px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
  padding: 32px;
  background: rgba(45, 122, 181, 0.05);
  border-left: 3px solid #2D7AB5;
  border-radius: 8px;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #F4A942;
}

.legal-section p {
  margin-bottom: 12px;
  color: #B0B8C8;
}

.legal-section ul {
  margin-left: 20px;
  margin-top: 12px;
}

.legal-section ul li {
  padding: 8px 0;
  color: #B0B8C8;
  position: relative;
  padding-left: 20px;
}

.legal-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F4A942;
  font-weight: 700;
}

/* === ERROR PAGE === */
.error-hero {
  text-align: center;
  padding: 80px 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #F4A942;
  text-shadow: 0 0 40px rgba(244, 169, 66, 0.5);
  margin-bottom: 24px;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2D7AB5, #1B4B7F);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.6);
}

/* === RESOURCES GRID === */
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.resource-card {
  flex: 1;
  min-width: 300px;
  padding: 32px 24px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.resource-card:hover {
  transform: translateY(-5px);
  background: rgba(45, 122, 181, 0.1);
  box-shadow: 0 10px 40px rgba(45, 122, 181, 0.3);
}

.resource-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

.resource-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.resource-card p {
  font-size: 14px;
  color: #B0B8C8;
  margin-bottom: 20px;
}

/* === CALCULATOR GRID === */
.calculator-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

/* === OFFICE INFO === */
.office-info {
  margin-top: 32px;
  padding: 32px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 12px;
}

.office-info p {
  margin-bottom: 16px;
  color: #B0B8C8;
}

.office-info strong {
  color: #F4A942;
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
  background: rgba(45, 122, 181, 0.05);
  border-radius: 12px;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(45, 122, 181, 0.1), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 16px;
}

/* === FOOTER === */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 1px solid rgba(45, 122, 181, 0.2);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1;
  min-width: 220px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(45, 122, 181, 0.5));
}

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

.footer-col p {
  font-size: 14px;
  color: #B0B8C8;
  margin-bottom: 8px;
}

.footer-col a {
  display: block;
  color: #B0B8C8;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(45, 122, 181, 0.2);
}

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

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid #2D7AB5;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: #B0B8C8;
  margin-bottom: 8px;
}

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

.cookie-banner button {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #2D7AB5, #1B4B7F);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(45, 122, 181, 0.4);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(45, 122, 181, 0.6);
}

.cookie-reject {
  background: transparent;
  color: #B0B8C8;
  border: 1px solid rgba(176, 184, 200, 0.3);
}

.cookie-reject:hover {
  background: rgba(176, 184, 200, 0.1);
  border-color: #B0B8C8;
}

.cookie-settings {
  background: transparent;
  color: #F4A942;
  border: 1px solid rgba(244, 169, 66, 0.3);
}

.cookie-settings:hover {
  background: rgba(244, 169, 66, 0.1);
  border-color: #F4A942;
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1997;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  border: 1px solid rgba(45, 122, 181, 0.3);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.9);
}

.cookie-modal h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #F4A942;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(45, 122, 181, 0.05);
  border: 1px solid rgba(45, 122, 181, 0.2);
  border-radius: 8px;
}

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

.cookie-category p {
  font-size: 14px;
  color: #B0B8C8;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: rgba(176, 184, 200, 0.3);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #2D7AB5;
}

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

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

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

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-content {
    padding: 12px 0;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grids */
  .stats-grid,
  .features-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .categories-grid,
  .lifehacks-grid,
  .articles-grid,
  .guides-grid,
  .tools-grid,
  .calculator-grid,
  .process-grid,
  .expertise-grid,
  .values-grid,
  .credentials-grid,
  .differentiators-grid,
  .promises-grid,
  .stories-grid,
  .contact-grid,
  .resources-grid,
  .page-links,
  .footer-content {
    flex-direction: column;
  }
  
  .stat-card,
  .feature-card,
  .service-card,
  .step-card,
  .testimonial-card,
  .category-card,
  .lifehack-card,
  .article-card,
  .guide-card,
  .tool-card,
  .calculator-card,
  .process-step,
  .expertise-item,
  .value-item,
  .credential-item,
  .diff-item,
  .promise-item,
  .story-card,
  .contact-option,
  .resource-card,
  .page-link,
  .footer-col {
    min-width: 100%;
  }
  
  /* Error Code */
  .error-code {
    font-size: 80px;
  }
  
  /* Success Icon */
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
  
  /* Forms */
  .contact-form {
    padding: 24px;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner button {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  /* Trust Badges */
  .trust-badges {
    justify-content: center;
  }
  
  .trust-badges span {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .error-code {
    font-size: 60px;
  }
  
  .stat-card h3,
  .stat-item h3 {
    font-size: 36px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

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

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

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

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

/* Apply animations on scroll (requires JavaScript) */
.animate-on-scroll {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

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

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

.hidden {
  display: none;
}

/* === ACCESSIBILITY === */
:focus {
  outline: 2px solid #F4A942;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* === PRINT STYLES === */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}
