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

body {
  font-family: 'Inter', sans-serif;
  background-color: #fafcff;
  color: #131b2c;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #ff6b4a, #d946ef, #3b82f6, #fbbf24) 1;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

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

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
  mix-blend-mode: multiply;
}

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

.tagline-header {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #2d374b;
  background: #fef3c7;
  padding: 0.2rem 1rem;
  border-radius: 40px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: #1f2a44;
  transition: 0.2s;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-bottom-color: #d946ef;
  color: #d946ef;
}

.hero-slider {
  width: 100%;
  height: 85vh;
  min-height: 650px;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.4), rgba(59, 130, 246, 0.4), rgba(251, 191, 36, 0.3));
  mix-blend-mode: multiply;
}

.slide-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 2rem;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.slide-content h1 {
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff, #ffe5b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fef9c3;
}

.slide-content p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

.btn-gradient {
  background: linear-gradient(95deg, #ff6b4a, #d946ef, #3b82f6);
  border: none;
  color: white;
  font-weight: 700;
  padding: 1.1rem 3.5rem;
  border-radius: 60px;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 20px 30px -8px rgba(255, 107, 74, 0.5);
  transition: 0.2s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-gradient:hover {
  transform: scale(1.04);
  box-shadow: 0 25px 40px -6px #d946ef;
}

.card {
  background: white;
  border-radius: 40px;
  padding: 2.2rem;
  box-shadow: 0 25px 45px -20px rgba(59, 130, 246, 0.3);
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  height: fit-content;
}

.card:hover {
  box-shadow: 0 35px 55px -18px #ff6b4a;
  transform: translateY(-5px);
}

.badge-gradient {
  background: linear-gradient(145deg, #fef3c7, #ffe4f3);
  color: #b23b0e;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 1.2rem;
  border-left: 4px solid #ff6b4a;
}

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

.mini-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.mini-photo {
  background: #eef2f8;
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border: 3px solid white;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.2s;
}

.mini-photo:hover {
  transform: scale(1.02);
  border-color: #ff6b4a;
}

.org-full-card {
  background: white;
  border-radius: 40px;
  padding: 2.5rem;
  box-shadow: 0 25px 45px -20px rgba(59, 130, 246, 0.3);
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.section-divider {
  margin: 2.5rem 0 1.5rem;
  border-bottom: 2px dashed #fbc4a0;
}

h2.section-header {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #b23b0e;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.full-width {
  grid-column: span 2;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2d3a4f;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  border: 2px solid #eef3fa;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: #f9fcff;
  transition: 0.2s;
}

input[type="date"] {
  color-scheme: light;
  min-height: 3rem;
  font-family: 'Inter', sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #ff6b4a;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.15);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  margin: 0.5rem 0;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 400;
  background: #f2f6fd;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"],
.checkbox-group input[type="radio"] {
  width: auto;
  margin-right: 5px;
}

.btn-primary {
  background: linear-gradient(95deg, #ff6b4a, #d946ef, #3b82f6);
  background-size: 200% auto;
  border: none;
  color: white;
  font-weight: 700;
  padding: 1.2rem 3rem;
  border-radius: 60px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  max-width: 400px;
  margin: 2rem auto 1rem;
  display: block;
}

.btn-primary:hover {
  background-position: right center;
  transform: scale(1.02);
}

.form-feedback {
  padding: 1rem 1.25rem;
  border-radius: 24px;
  margin-bottom: 1.5rem;
}

.form-feedback.error {
  background: #fff1f2;
  color: #9f1239;
}

.form-feedback.success {
  background: #eff6ff;
  color: #1d4ed8;
}

.legal-acknowledgement {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-radius: 28px;
  background: #f5f7fc;
  border: 1px solid #e5eaf4;
}

.legal-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  color: #2d3a4f;
  font-weight: 500;
}

.legal-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: #d946ef;
}

.legal-checkbox .legal-checkbox__link,
.legal-checkbox .legal-checkbox__link:link,
.legal-checkbox .legal-checkbox__link:visited {
  color: #d946ef;
  font-weight: 700;
  text-decoration: underline;
}

.legal-checkbox .legal-checkbox__link:hover,
.legal-checkbox .legal-checkbox__link:focus-visible,
.legal-checkbox .legal-checkbox__link:active {
  color: #d946ef;
  text-decoration: underline;
  opacity: 0.85;
}

.site-footer {
  text-align: center;
  padding: 3rem 2rem 2rem;
  background: #131b2c;
  color: white;
  border-radius: 60px 60px 0 0;
  margin-top: 4rem;
}

.site-footer .site-footer__link,
.site-footer .site-footer__link:link,
.site-footer .site-footer__link:visited {
  color: white;
  text-decoration: underline;
}

.site-footer .site-footer__link:hover,
.site-footer .site-footer__link:focus-visible,
.site-footer .site-footer__link:active {
  color: white;
  text-decoration: underline;
  opacity: 0.85;
}

.footer-links {
  margin: 1rem 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.legal-page {
  padding-top: 3rem;
}

.legal-card {
  background: white;
  border-radius: 40px;
  padding: 2.5rem;
  box-shadow: 0 25px 45px -20px rgba(59, 130, 246, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.legal-card h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #131b2c;
}

.legal-content {
  display: grid;
  gap: 1rem;
  color: #334155;
}

.legal-content h2,
.legal-content h3 {
  margin-top: 1rem;
  color: #b23b0e;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
}

.gallery-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.popup-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 20px;
}

.popup-caption {
  color: white;
  margin-top: 1rem;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
}

.popup-prev,
.popup-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
}

.popup-prev {
  left: 20px;
}

.popup-next {
  right: 20px;
}

.thanks-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thanks-popup.show {
  display: flex;
  opacity: 1;
}

.thanks-card {
  background: white;
  max-width: 450px;
  width: 90%;
  padding: 2.5rem 2rem;
  border-radius: 60px;
  text-align: center;
  box-shadow: 0 40px 70px -15px rgba(255, 107, 74, 0.5);
  transform: scale(0.7);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  border: 3px solid transparent;
  background-clip: padding-box;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #ff6b4a, #d946ef, #3b82f6, #fbbf24) border-box;
}

@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

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

.thanks-icon {
  font-size: 5rem;
  background: linear-gradient(135deg, #ff6b4a, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  animation: bounce 0.6s infinite alternate;
}

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

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

.thanks-card h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff6b4a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thanks-card p {
  font-size: 1.2rem;
  color: #2d3a4f;
  margin-bottom: 1.5rem;
}

.thanks-btn {
  background: linear-gradient(95deg, #ff6b4a, #d946ef, #3b82f6);
  border: none;
  color: white;
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 60px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 10px 20px -5px #ff6b4a;
}

.thanks-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px -5px #d946ef;
}

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

  .full-width {
    grid-column: span 1;
  }

  .slide-content h1 {
    font-size: 3rem;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-img {
    width: 70px;
    height: 70px;
  }

  .btn-gradient {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .legal-card h1 {
    font-size: 2.2rem;
  }
}
