

:root {
  --primary: #0A2540;
  --secondary: #BFA67A;
  --gold: #D4AF37;
  --light-gold: #F5EDD9;
  --dark: #0A1A2F;
  --light: #F9F9F9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}

.btn-primary {
  background-color: var(--secondary);
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid var(--secondary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--secondary);
}

.bg-primary {
  background: var(--primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gold);
  transform: translateX(-100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateX(0);
  opacity: 0.2;
}

.navbar {
  background-color: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(10px);
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
}

.hero {
  background: linear-gradient(to right, rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.7)), url('https://thb.tildacdn.com/tild3266-3566-4237-b263-393837356234/-/empty/sochi-centr.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
}

.card {
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card {
  border-radius: 8px;
  overflow: hidden;
  background: white;
  position: relative;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--secondary), var(--gold));
  z-index: 2;
  transition: height 0.4s ease;
}

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

.service-card {
  border-radius: 8px;
  background: white;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--secondary);
  color: white;
}

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: "";
position: absolute;
  top: 10px;
  left: 15px;
  font-size: 120px;
  color: rgba(191, 166, 122, 0.1);
  font-family: 'Playfair Display', serif;
  line-height: 0.7;
}

.input-field {
  width: 100%;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.input-field:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(191, 166, 122, 0.2);
  outline: none;
}

/* Animations */
.money-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--gold);
  border-radius: 50%;
  opacity: 0.8;
  animation: fall 3s infinite linear;
}

@keyframes fall {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 0.8;
  }

  100% {
    transform: translateY(350px) rotate(360deg);
    opacity: 0;
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.problem-solution-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.problem-icon,
.solution-icon {
  position: absolute;
  font-size: 24px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.problem-icon {
  color: #ff4d4d;
  animation: problemFloat 4s ease-in-out infinite;
}

.solution-icon {
  color: #4CAF50;
  animation: solutionFloat 4s ease-in-out infinite;
}

@keyframes problemFloat {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 0.7;
  }

  100% {
    transform: translateY(400px) rotate(180deg);
    opacity: 0;
  }
}

@keyframes solutionFloat {
  0% {
    transform: translateY(400px) rotate(0);
    opacity: 0;
  }

  100% {
    transform: translateY(0) rotate(-180deg);
    opacity: 0.7;
  }
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gradient-text {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chat-message {
  max-width: 80%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 15px;
  position: relative;
}

.client-message {
  background-color: #E4E6EB;
  align-self: flex-start;
  margin-right: auto;
  border-bottom-left-radius: 3px;
}

.client-message::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #E4E6EB;
  border-bottom-right-radius: 15px;
  z-index: -1;
}

.animate-cash {
  animation: cash-flow 3s ease-in-out infinite;
}

@keyframes cash-flow {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateY(30px) scale(0.8);
    opacity: 0.6;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.counter-box {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.counter-box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--secondary), var(--gold));
}

.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.counter-text {
  font-size: 18px;
  color: var(--dark);
  font-weight: 500;
}

.hotel-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hotel-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.hotel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-card:hover .hotel-overlay {
  opacity: 1;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(to right, rgba(191, 166, 122, 0.05), rgba(212, 175, 55, 0.05));
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  animation: blob-animation 15s infinite alternate;
}

@keyframes blob-animation {
  0% {
    transform: translate(0, 0) scale(1);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    transform: translate(50px, 50px) scale(1.1);
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    transform: translate(-50px, -30px) scale(0.9);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.cursor-glow {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(191, 166, 122, 0.3);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.1s ease;
  display: none;
}

@media (min-width: 1024px) {
  .cursor-glow {
    display: block;
  }
}

/* Problem animation */
.problem-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.money-drain {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coin-animated {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  z-index: 1;
}

.problem-icon-container {
  position: absolute;
  font-size: 30px;
  color: #ff4d4d;
  animation: stress-animation 2s infinite;
}

@keyframes stress-animation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Solution Animation */
.solution-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.solution-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-icon-container {
  position: absolute;
  font-size: 30px;
  color: #4CAF50;
  animation: solution-animation 2s infinite;
}

@keyframes solution-animation {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.2) rotate(180deg);
  }

  100% {
    transform: scale(1) rotate(360deg);
  }
}

.animated-gradient {
  background: linear-gradient(-45deg, var(--primary), var(--secondary), var(--gold), var(--dark));
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }

  .parallax-bg {
    background-attachment: scroll;
  }

  .problem-container,
  .solution-container {
    height: 200px;
  }
}
