/* Base styles and variables */
:root {
  /* Color palette */
  --deep-purple: #53165f;
  --dark-pink: #ba3c5e;
  --golden: #ffc940;
  --bg-gradient: linear-gradient(135deg, #53165f 0%, #ba3c5e 100%);
  --overlay-gradient: linear-gradient(135deg, rgba(83, 22, 95, 0.85) 0%, rgba(186, 60, 94, 0.85) 100%);
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.8);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-gradient);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--golden);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--golden);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-white);
  opacity: 1;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

/* Header and Navigation */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(83, 22, 95, 0.9) 0%, rgba(186, 60, 94, 0.9) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  position: relative;
  width: 80px;
  height: 80px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 201, 64, 0.7));
}

.logo-fallback {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(83, 22, 95, 0.3);
  border-radius: 50%;
}

.logo-fallback span {
  color: var(--golden);
  font-weight: bold;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 201, 64, 0.7);
}

.logo.small {
  width: 60px;
  height: 60px;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--golden);
  margin: 0;
}

.logo-tagline {
  font-size: 0.75rem;
  color: white;
  opacity: 0.9;
  line-height: 1.2;
  margin: 0;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: white;
  background: transparent;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--golden);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0);
  opacity: 0;
}

.nav-link:hover {
  color: var(--deep-purple);
  background-color: var(--golden);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 201, 64, 0.3);
}

.nav-link:hover::after {
  display: none;
}

.nav-link.active {
  color: var(--deep-purple);
  font-weight: 700;
  background-color: var(--golden);
  box-shadow: 0 4px 12px rgba(255, 201, 64, 0.3);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #d1d5db;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--golden);
}

.mobile-menu-btn svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(83, 22, 95, 0.95) 0%, rgba(186, 60, 94, 0.95) 100%);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.mobile-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 1rem 0;
}

.mobile-nav-link {
  padding: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #d1d5db;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--golden);
}

.mobile-nav-link.active {
  background: transparent !important;
  color: var(--golden) !important;
  border-left: 2px solid var(--golden);
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(83, 22, 95, 0.3) 0%, rgba(186, 60, 94, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.golden-text {
  color: var(--golden);
}

.hero-description {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.currency-ticker-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(83, 22, 95, 0.8) 0%, rgba(186, 60, 94, 0.8) 100%);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.ticker-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.ticker-label {
  padding: 0.25rem 1rem;
  background-color: rgba(83, 22, 95, 0.8);
  border-radius: 0.375rem;
  margin-right: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ticker-label span {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.ticker-divider {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.ticker-wrapper {
  overflow: hidden;
}

.currency-ticker {
  display: flex;
  animation: marquee 7.5s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.25rem;
  margin: 0 0.5rem;
  background: rgba(83, 22, 95, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.ticker-item:hover {
  background: rgba(83, 22, 95, 0.6);
  border-color: var(--golden);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.currency-flags {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}

.currency-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.currency-flag:first-child {
  margin-right: 0.25rem;
}

.currency-flag img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.currency-pair {
  display: flex;
  align-items: center;
}

.currency-base,
.currency-quote {
  color: var(--golden);
  font-weight: 700;
}

.currency-separator {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.currency-rate {
  display: flex;
  align-items: center;
  font-family: monospace;
  font-weight: 700;
  font-size: 0.875rem;
}

.currency-rate.up {
  color: #10b981;
}

.currency-rate.down {
  color: #ef4444;
}

.currency-rate svg {
  width: 12px;
  height: 12px;
  margin-left: 0.25rem;
}

/* Section Styles */
section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--golden), transparent);
}

/* Disclaimer Section */
.disclaimer-section {
  background: var(--overlay-gradient);
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}

.disclaimer-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--golden), transparent);
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

.disclaimer-content strong {
  color: var(--golden);
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 3rem 1rem;
  }

  .disclaimer-section .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 1.5rem auto 0;
}

.vision-section,
.platform-section,
.faq-section {
  background: linear-gradient(135deg, rgba(83, 22, 95, 0.9) 0%, rgba(186, 60, 94, 0.9) 100%);
}

/* About Section */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
  }
}

.about-image {
  width: 100%;
}

@media (min-width: 768px) {
  .about-image {
    width: 50%;
  }
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.image-container::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(to right, var(--golden), var(--dark-pink));
  border-radius: 0.75rem;
  z-index: -1;
  opacity: 0.25;
  filter: blur(4px);
}

.trading-canvas {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-text {
  width: 100%;
}

@media (min-width: 768px) {
  .about-text {
    width: 50%;
  }
}

.about-text p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(90deg, var(--golden) 0%, #fff3c4 50%, var(--golden) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1.5rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(83, 22, 95, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(255, 201, 64, 0.5);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
  padding: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--golden);
}

.feature-item span {
  font-size: 1.125rem;
  color: white;
}

/* Vision Section */
.vision-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .vision-content {
    flex-direction: row;
  }
}

