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

:root {
  --primary-blue: #0B42F5;
  --dark-blue: #1e40af;
  --light-blue: #3b82f6;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --white: #ffffff;
  --light-gray: #f9fafb;
}

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

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-blue);
  text-decoration: none;
}

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

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s;
}

nav a:hover {
  color: var(--primary-blue);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-blue);
}

/* 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: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

/* Section Styles */
section {
  padding: 5rem 0;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

.section-header {
  position: relative;
}

.section-icon {
  color: var(--primary-blue);
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



.section-header h2 {
  font-size: 3.125rem;
  color: #0B42F5;
  font-weight: 800;
  line-height: 110%;
}

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

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

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

.about-text p {
  color: #3A3A3A;
  font-size: 14px;
  font-weight: 400;
}

.about-text a {
  width: fit-content;
}

.about-image {
  position: relative;
  border-radius: 20px;
  /* overflow: hidden; */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: float2 6s ease-in-out infinite;
  width: fit-content;
}

@keyframes float2 {

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

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

.about-image img {
  /* width: 100%;
  height: 100%; */
  /* object-fit: cover; */
  flex-shrink: 0;
  display: block;
  transition: transform 0.5s;
}

@media(max-width:575px) {
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    transition: transform 0.5s;
  }
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Advantages Section */
.advantages {
  background: var(--primary-blue);
  color: var(--white);
}

.advantages .section-icon {
  color: var(--white);
  display: flex;
  justify-content: center;
}

.advantages .section-header h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
}

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

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

.advantage-card {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  color: var(--text-dark);
  transition: all 0.3s;
  animation: slideUp 0.6s ease;
  animation-fill-mode: both;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

.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;
}

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

.advantage-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

.advantage-card h3 {
  color: #3A3A3A;
  font-size: 22px;
  font-weight: 800;
}

.advantage-card p {
  color: #3A3A3A;
  font-size: 14px;
  font-weight: 400;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s;
  animation: scaleIn 0.6s ease;
  animation-fill-mode: both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

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

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

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

.gallery-item:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover:after {
  opacity: 1;
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  animation: fadeInLeft 0.6s ease;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
}

.faq-question:hover {
  background: var(--dark-blue);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  line-height: 1.7;
  opacity: 0.95;
}

/* Contact Section */
.contact {
  background: var(--primary-blue);
  color: var(--white);
}

.contact .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .section-icon {
  color: var(--white);
}

.contact .section-header h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-info {
  animation: fadeInLeft 0.8s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 793px;
  margin: 0 auto;
}

.contact-info p {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form {
  animation: fadeInRight 0.8s ease;
  max-width: 500px;
  width: 100%;
}



@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}

.form-group textarea {
  border-radius: 25px;
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-form {
  color: #fff;
  border-radius: 60px;
  border: 2px solid #FFF;
  background: #0B42F5;
  width: 100%;
  color: #FFF;
  font-family: Poppins;
  font-size: 15px;
  font-weight: 800;
  padding: 20px 0;
}

.btn-submit {
  width: 100%;
  background: var(--white);
  color: var(--primary-blue);
  padding: 1rem;
  border-radius: 50px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: var(--light-gray);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container {
  margin-top: 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Disclaimer Section */
.disclaimer {
}

.disclaimer-content {
  max-width: 1098px;
  /* margin: 0 auto; */
}

.disclaimer-icon {}

.disclaimer h2 {
  color: #0B42F5;
  font-size: 3.125rem;
  font-weight: 800;
  line-height: 110%;
  /* 55px */
  margin-bottom: 20px;
}

.privacy {
  margin-top: 96px;
  padding: 0;
}

.container {}

.privacy-title {
  margin: 0 0 20px;
  color: #0B42F5;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  line-height: 110%;
  /* 55px */
}

.privacy-text {
  color: #3A3A3A;
  font-size: 14px;
  font-weight: 400;
}

@media(max-width:768px) {
  .disclaimer h2 {
    font-size: 2rem;
  }
}

.disclaimer p b {
  font-size: 18px;
}

.disclaimer p {
  color: #3A3A3A;
  font-size: 14px;
  font-weight: 400;
}



/* Footer */
footer {
  background: #fff;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media(max-width:575px) {
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-menu a {
  color: #3A3A3A;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.footer-content p {
  color: rgba(58, 58, 58, 0.50);
  font-size: 14px;
  font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 67px;
    left: -100%;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
    gap: 1rem;
  }

  nav.active {
    left: 0;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

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

  header {
    padding: 1rem;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }
}

.center {
  margin: 0 auto 20px;
  width: fit-content;
}

.center .section-icon {
  text-align: center;
  display: flex;
  justify-content: center;
}

.center h2 {
  text-align: center;
}