@charset "UTF-8";
:root {
  --primary-color: #e91e8c;
  --primary-hover: #ff4db8;
  --bg-dark: #1a1a2e;
  --bg-dark-card: #252535;
  --text-on-dark: #ffffff;
  --text-muted-dark: #b0b0c0;
  --bg-light: #f8f9fa;
  --bg-light-card: #ffffff;
  --text-on-light: #1a1a2e;
  --text-muted-light: rgba(255, 255, 255, 0.7);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-primary: 0 10px 25px rgba(233, 30, 140, 0.35);
}

body {
  font-family: "YekanBakh", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  direction: rtl;
}

.navbar {
  position: fixed;
  inset-inline: 0;
  inset-block-start: 0;
  z-index: 9999;
  width: 100%;
  padding-block: 14px;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.navbar.scrolled .navbarContainer .contianerlogo .logoThumb img {
  filter: none;
}
.navbar.scrolled .navbarContainer .contianerLinks .linksList .listThumb {
  color: var(--text-on-light);
}
.navbar .navbarContainer {
  width: calc(100% - 64px);
  max-width: 1440px;
  margin-inline: auto;
  display: grid;
  align-items: center;
  gap: 16px;
  grid-template-columns: 172px 1fr 172px;
}
.navbar .navbarContainer .contianerlogo .logoThumb {
  display: flex;
  align-items: center;
}
.navbar .navbarContainer .contianerlogo .logoThumb img {
  height: 48px;
  filter: brightness(0) invert(1);
  transition: all 0.3s;
}
.navbar .navbarContainer .contianerlogo .logoThumb span {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
}
.navbar .navbarContainer .contianerLinks .linksList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.navbar .navbarContainer .contianerLinks .linksList .listThumb {
  position: relative;
  padding: 4px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.25s;
  cursor: pointer;
}
.navbar .navbarContainer .contianerLinks .linksList .listThumb::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  transform-origin: center right;
  transition: all 0.25s;
}
.navbar .navbarContainer .contianerLinks .linksList .listThumb:hover {
  color: var(--primary-color);
}
.navbar .navbarContainer .contianerLinks .linksList .listThumb:hover::after {
  width: 100%;
}
.navbar .navbarContainer .containerCTA {
  text-align: left;
}
.navbar .navbarContainer .containerCTA .ctaThumb {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: 9999px;
  background: var(--primary-color);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.navbar .navbarContainer .containerCTA .ctaThumb:hover {
  background: #c4166f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.3);
}

@media (max-width: 1000px) {
  .navbar .navbarContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar .navbarContainer .contianerLinks {
    display: none;
  }
}
@media (max-width: 648px) {
  .navbar {
    padding-block: 10px;
  }
  .navbar .navbarContainer {
    width: 100%;
    padding-inline: 24px;
  }
  .navbar .navbarContainer .contianerlogo img {
    height: 32px;
  }
  .navbar .navbarContainer .containerCTA .ctaThumb {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
}
.heroSection {
  position: relative;
  width: 100%;
  height: 100dvh;
  max-height: 760px;
  min-height: 600px;
  background-image: url("../images/hero_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.heroSection .sectionOverLay {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.88) 0%, rgba(26, 26, 46, 0.8) 40%, rgba(233, 30, 140, 0.25) 100%);
}
.heroSection .sectionContent {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.heroSection .sectionContent .contentTag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(233, 30, 140, 0.15);
  border: 1px solid rgba(233, 30, 140, 0.4);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease forwards;
}
.heroSection .sectionContent .contentTag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.heroSection .sectionContent .contentTitle {
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  font-weight: 900;
  color: var(--text-on-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 700px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.heroSection .sectionContent .contentTitle span {
  display: block;
  color: var(--primary-color);
}
.heroSection .sectionContent .contentDesc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted-light);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.heroSection .sectionContent .contentCTA {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.6s both;
}
.heroSection .sectionContent .contentCTA .ctaOption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 9999px;
  font-weight: 700;
  color: var(--text-on-dark);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.heroSection .sectionContent .contentCTA .ctaOption.primaryOption {
  background: var(--primary-color);
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.3);
}
.heroSection .sectionContent .contentCTA .ctaOption.primaryOption:hover {
  background: #c4166f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.3);
}
.heroSection .sectionContent .contentCTA .ctaOption.primaryOption:hover svg {
  transform: rotate(180deg) translateX(2px);
}
.heroSection .sectionContent .contentCTA .ctaOption.secondaryOption {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.heroSection .sectionContent .contentCTA .ctaOption.secondaryOption:hover {
  border-color: #e91e8c;
  background: rgba(233, 30, 140, 0.1);
}
.heroSection .sectionContent .contentCTA .ctaOption svg {
  transform: rotate(180deg);
  transition: all 0.35s;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.heroSection .sectionStats {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.heroSection .sectionStats .statsContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroSection .sectionStats .statsContainer .containerThumb {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 1.25rem 1rem;
}
.heroSection .sectionStats .statsContainer .containerThumb:not(:last-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.heroSection .sectionStats .statsContainer .containerThumb .thumnValue {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  direction: ltr;
  display: flex;
  justify-content: center;
  gap: 2px;
}
.heroSection .sectionStats .statsContainer .containerThumb .thumbTitle {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  margin-top: 0.25rem;
  display: block;
}

@media (max-width: 648px) {
  .heroSection {
    background-image: url("../images/hero_bg2.png");
  }
  .heroSection .sectionContent .contentDesc {
    padding-inline: 32px;
  }
  .heroSection .sectionContent .contentCTA .ctaOption {
    padding: 10px 26px;
    font-size: 0.9rem;
    font-weight: 650;
  }
}
.aboutSection {
  position: relative;
  width: 100%;
  background: var(--bg-light);
  padding-block: 5rem;
}
.aboutSection .sectionContainer {
  width: 90%;
  max-width: 1340px;
  margin-inline: auto;
}
.aboutSection .sectionContainer .containerContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 968px) {
  .aboutSection .sectionContainer .containerContent {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentTag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(233, 30, 140, 0.1);
  border: 1px solid rgba(233, 30, 140, 0.2);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentTitle {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--text-on-light);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentTitle span {
  color: var(--primary-color);
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentDesc {
  font-size: 1.05rem;
  color: rgba(26, 26, 46, 0.7);
  line-height: 1.9;
  margin-bottom: 2rem;
  display: block;
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentFeatures {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentFeatures .featureItem {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(233, 30, 140, 0.04);
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: 12px;
  transition: all 0.25s;
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentFeatures .featureItem:hover {
  background: rgba(233, 30, 140, 0.08);
  border-color: rgba(233, 30, 140, 0.25);
  transform: translateY(-2px);
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentFeatures .featureItem .featureIcon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(233, 30, 140, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentFeatures .featureItem .featureText {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentFeatures .featureItem .featureText strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-on-light);
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentFeatures .featureItem .featureText span {
  font-size: 0.78rem;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.5;
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentCTA {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 9999px;
  font-weight: 700;
  color: var(--text-on-dark);
  background: var(--primary-color);
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.25);
  transition: all 0.3s;
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentCTA svg {
  transform: rotate(180deg);
  transition: transform 0.35s;
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentCTA:hover {
  background: #c4166f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.35);
}
.aboutSection .sectionContainer .containerContent .contentWrapper .contentCTA:hover svg {
  transform: rotate(180deg) translateX(2px);
}
.aboutSection .sectionContainer .containerContent .contentStats .statsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 568px) {
  .aboutSection .sectionContainer .containerContent .contentStats .statsGrid {
    grid-template-columns: 1fr;
  }
}
.aboutSection .sectionContainer .containerContent .contentStats .statsGrid .statsThumb {
  background: var(--bg-light-card);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}
.aboutSection .sectionContainer .containerContent .contentStats .statsGrid .statsThumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
.aboutSection .sectionContainer .containerContent .contentStats .statsGrid .statsThumb .thumbIcon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 30, 140, 0.1);
  border-radius: 12px;
}
.aboutSection .sectionContainer .containerContent .contentStats .statsGrid .statsThumb .thumbIcon svg {
  color: var(--primary-color);
}
.aboutSection .sectionContainer .containerContent .contentStats .statsGrid .statsThumb .thumbValue {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 3px;
  direction: ltr;
}
.aboutSection .sectionContainer .containerContent .contentStats .statsGrid .statsThumb .thumbTitle {
  display: block;
  font-size: 0.9rem;
  color: rgba(26, 26, 46, 0.6);
}

@media (max-width: 648px) {
  .aboutSection .sectionContainer .containerContent .contentWrapper .contentFeatures {
    grid-template-columns: 100% !important;
  }
}
/* Sports Section - Bento Grid */
.sportsSection {
  background: radial-gradient(ellipse at 15% 50%, rgba(233, 30, 140, 0.18) 0%, transparent 50%), radial-gradient(ellipse at 85% 30%, rgba(123, 21, 128, 0.22) 0%, transparent 45%), linear-gradient(160deg, #1f1535 0%, #1a1a2e 45%, #1e1030 100%);
  padding-block: clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}
.sportsSection::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(233, 30, 140, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(233, 30, 140, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.sportsSection .container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1340px;
  margin-inline: auto;
}
.sportsSection .sectionHeader {
  text-align: center;
  margin-block-end: clamp(3rem, 6vw, 5rem);
}
.sportsSection .sectionHeader .sectionLabel {
  display: inline-block;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-block-end: 1rem;
}
.sportsSection .sectionHeader .sectionTitle {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: white;
  margin-block-end: 1rem;
  line-height: 1.2;
}
.sportsSection .sectionHeader .sectionDescription {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-inline: auto;
}
.sportsSection .bentoGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .sportsSection .bentoGrid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .sportsSection .bentoGrid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.sportsSection .bentoCard {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-dark-card);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  grid-column: span 4;
}
@media (max-width: 1024px) {
  .sportsSection .bentoCard {
    grid-column: span 3;
  }
}
@media (max-width: 600px) {
  .sportsSection .bentoCard {
    grid-column: span 1;
  }
}
.sportsSection .bentoCard.bentoCardLarge {
  grid-column: span 6;
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .sportsSection .bentoCard.bentoCardLarge {
    grid-column: span 6;
    grid-row: span 1;
  }
}
@media (max-width: 600px) {
  .sportsSection .bentoCard.bentoCardLarge {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.sportsSection .bentoCard.bentoCardLarge .cardImage {
  height: 100%;
}
@media (max-width: 1024px) {
  .sportsSection .bentoCard.bentoCardLarge .cardImage {
    min-height: 350px;
  }
}
@media (max-width: 600px) {
  .sportsSection .bentoCard.bentoCardLarge .cardImage {
    min-height: 300px;
  }
}
.sportsSection .bentoCard.bentoCardLarge .cardContent {
  padding: 2.5rem;
}
@media (max-width: 600px) {
  .sportsSection .bentoCard.bentoCardLarge .cardContent {
    padding: 1.5rem;
  }
}
.sportsSection .bentoCard.bentoCardLarge .cardIcon svg {
  width: 56px;
  height: 56px;
}
.sportsSection .bentoCard.bentoCardLarge .cardTitle {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.sportsSection .bentoCard.bentoCardLarge .cardDescription {
  font-size: clamp(1rem, 2vw, 1.125rem);
}
.sportsSection .bentoCard.bentoCardCta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #d11a7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  grid-column: span 4;
  min-height: 350px;
}
@media (max-width: 1024px) {
  .sportsSection .bentoCard.bentoCardCta {
    grid-column: span 6;
    min-height: 300px;
  }
}
@media (max-width: 600px) {
  .sportsSection .bentoCard.bentoCardCta {
    grid-column: span 1;
    min-height: 280px;
    padding: 2rem;
  }
}
.sportsSection .bentoCard.bentoCardCta:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(233, 30, 140, 0.4);
}
.sportsSection .bentoCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.sportsSection .bentoCard:hover .cardImage img {
  transform: scale(1.1);
}
.sportsSection .bentoCard:hover .cardButton {
  opacity: 1;
  transform: translateY(0);
}
.sportsSection .bentoCard:hover .cardOverlay {
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(26, 26, 46, 0.3) 100%);
}
.sportsSection .bentoCard .cardImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sportsSection .bentoCard .cardImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.sportsSection .bentoCard .cardImage .cardOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(26, 26, 46, 0.2) 100%);
  transition: background 0.4s ease;
}
.sportsSection .bentoCard .cardContent {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .sportsSection .bentoCard .cardContent {
    padding: 1.5rem;
  }
}
.sportsSection .bentoCard .cardContent .cardIcon {
  margin-block-end: 1rem;
}
.sportsSection .bentoCard .cardContent .cardIcon svg {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  filter: drop-shadow(0 4px 12px rgba(233, 30, 140, 0.3));
  transition: transform 0.3s ease;
}
.sportsSection .bentoCard .cardContent .cardTitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: white;
  margin-block-end: 0.75rem;
  line-height: 1.2;
}
.sportsSection .bentoCard .cardContent .cardDescription {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-block-end: 1rem;
}
.sportsSection .bentoCard .cardContent .cardMeta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sportsSection .bentoCard .cardContent .cardMeta .metaItem {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.sportsSection .bentoCard .cardContent .cardMeta .metaItem svg {
  color: var(--primary-color);
}
.sportsSection .bentoCard .cardButton {
  position: absolute;
  inset-block-end: 2rem;
  inset-inline-start: 2rem;
  inset-inline-end: 2rem;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--text-on-light);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .sportsSection .bentoCard .cardButton {
    inset-block-end: 1.5rem;
    inset-inline-start: 1.5rem;
    inset-inline-end: 1.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}
.sportsSection .bentoCard .cardButton svg {
  transition: transform 0.3s ease;
}
.sportsSection .bentoCard .cardButton:hover {
  background: var(--primary-color);
  color: white;
}
.sportsSection .bentoCard .cardButton:hover svg {
  transform: translateX(-4px);
}
.sportsSection .bentoCard .ctaContent {
  text-align: center;
  color: white;
}
.sportsSection .bentoCard .ctaContent .ctaIcon {
  margin-block-end: 1.5rem;
}
.sportsSection .bentoCard .ctaContent .ctaIcon svg {
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}
.sportsSection .bentoCard .ctaContent .ctaTitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-block-end: 1rem;
  line-height: 1.3;
}
.sportsSection .bentoCard .ctaContent .ctaDescription {
  font-size: clamp(1rem, 2vw, 1.125rem);
  opacity: 0.95;
  margin-block-end: 2rem;
  line-height: 1.6;
}
.sportsSection .bentoCard .ctaContent .ctaButton {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.125rem 2.5rem;
  background: white;
  color: var(--primary-color);
  font-size: 1.0625rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.sportsSection .bentoCard .ctaContent .ctaButton svg {
  transition: transform 0.3s ease;
}
.sportsSection .bentoCard .ctaContent .ctaButton:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.sportsSection .bentoCard .ctaContent .ctaButton:hover svg {
  transform: translateX(-4px);
}

/* ===== BRANCHES SECTION - LIGHT THEME ===== */
.branchesSection {
  background: #f8f7fc;
  padding: 100px 0;
  overflow: hidden;
  direction: rtl;
}

.branchesContainer {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.branchesSectionHeader {
  text-align: center;
}

.branchesSectionHeader.coachesHeader {
  margin-bottom: 56px;
}

.branchesBadge {
  display: inline-block;
  background: rgba(233, 30, 140, 0.1);
  color: #e91e8c;
  border: 1px solid rgba(233, 30, 140, 0.25);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 16px;
}

.branchesSectionTitle {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.branchesSectionTitle span {
  color: #e91e8c;
}

.branchesSectionSubtitle {
  color: #888;
  font-size: 16px;
}

/* ── Swiper Overrides ── */
.branchesSwiper {
  padding-block: 56px !important;
}

/* Slide */
.branchSlideInner {
  position: relative;
  width: 94%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  margin-inline: auto;
}

/* Background */
.branchBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1e1a2e;
  transition: transform 0.8s ease;
}

.swiper-slide-active .branchBg {
  transform: scale(1.03);
}

/* Overlay - برای تم لایت overlay روشن‌تره ولی محتوا خونا میمونه */
.branchOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 8, 20, 0.92) 0%, rgba(10, 8, 20, 0.75) 55%, rgba(233, 30, 140, 0.25) 100%);
}

/* Content */
.branchContent {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 48px 56px;
  gap: 56px;
}

/* Left Column */
.branchContentLeft {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.branchNumber {
  font-size: 80px;
  font-weight: 900;
  color: rgba(233, 30, 140, 0.18);
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

.branchDivider {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, #e91e8c, transparent);
}

.branchMeta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.branchMetaItem {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  white-space: nowrap;
}

/* Right Column */
.branchContentRight {
  flex: 1;
}

.branchTag {
  display: inline-block;
  background: rgba(233, 30, 140, 0.2);
  color: #ff6eb4;
  border: 1px solid rgba(233, 30, 140, 0.35);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 14px;
}

.branchName {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.branchAddress {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 28px;
}

/* Stats */
.branchStats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}

.branchStat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.branchStat strong {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.branchStat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.branchStatDivider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
}

/* Features */
.branchFeatures {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.branchFeature {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}

.branchFeature:hover {
  background: rgba(233, 30, 140, 0.2);
  border-color: rgba(233, 30, 140, 0.4);
}

/* Actions */
.branchActions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.branchBtnPrimary {
  background: #e91e8c;
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(233, 30, 140, 0.35);
}

.branchBtnPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(233, 30, 140, 0.45);
}

.branchBtnSecondary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.branchBtnSecondary:hover {
  opacity: 1;
}

.branchFooter {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.branchPhone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

.branchSeparator {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.branchStatusBadge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.branchStatusDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@media (max-width: 768px) {
  .branchSlideInner {
    height: auto;
    min-height: 480px;
  }
  .branchContent {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 24px;
  }
  .branchContentLeft {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  .branchNumber {
    font-size: 52px;
  }
  .branchDivider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #e91e8c, transparent);
  }
  .branchMeta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .branchName {
    font-size: 36px;
  }
  .branchAddress {
    margin-bottom: 20px;
  }
  .branchStats {
    gap: 18px;
    margin-bottom: 18px;
  }
  .branchStat strong {
    font-size: 24px;
  }
  .branchFeatures {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .branchSlideInner {
    width: 100%;
    border-radius: 16px;
    min-height: auto;
  }
  .branchContent {
    padding: 24px 20px;
    gap: 16px;
  }
  .branchContentLeft {
    gap: 14px;
  }
  .branchNumber {
    font-size: 40px;
  }
  .branchDivider {
    width: 50px;
  }
  .branchMetaItem {
    font-size: 12px;
  }
  .branchName {
    font-size: 28px;
  }
  .branchStats {
    gap: 12px;
  }
  .branchStat strong {
    font-size: 20px;
  }
  .branchStat span {
    font-size: 11px;
  }
  .branchStatDivider {
    height: 32px;
  }
  .branchFeatures {
    min-height: 70px;
  }
  .branchFeature {
    font-size: 12px;
    padding: 5px 12px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .branchFooter {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
  }
  .branchPhone {
    font-size: 13px;
  }
  .branchesSectionTitle,
  .sportsSection .sectionHeader .sectionTitle {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .branchesSectionSubtitle,
  .sportsSection .sectionHeader .sectionDescription {
    font-size: 14px;
  }
}
/* Pagination */
.branchesPagination {
  bottom: 10px !important;
}

.branchesPagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.branchesPagination .swiper-pagination-bullet-active {
  background: #e91e8c;
  transform: scale(1.3);
}

.branchesContainer .containerMain {
  position: relative;
}

.swiperButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
}
.swiperButton.branchesArrowPrev {
  left: auto;
  right: -54px;
}
.swiperButton.branchesArrowNext {
  left: -54px;
  right: auto;
}

/* Arrows */
.branchesArrowPrev,
.branchesArrowNext {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
}
.branchesArrowPrev svg,
.branchesArrowNext svg {
  width: 26px;
  height: 26px;
}

.branchesArrowPrev::after,
.branchesArrowNext::after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: transparent !important;
}

/* ===== COACHES SECTION ===== */
.coaches-section {
  background: #f5f5f8;
  padding: 90px 0 100px;
  direction: rtl;
  font-family: "YekanBakh", sans-serif;
  overflow: hidden;
}

.coaches-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Header ---- */
.coaches-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.coaches-badge {
  display: inline-block;
  background: rgba(233, 30, 140, 0.08);
  color: #e91e8c;
  border: 1px solid rgba(233, 30, 140, 0.2);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.coaches-title {
  font-family: "YekanBakh", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #1a0a2e;
  margin: 0;
  line-height: 1.4;
}

.coaches-title span {
  color: #e91e8c;
}

.coachesSwiper {
  overflow: visible !important;
}

/* ---- Card ---- */
.coach-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #ddd;
}

.coach-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Overlay (پنهان در حالت عادی) ---- */
.coach-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 10, 46, 0.82) 0%, rgba(26, 10, 46, 0.3) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
}

/* ---- Info (پایین کارت) ---- */
.coach-info {
  padding: 24px 20px;
  transform: translateY(14px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coach-info h3 {
  font-family: "YekanBakh", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 5px;
  line-height: 1.3;
}

.coach-info p {
  font-family: "YekanBakh", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #e91e8c;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ---- Hover ---- */
.coach-card:hover img {
  transform: scale(1.05);
}

.coach-card:hover .coach-overlay {
  opacity: 1;
}

.coach-card:hover .coach-info {
  transform: translateY(0);
}

/* سایه زیر کارت در hover */
.swiper-slide .coach-card {
  box-shadow: 0 4px 20px rgba(26, 10, 46, 0.08);
  transition: box-shadow 0.4s ease;
}

.swiper-slide .coach-card:hover {
  box-shadow: 0 20px 50px rgba(233, 30, 140, 0.2);
}

/* ---- Navigation ---- */
.coaches-nav {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 32px;
}

.coaches-prev,
.coaches-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 10, 46, 0.15);
  background: #ffffff;
  color: #1a0a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}

.coaches-prev:hover,
.coaches-next:hover {
  background: #e91e8c;
  border-color: #e91e8c;
  color: #ffffff;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .coaches-container {
    padding: 0 20px;
  }
  .coaches-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .coaches-title {
    font-size: 24px;
  }
}
/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--bg-light);
  padding: 90px 0 100px;
  direction: rtl;
  font-family: "YekanBakh", sans-serif;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Header ---- */
.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.testimonials-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials-badge {
  display: inline-block;
  background: rgba(233, 30, 140, 0.08);
  color: var(--primary-color);
  border: 1px solid rgba(233, 30, 140, 0.2);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}

.testimonials-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--text-on-light);
  margin: 0;
}

.testimonials-title span {
  color: var(--primary-color);
}

/* دکمه ثبت نظر */
.btn-add-review {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 100px;
  font-family: "YekanBakh", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-primary);
}

.btn-add-review:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.testimonialsMain .testimonialsSwiper {
  overflow: visible !important;
}
.testimonialsMain .mainOptions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ---- Review Card ---- */
.review-card {
  background: var(--bg-light-card);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1.5px solid rgba(233, 30, 140, 0.1);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  box-shadow: 0 16px 48px rgba(233, 30, 140, 0.12);
  transform: translateY(-4px);
}

/* ---- Card Top ---- */
.review-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* آواتار دایره‌ای */
.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e8c, #9c27b0);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(233, 30, 140, 0.35);
}

.reviewer-avatar.avatar-2 {
  background: linear-gradient(135deg, #e91e8c, #ff6b6b);
}

.reviewer-avatar.avatar-3 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.reviewer-avatar.avatar-4 {
  background: linear-gradient(135deg, #f093fb, #e91e8c);
}

.reviewer-avatar.avatar-5 {
  background: linear-gradient(135deg, #4facfe, #764ba2);
}

/* اطلاعات reviewer */
.reviewer-meta {
  flex: 1;
}

.reviewer-meta h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-on-light);
  margin: 0 0 3px;
}

.reviewer-meta span {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* ستاره‌ها */
.review-stars {
  color: var(--primary-color);
  font-size: 15px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

/* متن نظر */
.review-text {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
  margin: 0;
  flex: 1;
}

/* تاریخ */
.review-date {
  font-size: 12px;
  color: #bbb;
  font-weight: 500;
  margin-top: auto;
}

/* ---- Navigation ---- */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.testimonials-prev,
.testimonials-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 26, 46, 0.15);
  background: #fff;
  color: var(--text-on-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
  flex-shrink: 0;
}

.testimonials-prev:hover,
.testimonials-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* Pagination dots */
.testimonials-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 100px;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--primary-color);
}

/* ===== REVIEW MODAL ===== */
.review-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.review-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.review-modal {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 24px 80px rgba(26, 26, 46, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  direction: rtl;
  font-family: "YekanBakh", sans-serif;
}

.review-modal-overlay.active .review-modal {
  transform: translateY(0) scale(1);
}

/* close button */
.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #eee;
  background: #f8f9fa;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* modal header */
.modal-header {
  margin-bottom: 28px;
}

.modal-header h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-on-light);
  margin: 0 0 6px;
}

.modal-header p {
  font-size: 13px;
  color: #999;
  margin: 0;
}

/* form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal-form .form-group input,
.modal-form .form-group textarea {
  padding: 12px 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-on-light);
}

.form-group input,
.form-group textarea {
  font-family: "YekanBakh", sans-serif;
  font-size: 14px;
  color: var(--text-on-light);
  background: #f8f9fa;
  border: 1.5px solid #eee;
  border-radius: 12px;
  padding: 12px 42px 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  text-align: right;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  text-align: right;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  background: #fff;
}

/* Star Rating Interactive */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  justify-content: flex-end;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 28px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s ease;
  padding: 0 2px;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--primary-color);
}

/* submit */
.modal-submit {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-family: "YekanBakh", sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-primary);
  margin-top: 4px;
}

.modal-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .testimonials-container {
    padding: 0 20px;
  }
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonials-header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .testimonials-title {
    font-size: 24px;
  }
  .review-modal {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-section {
  padding-bottom: 100px;
  background: #f8f9fa;
  direction: rtl;
}
.contact-section .container {
  width: 90%;
  max-width: 1280px;
  margin-inline: auto;
}

.contact-wrapper {
  display: flex;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26, 10, 46, 0.1), 0 8px 24px rgba(233, 30, 140, 0.06);
  min-height: 640px;
}

.contact-info {
  position: relative;
  width: 42%;
  padding: 64px 48px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a0a2e 0%, #3d0f5e 30%, #7b1580 58%, #c0176e 80%, #e91e8c 100%);
  color: #fff;
}
.contact-info__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-info .deco-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
}
.contact-info .deco-circle--1 {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -60px;
  background: rgba(233, 30, 140, 0.35);
}
.contact-info .deco-circle--2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -40px;
  background: rgba(186, 46, 194, 0.3);
}
.contact-info .deco-circle--3 {
  width: 130px;
  height: 130px;
  bottom: 100px;
  right: 30px;
  background: rgba(255, 100, 200, 0.2);
}
.contact-info__content {
  position: relative;
  z-index: 1;
}
.contact-info__badge {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  letter-spacing: 0.03em;
}
.contact-info__title {
  margin: 28px 0 14px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.55;
  color: #fff;
}
.contact-info__title-accent {
  font-style: normal;
  color: #ffd6f0;
}
.contact-info__desc {
  font-size: 14.5px;
  line-height: 1.8;
  opacity: 0.88;
  margin-bottom: 40px;
  max-width: 280px;
}
.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.contact-info__icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
.contact-info__icon:hover {
  background: rgba(255, 255, 255, 0.22);
}
.contact-info__item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-info__item-label {
  font-size: 12px;
  opacity: 0.72;
  font-weight: 400;
}
.contact-info__item-value {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-side {
  width: 58%;
  padding: 64px 56px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-side__title {
  font-size: 24px;
  font-weight: 700;
  color: #1a0a2e;
  margin: 0 0 8px;
}
.contact-form-side__desc {
  font-size: 14px;
  color: #888;
  margin: 0 0 36px;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
}
.form-group--full {
  width: 100%;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #3d3554;
  margin-bottom: 8px;
}

.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.form-input-wrap--textarea {
  align-items: flex-start;
}
.form-input-wrap--select::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: #999;
  pointer-events: none;
}

.form-input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: #bbb;
  pointer-events: none;
  transition: stroke 0.2s;
}
.form-input-icon--textarea {
  top: 14px;
  transform: none;
}

.form-input {
  width: 100%;
  padding: 13px 44px 13px 16px;
  border: 1.5px solid #e8e4f0;
  border-radius: 14px;
  background: #fafafa;
  font-size: 14px;
  color: #1a0a2e;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  font-family: inherit;
}
.form-input::-moz-placeholder {
  color: #bbb;
  font-size: 13px;
}
.form-input::placeholder {
  color: #bbb;
  font-size: 13px;
}
.form-input:focus {
  border-color: #e91e8c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.08);
}
.form-input:focus ~ .form-input-icon {
  stroke: #e91e8c;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding-left: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 13px;
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, #e91e8c 0%, #ba0e6b 100%);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.3);
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s;
}
.contact-submit__icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.contact-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(233, 30, 140, 0.4);
}
.contact-submit:active {
  transform: translateY(0);
}
.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.contact-submit--loading .contact-submit__text::after {
  content: "...";
}
.contact-submit--success {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3) !important;
}

@media (max-width: 1024px) {
  .contact-info {
    padding: 48px 36px;
  }
  .contact-form-side {
    padding: 48px 40px;
  }
}
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    border-radius: 20px;
  }
  .contact-info,
  .contact-form-side {
    width: 100%;
  }
  .contact-info {
    padding: 48px 28px;
  }
  .contact-info__title {
    font-size: 28px;
  }
  .contact-form-side {
    padding: 40px 24px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .form-row .form-group {
    margin-bottom: 18px;
  }
  .form-row .form-group .form-label {
    margin-bottom: 0;
    padding-inline: 12px;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 60px 0;
  }
}
.site-footer {
  width: 100%;
  direction: rtl;
  font-family: "YekanBakh", sans-serif;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(175deg, #1a0a2e 0%, #2d1154 35%, #6b0f6e 68%, rgb(193.1174089069, 18.8825910931, 113.2955465587) 100%);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.site-footer::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.12) 0%, transparent 65%);
  top: -100px;
  left: -100px;
  pointer-events: none;
  z-index: 0;
}
.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-wave {
  line-height: 0;
}
.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
  transform: rotate(180deg);
}

