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

:root {
  --primary-blue: #001F54;
  --dark-blue: #000D2C;
  --bright-cyan: #00D9FF;
  --light-cyan: #00B8D9;
  --text-white: #FFFFFF;
  --text-gray: #B8C5D6;
}

body {
  font-family: 'Inter', sans-serif;
  background: #040739;
  color: var(--text-white);
  overflow-x: hidden;
}

/* Header */
header {
  border-bottom: 2px solid #0BDEFF;
  background: rgba(11, 222, 255, 0.20);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.logo span {
  font-weight: 700;
  font-size: 16px;
}

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

nav a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--bright-cyan);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url(../img/img-1.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  transform: translate(-50%, -50%);
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.1;
  }
}

.snowflake {
  position: absolute;
  color: var(--white);
  font-size: 3rem;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}

.snowflake:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.snowflake:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1111px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  /* max-width: 700px; */
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: #fff;
  color: var(--primary-blue);
  border: 2px solid #fff;
}

.btn-secondary:hover {


  transform: translateY(-3px);
}

/* .btn-primary {
  background: var(--bright-cyan);
  color: var(--dark-blue);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #00F0FF;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--bright-cyan);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--bright-cyan);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--bright-cyan);
  color: var(--dark-blue);
} */

/* Advantages Section */
.advantages {
  background: linear-gradient(90deg, rgba(21, 147, 243, 0.20) 0%, rgba(11, 222, 255, 0.20) 100%);
  padding: 60px 0;
  margin-top: 60px;
}

.advantages-content {
  display: flex;
  gap: 83px;
}

@media(max-width:991px) {
  .advantages-content {
    flex-direction: column;
    gap: 30px;
  }
}

.advantages-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.advantages h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.advantage-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s;
}


.advantage-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--bright-cyan);
}

.advantage-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* Gallery Section */
.gallery {
  padding: 60px 0;
}

.gallery h2 {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 860px;
  margin: 0 auto;
}

@media(max-width:767px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About Us Section */
.about {
  padding-bottom: 60px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media(max-width:991px) {
  .about-content {
    flex-direction: column;
  }
}

.about-item {
  max-width: 793px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-item a {
  margin: 0 !important;
  width: fit-content;
}

@media(max-width:575px) {
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


.about-content h2 {
  font-size: 48px;
  font-weight: 800;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
}

.about-content .btn-primary {
  margin-top: 20px;
}

/* FAQ Section */
.faq {
  background: linear-gradient(90deg, rgba(21, 147, 243, 0.20) 0%, rgba(11, 222, 255, 0.20) 100%);
  padding: 60px 0;
}

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

.faq h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-item {
  padding: 20px;
  border-radius: 20px;
  background: rgba(11, 222, 255, 0.20);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}



.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bright-cyan);
  padding-right: 30px;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

.faq-icon {
  position: absolute;
  top: 20px;
  right: 20px;

}

/* Contact Form Section */
.contact {
  max-width: 1230px;
  margin: 100px auto;
  padding: 0 15px;
  text-align: center;
}

.contact h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.contact-info {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-info strong {
  color: var(--bright-cyan);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 18px 25px;
  border-radius: 50px;
border-radius: 16px;
background: #F7F9FC;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bright-cyan);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-gray);
}

.contact-form button {
  padding: 18px;
  background: var(--bright-cyan);
  color: var(--dark-blue);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: #00F0FF;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

/* Disclaimer Section */
.disclaimer {
background: linear-gradient(90deg, rgba(21, 147, 243, 0.20) 0%, rgba(11, 222, 255, 0.20) 100%);
padding: 60px 0;

}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.disclaimer-icon {
  width: 50px;
  height: 50px;
  background: #FF3B30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.disclaimer h3 {
  font-size: 32px;
  font-weight: 800;
}

.disclaimer p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-gray);
}

/* Footer */
footer {
border-top: 2px solid #0BDEFF;
background: rgba(11, 222, 255, 0.20);
padding: 20px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 35px;
  height: 35px;
  border-radius: 5px;
}

.footer-logo span {
  font-weight: 700;
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--bright-cyan);
}

.footer-copyright {
color: rgba(250, 250, 250, 0.60);
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.privacy {
  margin: 20px 0 60px;
  padding: 0;
}
.container {
}
.privacy-title {
  color: #FAFAFA;
font-family: Inter;
font-size: clamp(32px,5vw,54px);
font-style: normal;
font-weight: 800;
line-height: normal;
margin-bottom: 30px;
}
.privacy-text {
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 0 20px;
  }

  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .advantages-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero,
  .advantages,
  .gallery,
  .about,
  .contact {
    /* padding: 0 20px; */
  }

  .advantages h2,
  .gallery h2,
  .about-content h2,
  .faq h2,
  .contact h2 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }


  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .advantages h2,
  .gallery h2,
  .about-content h2,
  .faq h2,
  .contact h2 {
    font-size: 26px;
  }

  .disclaimer {
    /* padding: 25px;
    margin: 40px 20px; */
  }

  .disclaimer h3 {
    font-size: 24px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.hero-image,
.advantage-card,
.gallery-item,
.about-content,
.about-image {
  animation: fadeInUp 0.8s ease-out;
}

.advantage-card:nth-child(1) {
  animation-delay: 0.1s;
}

.advantage-card:nth-child(2) {
  animation-delay: 0.2s;
}

.advantage-card:nth-child(3) {
  animation-delay: 0.3s;
}

.advantage-card:nth-child(4) {
  animation-delay: 0.4s;
}