.vision-card {
  width: 100%;
  background: rgba(83, 22, 95, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  transform: scale(1);
}

@media (min-width: 768px) {
  .vision-card {
    width: 50%;
  }
}

.vision-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.vision-image {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  height: 16rem;
}

.ai-image {
  width: 100%;
  height: 100%;
  background-color: rgba(83, 22, 95, 0.4);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.image-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.vision-card p {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Income Section */
.income-section {
  position: relative;
  overflow: hidden;
}

.income-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(83, 22, 95, 0.4) 0%, rgba(83, 22, 95, 0.8) 100%);
  z-index: -1;
}

.income-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .income-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.income-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 100%;
  transition: transform 0.5s ease;
}

.income-card:hover {
  transform: translateY(-10px);
}

.income-image {
  position: relative;
  width: 100%;
  height: 16rem;
}

.income-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  width: 100%;
}

.income-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  margin-right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
}

.income-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--golden);
}

.income-content h3 {
  margin-bottom: 0.75rem;
}

.income-content p {
  color: white;
  max-width: 32rem;
  margin-bottom: 1rem;
}

/* Platform Section */
.platform-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--golden), var(--dark-pink), var(--deep-purple));
  display: none;
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
  }
}

.timeline-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-marker {
  display: none;
}

@media (min-width: 768px) {
  .timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, var(--golden), var(--dark-pink));
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    animation: pulse-glow 3s ease-in-out infinite;
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px 0 rgba(255, 201, 64, 0.3);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(255, 201, 64, 0.5);
  }
  100% {
    box-shadow: 0 0 5px 0 rgba(255, 201, 64, 0.3);
  }
}

