/* FinexaVision - Financial Audit Website Styles */
/* Neon-Futurism Design with CSS Animations */

:root {
  --primary-mint: #00FFC6;
  --accent-violet: #7F00FF;
  --background-dark: #1A1C1E;
  --text-white: #FFFFFF;
  --button-neon: #F8FF00;
  --shadow-glow: 0 0 20px rgba(0, 255, 198, 0.3);
  --shadow-violet: 0 0 30px rgba(127, 0, 255, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: var(--background-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 28, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-mint);
  z-index: 1000;
  padding: 1rem 0;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-mint);
  text-decoration: none;
  text-shadow: 0 0 10px var(--primary-mint);
  animation: glow 2s infinite alternate;
  display: flex;
  align-items: center;
}

@keyframes glow {
  from { text-shadow: 0 0 10px var(--primary-mint); }
  to { text-shadow: 0 0 20px var(--primary-mint), 0 0 30px var(--primary-mint); }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

nav a:hover,
nav a.active {
  color: var(--primary-mint);
  background: rgba(0, 255, 198, 0.1);
  box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background-dark) 0%, #2a2d31 50%, var(--background-dark) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./img/bh0fvR.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-mint), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
  from { filter: drop-shadow(0 0 10px var(--primary-mint)); }
  to { filter: drop-shadow(0 0 20px var(--accent-violet)); }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--button-neon), #FFD700);
  color: var(--background-dark);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(248, 255, 0, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 30px rgba(248, 255, 0, 0.7);
}

/* Section Styles */
.section {
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-mint);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-mint), var(--accent-violet));
  border-radius: 2px;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-mint), var(--accent-violet));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.card:hover {
  border-color: var(--primary-mint);
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.card:hover::before {
  opacity: 0.1;
}

.card h3 {
  color: var(--primary-mint);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.price {
  font-size: 2rem;
  color: var(--button-neon);
  font-weight: bold;
  margin: 1rem 0;
}

/* Form Styles */
.form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-mint);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-mint);
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(0, 255, 198, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-mint);
  box-shadow: var(--shadow-glow);
}

.form-group select option {
  background: var(--background-dark);
  color: var(--text-white);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  min-width: 1rem;
  min-height: 1rem;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-white) !important;
  font-weight: normal !important;
}

.checkbox-group a {
  color: var(--primary-mint);
  text-decoration: underline;
}

.submit-btn {
  background: linear-gradient(45deg, var(--accent-violet), var(--primary-mint));
  color: var(--text-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-violet);
}

/* FAQ Accordion */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 198, 0.3);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: bold;
  color: var(--primary-mint);
  transition: background 0.3s ease;
  position: relative;
  user-select: none;
}

.faq-question:hover {
  background: rgba(0, 255, 198, 0.1);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item:target .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faq-item:target .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: linear-gradient(to bottom, var(--primary-mint), var(--accent-violet));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background: var(--primary-mint);
  border: 4px solid var(--background-dark);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px var(--primary-mint);
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(even)::after {
  left: -16px;
}

.timeline-content {
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  border-radius: 15px;
  border: 2px solid var(--primary-mint);
  backdrop-filter: blur(10px);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #151719 0%, var(--background-dark) 100%);
  border-top: 2px solid var(--primary-mint);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--primary-mint);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section a {
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-mint);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 198, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 28, 30, 0.95);
  border-top: 2px solid var(--primary-mint);
  padding: 1rem;
  z-index: 1001;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  animation: slideUp 0.5s ease-out 1s forwards;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
}

.cookie-button {
  background: var(--primary-mint);
  color: var(--background-dark);
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-button:hover {
  background: var(--button-neon);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    position: static;
  }
  
  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero {
    padding-top: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 15px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .form-container {
    margin: 0 1rem;
    padding: 1.5rem;
  }
  
  .checkbox-group {
    align-items: flex-start;
  }
  
  .checkbox-group label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cards-grid {
    gap: 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .form-container {
    padding: 1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}

/* Animation Delays for Staggered Effect */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

/* Utility Classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* SVG Logo Styles */
.logo-svg {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  filter: drop-shadow(0 0 10px var(--primary-mint));
} 