/* ========================================
   FrozenCash - Creative Artistic Design
   Modern Financial Technology Website
   ======================================== */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
footer p {
  color: white;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1C1C1E;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1C1C1E;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  color: #0A7EA4;
}

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

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

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

a:hover {
  color: #00D9FF;
  transform: translateX(2px);
}

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

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

/* Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(10, 126, 164, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #00D9FF;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: relative;
}

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

.logo:hover img {
  transform: scale(1.05) rotate(2deg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1C1C1E;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.nav-menu a:hover {
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 126, 164, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 12px;
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 2000;
  box-shadow: 0 4px 16px rgba(10, 126, 164, 0.4);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #0A7EA4 0%, #1C1C1E 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #00D9FF;
  color: #1C1C1E;
  border: none;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 8px;
}

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #00D9FF;
  color: #1C1C1E;
  transform: translateX(8px);
  border-color: #FFFFFF;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.subheadline {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #1C1C1E 0%, #0A7EA4 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28, 28, 30, 0.4);
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
}

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

.btn-secondary:hover {
  background: #FFFFFF;
  color: #0A7EA4;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

.btn-link {
  background: transparent;
  color: #0A7EA4;
  border: 2px solid #0A7EA4;
  padding: 10px 24px;
  font-size: 16px;
}

.btn-link:hover {
  background: #0A7EA4;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Stats Section */
.stats {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(10, 126, 164, 0.15);
}

.stats-grid,
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat-card,
.metric-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 3px solid #00D9FF;
  transition: all 0.3s ease;
  position: relative;
}

.stat-card::before,
.metric-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover,
.metric-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 32px rgba(10, 126, 164, 0.3);
}

.stat-card:hover::before,
.metric-card:hover::before {
  opacity: 1;
}

.stat-card h3,
.metric-card h3 {
  font-size: 48px;
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-card p,
.metric-card p {
  font-size: 16px;
  color: #4A4A4A;
  margin: 0;
  font-weight: 600;
}

/* Services Section */
.services-overview,
.services-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.service-card {
  flex: 1;
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(10, 126, 164, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

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

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

.service-card:hover {
  border-color: #00D9FF;
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 16px 48px rgba(10, 126, 164, 0.25);
}

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

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #00D9FF;
  margin: 16px 0;
  font-family: 'Rajdhani', sans-serif;
}

/* Features Section */
.features {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #FFFFFF 0%, #f8f9fa 100%);
  border-radius: 24px;
}

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

.feature-item {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 16px;
  border-left: 5px solid #00D9FF;
  box-shadow: 0 4px 16px rgba(10, 126, 164, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(10, 126, 164, 0.2);
  border-left-width: 8px;
}

.feature-item h3 {
  font-size: 22px;
  color: #0A7EA4;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #0A7EA4 0%, #1C1C1E 100%);
  border-radius: 24px;
}

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

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

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 3px solid #00D9FF;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 72px;
  color: #00D9FF;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 217, 255, 0.4);
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #0A7EA4;
  margin: 0;
}

.testimonial-card .author strong {
  display: block;
  font-size: 18px;
  color: #1C1C1E;
  margin-bottom: 4px;
}

/* CTA Banner */
.cta-banner {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #00D9FF 0%, #0A7EA4 100%);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(10, 126, 164, 0.3);
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
}

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

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

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

.mission,
.vision {
  flex: 1;
  min-width: 300px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(10, 126, 164, 0.1);
  border-top: 5px solid #00D9FF;
  transition: all 0.3s ease;
}

.mission:hover,
.vision:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(10, 126, 164, 0.2);
}

/* Text Image Section */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1;
  min-width: 300px;
}

