:root {
  --primary: #f02d7a;
  --primary-dark: #d81b66;
  --secondary: #2f2544;
  --secondary-light: #3b2f56;
  --background: #f8f9fc;
  --surface: #ffffff;
  --text: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --border: rgba(240, 45, 122, 0.12);
  --shadow: 0 10px 30px rgba(47, 37, 68, 0.12);
  --shadow-lg: 0 20px 40px rgba(47, 37, 68, 0.18);
  --radius: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--background);
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(240, 45, 122, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(240, 45, 122, 0.14), transparent 22%),
    linear-gradient(135deg, #241b36 0%, #2f2544 55%, #3b2f56 100%);
  color: var(--white);
  overflow: hidden;
}

.navbar {
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: color .3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .3s ease;
}

.nav-menu a:hover {
  color: #ff8dbd;
}

.nav-menu a:hover::after {
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.logo-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.logo-text span {
  font-size: 0.9rem;
  opacity: 0.82;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  padding: 5rem 0 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(240, 45, 122, 0.18);
  border: 1px solid rgba(240, 45, 122, 0.32);
  color: #ffd2e5;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff4f95);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(240, 45, 122, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(240, 45, 122, 0.38);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(240, 45, 122, 0.12);
  filter: blur(6px);
}

.shape-1 {
  width: 320px;
  height: 320px;
  top: -110px;
  right: -90px;
}

.shape-2 {
  width: 220px;
  height: 220px;
  bottom: 12%;
  right: 8%;
}

.shape-3 {
  width: 140px;
  height: 140px;
  top: 38%;
  left: -40px;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: linear-gradient(180deg, #2f2544 0%, #241b36 100%);
  color: var(--white);
}

.section-header {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
}

.content-card,
.mission-box,
.service-card,
.value-item,
.partner-item,
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-card {
  padding: 2.5rem;
}

.content-card p + p {
  margin-top: 1.25rem;
}

.mission-box {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(240, 45, 122, 0.12), rgba(255, 255, 255, 0.06));
  border-color: rgba(240, 45, 122, 0.2);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  padding: 2rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(240, 45, 122, 0.16), rgba(240, 45, 122, 0.08));
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.service-card li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-light);
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
}

.destination-grid {
  display: grid;
  gap: 2rem;
}

.destination-content {
  max-width: 760px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.advantage-item {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.value-item {
  padding: 2rem;
}

.value-item h3 {
  color: var(--secondary);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.value-item p {
  color: var(--text-light);
}

.partners-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:24px;
    margin-top:50px;
}

.partner-card{
    height:140px;
    background:#fff;
    border-radius:22px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:25px;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.partner-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.partner-card img{
    max-width:100%;
    max-height:75px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.85;
    transition:.35s;
}

.partner-card:hover img{
    filter:none;
    opacity:1;
    transform:scale(1.06);
}

.cta-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.cta-box {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #fff4f8 100%);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--secondary);
}

.cta-box p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-light);
}

.footer {
  background: #1f182f;
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-item strong {
  color: var(--white);
}

.footer a {
  color: #ff7fb3;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 768px) {

    .nav-container {
  flex-direction: column;
  gap: 1.5rem;
}

.nav-menu {
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 4rem 0 5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 4.5rem 0;
  }

  .content-card,
  .mission-box,
  .cta-box {
    padding: 2rem;
  }

  .footer-content,
  .footer-info {
    flex-direction: column;
  }
}