/* Base (Light Mode) Theme */
:root {
  --bs-primary: #32062e;
  --bs-primary-rgb: 50, 6, 46;

  --accent-color: #4a0a3f;
  --primary-color: #32062e;
  --secondary-color: #4a0a3f;

  --text-color: #333333;
  --background-color: #f8f9fa;
  --card-bg: #ffffff;
  --border-color: #ddd;

  --glass-bg: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 30px rgba(50, 6, 46, 0.1);
  --shadow-hover: 0 20px 40px rgba(50, 6, 46, 0.15);
}

/* Dark Mode Theme Overrides */
.dark-mode {
  --bs-primary: #e5d2e1;
  --bs-primary-rgb: 229, 210, 225;

  --accent-color: #f06292;
  --primary-color: #e5d2e1;
  --secondary-color: #f8bbd0;

  --text-color: #f1f1f1;
  --background-color: #121212;
  --card-bg: #1e1e1e;
  --border-color: #333;

  --glass-bg: rgba(255, 255, 255, 0.05);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.6);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Segoe UI', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.card {
  background-color: var(--card-bg);
  color: var(--text-color);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

/* Bootstrap Theme Overrides and Custom Variables */
:root {
  /* Bootstrap Overrides */
  --bs-primary: #32062e;
  --bs-primary-rgb: 50, 6, 46;

  /* Accent and Theming */
  --accent-color: #4a0a3f;
  --primary-color: #32062e;
  --secondary-color: #4a0a3f;

  /* Text and Background */
  --text-color: #333333;
  --light-bg: #f8f9fa;
  --white: #ffffff;

  /* Glassmorphism and Effects */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --shadow: 0 10px 30px rgba(50, 6, 46, 0.1);
  --shadow-hover: 0 20px 40px rgba(50, 6, 46, 0.15);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bs-font-sans-serif);
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  background: var(--white);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navbar */
header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(50, 6, 46, 0.3);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(50, 6, 46, 0.95);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand.logo {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.navbar-brand.logo:hover {
  transform: scale(1.05);
}

.nav-link {
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  background: var(--glass-bg);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #2d1b3d 100%);
  color: white;
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ffffff, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-buttons {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, var(--accent-color), #ff8e8e);
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.4);
}

/* Make secondary buttons clearly visible */
.btn-secondary {
  background-color: #32062e !important; /* Bootstrap default secondary */
  color: #fff !important;
  border: 1px solid #6c757d !important;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #7a3d75 !important;
  color: #fff !important;
  border-color: #495057 !important;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: floatAround 15s infinite linear;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; right: 10%; animation-delay: 5s; }
.floating-icon:nth-child(3) { top: 80%; left: 20%; animation-delay: 10s; }

/* Features Section */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
  font-weight: 800;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.features-grid .card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.features-grid .card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.features-grid .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.features-grid .card:hover::before {
  transform: scaleX(1);
}

/* Steps Section */
.steps .card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.steps .card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.steps .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.steps .card:hover::before {
  transform: scaleX(1);
}

/* Pricing Section */
.pricing-grid .card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-grid .card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.pricing-grid .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-grid .card:hover::before {
  transform: scaleX(1);
}

.pricing-grid .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

/* Market Section */
.market {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.market::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.1;
}

.market-grid .card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.market-grid .card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.market-stat {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid .card {
  background: var(--light-bg);
  border-left: 4px solid var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.testimonials-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(45deg, var(--accent-color), #ff8e8e);
  color: white;
  text-align: center;
}

.newsletter-form .form-control {
  padding: 1rem 1.5rem;
  border-radius: 25px;
  min-width: 300px;
  border: none;
  outline: none;
}

.newsletter-form .btn-primary {
  padding: 1rem 2rem;
  border-radius: 25px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--light-bg);
}

.accordion-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.accordion-button {
  background: var(--white);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background: var(--light-bg);
}

.accordion-body {
  background: var(--white);
  color: #666;
  line-height: 1.7;
}

/* About Section */
.about-content.card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-content.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.about-content.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-content.card:hover::before {
  transform: scaleX(1);
}

.about-content .card-body {
  padding: 2rem;
}

.about-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.about-content p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-content ul {
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.about-content ul li {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Partners Section */
.partners-content.card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.partners-content.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.partners-content.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.partners-content.card:hover::before {
  transform: scaleX(1);
}

.partners-content .card-body {
  padding: 2rem;
}

.partners-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.partners-content p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.partners-content ul {
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.partners-content ul li {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Support Section */
.support-content.card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.support-content.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.support-content.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.support-content.card:hover::before {
  transform: scaleX(1);
}

.support-content .card-body {
  padding: 2rem;
}

.support-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.support-content p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.support-form .form-label {
  color: var(--primary-color);
  font-weight: 500;
}

.support-form .form-control {
  border-radius: 10px;
  border: 1px solid rgba(50, 6, 46, 0.2);
  transition: border-color 0.3s ease;
}

.support-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 5px rgba(50, 6, 46, 0.3);
}

.support-form textarea.form-control {
  resize: vertical;
}

/* Contact Section */
.contact-content.card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-content.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.contact-content.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-content.card:hover::before {
  transform: scaleX(1);
}

.contact-content .card-body {
  padding: 2rem;
}

.contact-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.contact-content p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.contact-form .form-label {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid rgba(50, 6, 46, 0.2);
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 5px rgba(50, 6, 46, 0.3);
}

.contact-form textarea.form-control {
  resize: vertical;
}

/* Blog Posts Section */
.blog-posts .card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.blog-posts .card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.blog-posts .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.blog-posts .card:hover::before {
  transform: scaleX(1);
}

.blog-posts .post-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
}

.blog-posts .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.blog-posts .card-text {
  color: #666;
  line-height: 1.8;
}

/* Tips Section */
.tips-content .card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tips-content .card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.tips-content .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.tips-content .card:hover::before {
  transform: scaleX(1);
}

.tips-content .tip-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* Policy Section */
.policy-content.card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.policy-content.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.policy-content.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.policy-content.card:hover::before {
  transform: scaleX(1);
}

.policy-content .card-body {
  padding: 2rem;
}

.policy-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Terms Section */
.terms-content.card {
  background: var(--white);
  border: 1px solid rgba(50, 6, 46, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.terms-content.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.terms-content.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.terms-content.card:hover::before {
  transform: scaleX(1);
}

.terms-content .card-body {
  padding: 2rem;
}

.terms-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.terms-content p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes floatAround {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(90deg); }
  50% { transform: translate(0, -40px) rotate(180deg); }
  75% { transform: translate(-20px, -20px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Chatbot Widget */
.chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.chatbot-toggle {
  background: linear-gradient(45deg, var(--accent-color), #ff8e8e);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--white);
  transition: transform 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

.chatbot-window {
  display: none;
  width: 320px;
  max-height: 500px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideIn 0.3s ease-out;
}

.chatbot-window.open {
  display: flex;
}

.chatbot-header {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

.chatbot-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  background: var(--white);
  color: var(--text-color);
  font-size: 0.95rem;
}

.chatbot-message {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.chatbot-message.bot {
  align-items: flex-start;
}

.chatbot-message.user {
  align-items: flex-end;
}

.chatbot-message .message-content {
  max-width: 80%;
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  line-height: 1.5;
}

.chatbot-message.bot .message-content {
  background: var(--light-bg);
  border: 1px solid rgba(50, 6, 46, 0.1);
}

.chatbot-message.user .message-content {
  background: var(--accent-color);
  color: var(--white);
}

.chatbot-input {
  display: flex;
  padding: 0.5rem;
  background: var(--white);
  border-top: 1px solid rgba(50, 6, 46, 0.1);
}

.chatbot-input input {
  flex: 1;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 1rem;
  margin-right: 0.5rem;
  outline: none;
  font-size: 0.95rem;
}

.chatbot-input button {
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.chatbot-input button:hover {
  transform: scale(1.1);
}

.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--light-bg);
  border-bottom: 1px solid rgba(50, 6, 46, 0.1);
}

.chatbot-quick-action {
  background: var(--white);
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chatbot-quick-action:hover {
  background: var(--accent-color);
  color: var(--white);
}

/* Voice Input Button */
.chatbot-voice {
  background: var(--secondary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.chatbot-voice:hover {
  transform: scale(1.1);
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .newsletter-form .form-control {
    min-width: 280px;
    width: 100%;
    max-width: 400px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .feature-icon {
    font-size: 3rem;
  }

  .market-stat {
    font-size: 2.5rem;
  }

  .chatbot-container {
    bottom: 70px;
    right: 15px;
  }

  .chatbot-window {
    width: 280px;
    max-height: 400px;
  }

  .chatbot-input input {
    font-size: 0.9rem;
  }
}
/* Section Classes for Main Pages */
.how-it-works,
.pricing,
.about,
.blog,
.digital-privacy,
.safety-tips,
.partners,
.support,
.contact,
.privacy-policy,
.terms-of-use,
.refund-policy,
.features {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}

.how-it-works .section-title,
.pricing .section-title,
.about .section-title,
.blog .section-title,
.digital-privacy .section-title,
.safety-tips .section-title,
.partners .section-title,
.support .section-title,
.contact .section-title,
.privacy-policy .section-title,
.terms-of-use .section-title,
.refund-policy .section-title,
.features .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-weight: 800;
  position: relative;
}

.how-it-works .section-title::after,
.pricing .section-title::after,
.about .section-title::after,
.blog .section-title::after,
.digital-privacy .section-title::after,
.safety-tips .section-title::after,
.partners .section-title::after,
.support .section-title::after,
.contact .section-title::after,
.privacy-policy .section-title::after,
.terms-of-use .section-title::after,
.refund-policy .section-title::after,
.features .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}