/* Card Layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.card {
  flex: 1;
  min-width: 280px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(10, 126, 164, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 12px 32px rgba(10, 126, 164, 0.2);
}

/* Category Cards */
.categories-grid,
.values-grid,
.benefits-grid,
.options-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card,
.value-card,
.benefit-item,
.option-card,
.info-block {
  flex: 1;
  min-width: 240px;
  background: linear-gradient(135deg, #FFFFFF 0%, #f8f9fa 100%);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(10, 126, 164, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.category-card:hover,
.value-card:hover,
.benefit-item:hover,
.option-card:hover,
.info-block:hover {
  border-color: #00D9FF;
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
}

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

/* Blog & Articles */
.article-featured {
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
  padding: 48px;
  border-radius: 24px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.article-featured::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.article-featured h2 {
  color: #FFFFFF;
  font-size: 36px;
}

.article-featured p {
  color: #FFFFFF;
}

.article-featured .badge {
  display: inline-block;
  background: #FFFFFF;
  color: #0A7EA4;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.article-featured .meta {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 16px;
}

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

.article-card {
  flex: 1;
  min-width: 300px;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(10, 126, 164, 0.1);
  border-left: 5px solid #00D9FF;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.article-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(10, 126, 164, 0.2);
}

.article-card h3 {
  color: #0A7EA4;
  margin-bottom: 12px;
}

.article-card .meta {
  font-size: 14px;
  color: #6B7280;
  margin-top: 12px;
}

/* Process & Steps */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step {
  flex: 1;
  min-width: 220px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(10, 126, 164, 0.1);
  text-align: center;
  border: 3px solid #00D9FF;
  transition: all 0.3s ease;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: scale(1.08) translateY(-8px);
  color: #FFFFFF;
}

.step:hover::before {
  opacity: 1;
}

.step:hover h3,
.step:hover p {
  color: #FFFFFF;
}

.step h3 {
  font-size: 24px;
  color: #0A7EA4;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(10, 126, 164, 0.2);
}

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

.faq-item p {
  color: #4A4A4A;
  margin: 0;
}

/* Newsletter */
.newsletter {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.newsletter-box {
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
  padding: 48px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(10, 126, 164, 0.3);
}

.newsletter-box h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter-box p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 24px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form p {
  margin-bottom: 20px;
}

/* Legal Content */
.legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.text-section {
  background: #FFFFFF;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(10, 126, 164, 0.1);
  border-left: 5px solid #00D9FF;
}

.text-section h2 {
  color: #0A7EA4;
  margin-bottom: 16px;
  font-size: 28px;
}

.text-section p {
  color: #4A4A4A;
  line-height: 1.8;
}

/* 404 Error Page */
.error-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0A7EA4 0%, #00D9FF 100%);
  margin-bottom: 60px;
  border-radius: 24px;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.page-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.page-card,
.resource-card {
  flex: 1;
  min-width: 260px;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(10, 126, 164, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.page-card:hover,
.resource-card:hover {
  border-color: #00D9FF;
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
}

.page-card h3 a,
.resource-card h3 {
  color: #0A7EA4;
  font-size: 22px;
}

.resource-card a {
  display: inline-block;
  margin-top: 16px;
  color: #0A7EA4;
  font-weight: 600;
  transition: all 0.3s ease;
}

.resource-card a:hover {
  color: #00D9FF;
  transform: translateX(4px);
}

/* Thank You Page */
.success-icon {
  width: 100px;
  height: 100px;
  background: #00D9FF;
  color: #FFFFFF;
  font-size: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.4);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); box-shadow: 0 12px 48px rgba(0, 217, 255, 0.6); }
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1C1C1E 0%, #0A7EA4 100%);
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 80px;
  border-top: 5px solid #00D9FF;
}

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

.footer-brand,
.footer-links,
.footer-contact,
.footer-legal {
  flex: 1;
  min-width: 220px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
}

footer h4 {
  color: #00D9FF;
  font-size: 20px;
  margin-bottom: 16px;
  font-family: 'Rajdhani', sans-serif;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 12px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

footer a:hover {
  color: #00D9FF;
  transform: translateX(4px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1C1C1E 0%, #0A7EA4 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.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid #00D9FF;
}

#cookie-consent.active {
  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;
  min-width: 300px;
}

.cookie-text h3 {
  color: #00D9FF;
  font-size: 20px;
  margin-bottom: 8px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
}

.cookie-accept {
  background: #00D9FF;
  color: #1C1C1E;
}

.cookie-accept:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #00D9FF;
  border: 2px solid #00D9FF;
}

.cookie-settings:hover {
  background: #00D9FF;
  color: #1C1C1E;
}

/* Cookie Settings Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  border: 3px solid #00D9FF;
}

.modal-content h2 {
  color: #0A7EA4;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #00D9FF;
}

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

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #00D9FF;
}

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

input:disabled + .toggle-slider {
  background-color: #0A7EA4;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

.modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
}

.modal-save {
  background: #00D9FF;
  color: #1C1C1E;
}

.modal-save:hover {
  background: #0A7EA4;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.modal-close {
  background: #f8f9fa;
  color: #1C1C1E;
  border: 2px solid #dee2e6;
}

.modal-close:hover {
  background: #dee2e6;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  .subheadline { font-size: 18px; }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  /* Sections */
  .section {
    padding: 32px 16px;
  }
  
  /* Grids */
  .stats-grid,
  .services-grid,
  .features-grid,
  .testimonial-grid,
  .categories-grid,
  .values-grid,
  .steps-grid,
  .articles-grid,
  .page-grid,
  .resources-grid,
  .content-grid {
    flex-direction: column;
  }
  
  .stat-card,
  .service-card,
  .feature-item,
  .testimonial-card,
  .category-card,
  .value-card,
  .step,
  .article-card,
  .page-card,
  .resource-card {
    min-width: 100%;
  }
  
  /* Text Image Section */
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-btn {
    width: 100%;
  }
  
  /* Error Page */
  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  .error-code { font-size: 60px; }
  
  .container {
    padding: 0 16px;
  }
  
  .service-card,
  .testimonial-card,
  .article-card {
    padding: 20px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal {
    display: none !important;
  }
  
  header {
    position: relative;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}