.footer-body {
  padding: 64px 0 92px;
}

@media (max-width: 648px) {
  .site-footer .footer-body {
    padding-top: 24px;
  }
  .site-footer .footer-body .container {
    width: 100%;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 40px 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.footer-col-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col-title .title-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e91e8c;
  border-radius: 50%;
  box-shadow: 0 0 10px #e91e8c;
  flex-shrink: 0;
}

.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-brand .footer-logo img {
  height: 58px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(1.1);
}
.footer-brand .brand-desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px;
  max-width: 280px;
  text-align: justify;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(6px);
}
.social-link:hover {
  background: #e91e8c;
  border-color: #e91e8c;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.35);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1), gap 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.footer-links li a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background: #e91e8c;
  border-radius: 2px;
  opacity: 0.6;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.footer-links li a:hover {
  color: #ffffff;
  gap: 12px;
}
.footer-links li a:hover::before {
  width: 22px;
  opacity: 1;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-row .contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(233, 30, 140, 0.15);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4aac;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-row .contact-val {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  padding-top: 6px;
}

.footer-trust .trust-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.badge-enamad {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}
.badge-enamad img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 8px;
  display: block;
}
.badge-enamad.badge-placeholder img,
.badge-enamad .placeholder-inner {
  display: none;
}
.badge-enamad.badge-placeholder .placeholder-inner, .badge-enamad:not(:has(img[src])) .placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.badge-enamad.badge-placeholder .placeholder-inner svg, .badge-enamad:not(:has(img[src])) .placeholder-inner svg {
  color: #ff4aac;
}
.badge-enamad.badge-samandehi img {
  display: none;
}
.badge-enamad.badge-samandehi .placeholder-inner {
  display: flex !important;
}
.badge-enamad:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(233, 30, 140, 0.4);
  transform: translateY(-3px);
}

