.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga' 1;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.6s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(0, 135, 206, 0.18);
}

.glass-card-dark {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.6s ease;
}

.glass-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.4);
}

/* Hero */
.hero-section {
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0, 135, 206, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(0, 98, 66, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(0, 135, 206, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #eef7fd 0%, #f8f9ff 55%, #ffffff 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}

.hero-blob-1 {
  width: 420px;
  height: 420px;
  background: rgba(0, 135, 206, 0.25);
  top: -120px;
  right: -80px;
  animation: blobDrift 14s ease-in-out infinite;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 125, 85, 0.15);
  bottom: 10%;
  left: -60px;
  animation: blobDrift 18s ease-in-out infinite reverse;
}

.hero-blob-3 {
  width: 200px;
  height: 200px;
  background: rgba(0, 135, 206, 0.2);
  top: 40%;
  left: 35%;
  animation: blobDrift 11s ease-in-out infinite 2s;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

.hero-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(0, 135, 206, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-image-shadow {
  filter: drop-shadow(0 24px 48px rgba(0, 135, 206, 0.2));
}

.hero-stats {
  border-top: 1px solid rgba(0, 135, 206, 0.12);
  padding-top: 1.25rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-value {
  font-size: 1.375rem;
  font-weight: 800;
  color: #0087ce;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: #434655;
}

.hero-animate {
  opacity: 0;
  animation: heroFadeUp 0.75s ease forwards;
}

.hero-animate-delay-1 { animation-delay: 0.1s; }
.hero-animate-delay-2 { animation-delay: 0.2s; }
.hero-animate-delay-3 { animation-delay: 0.3s; }
.hero-animate-delay-4 { animation-delay: 0.45s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section labels */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0087ce;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.85);
}

/* Dark section */
.section-dark {
  background: linear-gradient(145deg, #0f172a 0%, #1a2744 50%, #0f172a 100%);
  color: #fff;
}

.section-dark-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.section-dark-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 135, 206, 0.15);
  top: -200px;
  left: -100px;
}

.section-dark-blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 125, 85, 0.1);
  bottom: -150px;
  right: -80px;
}

/* Buttons */
.btn-glow {
  box-shadow: 0 4px 20px rgba(0, 135, 206, 0.35);
}

.btn-glow:hover {
  box-shadow: 0 8px 28px rgba(0, 135, 206, 0.45);
  transform: translateY(-1px);
}

/* CTA banner */
.cta-banner-glow {
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.cta-banner {
  box-shadow: 0 24px 48px -12px rgba(0, 135, 206, 0.35);
}

/* Form accent */
.coop-form-card {
  position: relative;
  overflow: hidden;
}

.coop-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #0087ce, #006242, #0087ce);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-gradient {
  background: radial-gradient(circle at top left, #e6f4fc 0%, #f8f9ff 50%);
}

.landing-icon-wrap {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.landing-icon-wrap img {
  transition: filter 0.2s ease;
}

.group:hover .landing-icon-wrap img {
  filter: brightness(0) invert(1);
}

.landing-check-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  display: block;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.375rem;
  border-radius: 0.5rem;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.social-link:hover {
  background-color: rgba(0, 135, 206, 0.08);
}

.social-link img {
  width: 100%;
  height: 100%;
  max-width: 1.125rem;
  max-height: 1.125rem;
  object-fit: contain;
  display: block;
}

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

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

:host {
  display: block;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

#main-services,
#support-services,
#benefits,
#coform {
  scroll-margin-top: 5.5rem;
}

.nav-link.is-active {
  color: #0087ce !important;
  font-weight: 600;
  border-bottom-color: #0087ce !important;
}

#mobile-nav .nav-link.is-active {
  color: #0087ce !important;
  font-weight: 600;
  border-bottom: none;
}

.landing-scaffold {
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-scaffold *,
.landing-scaffold *::before,
.landing-scaffold *::after {
  box-sizing: border-box;
}

.landing-scaffold summary {
  list-style: none;
}

.landing-scaffold summary::-webkit-details-marker {
  display: none;
}

/* Partners carousel — seamless infinite loop */
.partners-track {
  display: flex;
  width: max-content;
  animation: partners-scroll 48s linear infinite;
  will-change: transform;
}

.partners-group {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-shrink: 0;
  padding-inline-end: 4rem;
}

.partner-logo {
  height: 3rem;
  width: auto;
  max-width: 10rem;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(30%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

@media (min-width: 768px) {
  .partner-logo {
    height: 3.5rem;
    max-width: 11rem;
  }
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.06);
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes partners-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.partners-mask {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

/* Benefits slider */
.benefits-slide {
  display: none;
}

.benefits-slide.is-active {
  display: block;
}

.benefits-dot.is-active {
  background-color: #0087ce !important;
}

.benefits-dot:not(.is-active) {
  background-color: #E2E8F0 !important;
}

/* Mobile nav */
.mobile-nav {
  display: none;
}

.mobile-nav.is-open {
  display: block;
}

/* Form states */
.coop-form-message {
  display: none;
}

.coop-form-message.is-visible {
  display: block;
}

.coop-form-message.is-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.coop-form-message.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Footer map */
.landing-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 12px;
}
