
:root {
  --primary-color: #FFD700;
  --secondary-color: #B8860B;
  --accent-color: #FF00FF;
  --accent-color-2: #00FFFF;
  --background-color: #000033;
  --background-secondary: #1A1A4D;
  --background-light: #F0F0F0;
  --text-color: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-dark: #333333;
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
  --y2k-gradient-1: linear-gradient(45deg, #FF00FF 0%, #00FFFF 100%);
  --y2k-gradient-2: linear-gradient(90deg, #FFD700 0%, #FF00FF 50%, #00FFFF 100%);
  --pixel-border: 4px solid var(--primary-color);
  --border-radius: 8px;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  --glow: 0 0 10px rgba(255, 215, 0, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Figtree', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--glow);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 5px var(--accent-color-2);
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


header {
  background-color: var(--background-secondary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  border-bottom: 2px solid var(--primary-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
}

.logo img {
  height: 100%;
}


.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--y2k-gradient-1);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}


.y2k-border {
  border: var(--pixel-border);
  position: relative;
}

.y2k-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--y2k-gradient-2);
  z-index: -1;
  filter: blur(5px);
}

.pixelated {
  image-rendering: pixelated;
}

.glow-text {
  text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color-2);
}


.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/banner.jpg') center/cover no-repeat;
  filter: brightness(0.5);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  background: rgba(0, 0, 51, 0.7);
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-color);
  box-shadow: var(--glow);
  backdrop-filter: blur(5px);
  animation: borderPulse 3s infinite alternate;
}

@keyframes borderPulse {
  0% {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
  }
  50% {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
  }
  100% {
    border-color: var(--accent-color-2);
    box-shadow: 0 0 10px var(--accent-color-2);
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--gold-gradient);
  color: var(--text-dark);
  font-weight: 700;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--y2k-gradient-1);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--text-color);
  box-shadow: 0 0 15px var(--accent-color);
}


section {
  padding: 5rem 0;
  position: relative;
}

section:nth-child(odd) {
  background-color: var(--background-secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  display: inline-block;
  padding-bottom: 0.5rem;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 3px;
  background: var(--y2k-gradient-1);
}


.card {
  background-color: var(--background-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  border: 1px solid var(--secondary-color);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

.card-img {
  height: 200px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}


.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid var(--primary-color);
  box-shadow: var(--glow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}


.investment-options {
  margin-top: 3rem;
}

.option-card {
  background: rgba(26, 26, 77, 0.8);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.option-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  transform: rotate(45deg);
  opacity: 0.7;
}

.option-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--glow);
}

.option-card h3 {
  margin-bottom: 1rem;
}


.form-container {
  background: var(--background-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--secondary-color);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--secondary-color);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

.form-check-label {
  font-size: 0.9rem;
}


.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--secondary-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 1rem;
  background: var(--background-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(26, 26, 77, 0.5);
}

.faq-item.active .faq-answer {
  padding: 1rem;
  max-height: 1000px;
}


.case-studies {
  margin-top: 3rem;
}

.case-study {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--secondary-color);
}

.case-study:last-child {
  border-bottom: none;
}

.case-study-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.case-study-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.case-study-image img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-text {
  flex: 2;
}


.statistics {
  margin-top: 4rem;
}

.statistics-header {
  text-align: center;
  margin-bottom: 2rem;
}

.chart-container {
  background: rgba(26, 26, 77, 0.5);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--secondary-color);
  margin-bottom: 2rem;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--background-secondary);
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--border-radius);
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--glow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
}


.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-card {
  background: var(--background-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--y2k-gradient-1);
  transition: height 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.advantage-card:hover::before {
  height: 10px;
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}


.contact-info {
  margin-bottom: 3rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  background: var(--background-secondary);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--primary-color);
  box-shadow: var(--glow);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.map-container {
  height: 400px;
  margin-top: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid var(--primary-color);
}


footer {
  background-color: var(--background-secondary);
  padding: 3rem 0 1.5rem;
  border-top: 2px solid var(--primary-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.9rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background-secondary);
  padding: 1rem;
  z-index: 9999;
  display: none;
  border-top: 2px solid var(--primary-color);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-text {
  flex: 3;
}

.cookie-buttons {
  flex: 1;
  display: flex;
  gap: 0.5rem;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  display: none;
}

.cookie-settings-content {
  background: var(--background-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 2px solid var(--primary-color);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.cookie-settings-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}


.thanks-container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.thanks-message {
  max-width: 600px;
}

.thanks-message h1 {
  margin-bottom: 1.5rem;
}

.thanks-message p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.iti {
  width: 100%;
}


@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    height: 70vh;
  }
  
  .about-content,
  .case-study-content {
    flex-direction: column;
  }
  
  .about-image,
  .case-study-image {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--background-secondary);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 1rem 0;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .statistics-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero {
    height: auto;
    min-height: 60vh;
  }
}


@media (max-width: 768px) {
  
  .btn, 
  input[type="submit"],
  .nav-toggle {
    margin-bottom: 0.5rem;
  }
  
  
  .btn,
  input,
  select,
  textarea,
  .faq-question,
  nav ul li a,
  .footer-links a {
    min-height: 44px;
    padding: 12px;
  }
  
  
  .footer-content {
    padding-bottom: 4rem;
  }
  
  
  .fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
  }
  
  
  .form-group {
    margin-bottom: 2rem;
  }
  
  
  .card-content {
    padding: 1.5rem 1rem;
  }
  
  
  nav ul li {
    margin: 1.5rem 0;
  }
  
  
  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-secondary);
    padding: 0.8rem;
    justify-content: space-around;
    border-top: 1px solid var(--secondary-color);
    z-index: 100;
  }
  
  .mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
  }
  
  .mobile-nav i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
}