.timeline-marker span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--deep-purple);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .timeline-content {
    margin-left: 3rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.timeline-image {
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  background: rgba(83, 22, 95, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .timeline-image {
    width: 33.333%;
    margin-bottom: 0;
  }
}

.timeline-text {
  width: 100%;
}

@media (min-width: 768px) {
  .timeline-text {
    width: 66.667%;
  }
}

.timeline-text h3 {
  margin-bottom: 0.75rem;
}

.timeline-text p {
  font-size: 1.125rem;
  line-height: 1.7;
}

.highlight-text {
  font-size: 1.125rem;
  color: var(--golden);
  margin-bottom: 1.5rem;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(83, 22, 95, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.5s ease;
  transform: translateY(0);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
  animation: pulse-glow 3s ease-in-out infinite;
}

.feature-icon-large svg {
  width: 3rem;
  height: 3rem;
  color: var(--golden);
}

.feature-image {
  width: 100%;
  height: 12rem;
  overflow: hidden;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.feature-canvas {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.feature-card p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(83, 22, 95, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid transparent;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item:hover,
.faq-item.active {
  border-left: 3px solid var(--golden);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 80%;
    word-break: keep-all;
}

.faq-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.faq-item.active .faq-question span {
  background: linear-gradient(90deg, var(--golden) 0%, #fff3c4 50%, var(--golden) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: all 0.3s ease;
  color: #9ca3af;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--golden);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  line-height: 1.7;
}

.contact-form-container {
  max-width: 28rem;
  margin: 0 auto;
  background: rgba(83, 22, 95, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--golden);
  box-shadow: 0 0 0 2px rgba(255, 201, 64, 0.3);
}

.contact-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-email svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--golden);
  margin-right: 0.5rem;
}

.contact-email a {
  color: var(--golden);
  transition: all 0.3s ease;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-tagline {
  font-size: 0.875rem;
  color: white;
}

.golden-button {
  color: white; /* Ensure button text is white */
}

/* Disclaimer Section Styling */
.disclaimer-section {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient( rgba(83, 22, 95, 0.4) 0%, rgba(83, 22, 95, 0.8) 100%);
}

/* Removed glass-effect class styles */

.disclaimer-section ul li {
  position: relative;
  padding-left: 0.5rem;
}

.disclaimer-section ul li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(255, 201, 64, 0.5);
  border-radius: 50%;
}

/* Animation for the disclaimer section */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.disclaimer-section .fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Footer */
.footer-section {
  padding: 3rem 0 1rem;
  background: linear-gradient(135deg, rgba(83, 22, 95, 1) 0%, rgba(186, 60, 94, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 201, 64, 0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-logo {
    align-items: flex-start;
  }
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--golden);
  margin: 0;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-links {
    align-items: center;
  }

  .footer-contact {
    align-items: flex-end;
  }
}

.footer-heading {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--golden);
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--golden), transparent);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 3rem;
}

.footer-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  text-align: left;
}

.footer-link:hover {
  color: var(--golden);
  transform: translateX(5px);
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 0.5rem;
  border-radius: 0.25rem;
}

.footer-link svg {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
  color: rgba(255, 201, 64, 0.5);
  transition: all 0.3s ease;
}

.footer-link:hover svg {
  color: var(--golden);
  transform: translateX(3px);
}

.footer-email {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(83, 22, 95, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
}

.footer-email svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--golden);
  margin-right: 0.5rem;
}

.footer-email a {
  color: white;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-email a:hover {
  color: var(--golden);
}

.footer-copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Buttons */
.golden-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, var(--golden) 0%, #ffd700 50%, var(--golden) 100%);
  color: var(--deep-purple);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 201, 64, 0.3);
}

.golden-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: all 0.5s ease;
  z-index: -1;
}

.golden-button:hover::before {
  left: 100%;
}

.golden-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 201, 64, 0.4);
}

.golden-button svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.25rem;
}

.golden-button.large {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.golden-button.full-width {
  width: 100%;
  justify-content: center;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes textFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-5px) translateX(5px);
  }
  50% {
    transform: translateY(0px) translateX(10px);
  }
  75% {
    transform: translateY(5px) translateX(5px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes glow-float {
  0% {
    transform: translateY(0px) translateX(0px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5);
  }
  25% {
    transform: translateY(-5px) translateX(5px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.6);
  }
  50% {
    transform: translateY(0px) translateX(10px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.7);
  }
  75% {
    transform: translateY(5px) translateX(5px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.6);
  }
  100% {
    transform: translateY(0px) translateX(0px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5);
  }
}

.animate-float {
  animation: textFloat 6s ease-in-out infinite;
}

.animate-glow-float {
  animation: glow-float 8s ease-in-out infinite;
}

/* Responsive adjustments */
@media (prefers-reduced-motion: reduce) {
  .animate-float,
  .animate-pulse-glow,
  .animate-glow-float,
  .animate-marquee {
    animation: none;
  }
}

/* AOS Animation Overrides */
[data-aos] {
  pointer-events: auto; /* Allow pointer events for AOS elements */
}

.aos-animate {
  pointer-events: auto;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 400ms;
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 100ms;
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 150ms;
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 200ms;
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 300ms;
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 400ms;
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 500ms;
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 600ms;
}

/* Ensure AOS animations work well with prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    animation: none !important;
  }
}