.badge-enamad .placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.badge-enamad .placeholder-inner svg {
  color: #ff4aac;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.15);
}
.footer-bottom .bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer-bottom .copyright strong {
  color: #ff4aac;
  font-weight: 700;
}
.footer-bottom .bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
.footer-bottom .bottom-links li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-bottom .bottom-links li a:hover {
  color: #ff4aac;
}
.footer-bottom .bottom-links li:not(:last-child) {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 600px) {
  .footer-bottom .bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom .bottom-links {
    justify-content: center;
  }
}

.site-footer .container {
  width: 90%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-section {
  padding: 32px 0 100px;
  background: #f8f9fa;
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-section .section-header .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.faq-section .section-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e91e8c, #6c3fc5);
  border-radius: 2px;
}
.faq-section .section-header .section-subtitle {
  margin-top: 20px;
  color: #6b7280;
  font-size: 1rem;
}
.faq-section .faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-section .faq-item {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-section .faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
  border-color: rgba(233, 30, 140, 0.25);
}
.faq-section .faq-item.active {
  border-color: rgba(233, 30, 140, 0.35);
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.1);
}
.faq-section .faq-item.active .faq-icon svg {
  transform: rotate(180deg);
  stroke: #e91e8c;
}
.faq-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  gap: 16px;
}
.faq-section .faq-question span:first-child {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  font-family: inherit;
  line-height: 1.6;
}
.faq-section .faq-question .faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-section .faq-question .faq-icon svg {
  transition: transform 0.35s ease, stroke 0.3s ease;
  stroke: #9ca3af;
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}
.faq-section .faq-answer p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.9;
  padding-bottom: 22px;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
}
.faq-section .faq-answer.open {
  max-height: 300px;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }
  .faq-section .section-header .section-title {
    font-size: 1.7rem;
  }
  .faq-section .faq-list {
    padding: 0 16px;
  }
  .faq-section .faq-question {
    padding: 18px 16px;
  }
  .faq-section .faq-question span:first-child {
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=style.css.map */