/* ===========================================
   CSS Custom Properties (Variables)
   =========================================== */
:root {
  --blue: #0183cf;
  --yellow: #fe9e02;
  --blue-gradient: linear-gradient(270deg, #0077ff 0%, #0093e9 100%);
  --yellow-gradient: linear-gradient(90deg, #FE7802 0%, #FE9E02 100%);
  --light-black: #313131;
  --white: #fff;
  --light-shadow: 0 10px 40px rgba(0, 130, 207, 0.1);
  --gray: #6a6a6a;
  --pale-blue: #0086ff0a;
  --title-color: #003d61ff;
  --transition-03s: all 0.3s ease;
}

/* ===========================================
   Global Reset & Base Styles
   =========================================== */
* {
  font-family: "Dana_regular";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

li {
  list-style-type: none;
}

input {
  outline: none;
  border: none;
  color: var(--gray);
  font-size: 14px;
}

button {
  border: none;
  outline: none;
  user-select: none;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

a,
a:hover,
a:focus {
  outline: 0;
  text-decoration: none;
}

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

  user-select: none;
}

/* ===========================================
   Scrollbar Styles
   =========================================== */
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #fbfbfb;
}

*::-webkit-scrollbar-thumb {
  background: #555555;
}

*::-webkit-scrollbar-thumb:hover {
  width: 10px;
  background: #353535;
}

/* Firefox Scrollbar */
@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: #0073b6 #fbfbfb;
  }
}

/* ===========================================
   Keyframe Animations
   =========================================== */
@keyframes loadingBar {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes float {

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

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.6;
  }

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

@keyframes shake {

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

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

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

/* ===========================================
   Preloader
   =========================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-content img {
  width: 180px;
  animation: fadeIn 1s ease forwards;
}

.loader {
  width: 80px;
  height: 4px;
  background: #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-gradient);
  animation: loadingBar 1.2s ease-in-out infinite;
}

/* ===========================================
   Header
   =========================================== */
.header {
  background: #fff;
  box-shadow: var(--light-shadow);
  width: 100%;
  position: fixed;
  top: 0;
  transition: transform 0.3s ease;
  z-index: 999;
}

.header.hide {
  transform: translateY(-100%);
}

.header__top {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__bottom {
  background: var(--blue-gradient);
  height: 40px;
}

/* Header Right */
.right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header__logo {
  width: 140px;
}

/* Header Left */
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Login Button */
.login {
  position: relative;
  height: 100%;
  border-radius: 20px;
  box-shadow: var(--light-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.login::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: var(--blue);
  bottom: 0;
  border-radius: 8px;
  visibility: hidden;
  clip-path: inset(0 50% 0 50%);
  transition: all 0.5s ease;
}

.login:hover::before {
  clip-path: inset(0 0 0 0);
  visibility: visible;
}

.login:hover {
  cursor: pointer;
}

.login__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  gap: 8px;
  text-align: center;
  padding: 8px 12px;
  transition: var(--transition-03s);
  color: var(--blue);
}

.login__link svg {
  width: 20px;
  height: 20px;
}

/* Open Menu Button */
.open-menu__btn {
  display: none;
  stroke: #0183cf;
}


.responsive-menu-btn svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

/* ===========================================
   Navigation Bar
   =========================================== */
.navigation-bar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu__item {
  position: relative;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  gap: 8px;
}

.menu__item::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  background: var(--white);
  bottom: -2;
  border-radius: 8px;
  visibility: hidden;
  clip-path: inset(0 50% 0 50%);
  transition: var(--transition-03s);
  transition-delay: 0.15s;
}

.menu__item:hover::before {
  clip-path: inset(0 0 0 0);
  visibility: visible;
}

.menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  gap: 2px;
  color: var(--white);
}

.menu__link svg {
  color: var(--white);
  width: 16px;
  height: 16px;
  transition: var(--transition-03s);
  transition-delay: 0.15s;
}


/* ===========================================
   Sub Menu
   =========================================== */
.service__item {
  position: relative;
}

.sub__menu {
  position: absolute;
  z-index: 100;
  visibility: hidden;
  padding: 6px;
  top: 30px;
  min-width: 200px;
  background-color: var(--white);
  opacity: 0;
  box-shadow: var(--light-shadow);
  border-radius: 8px;
  transition: var(--transition-03s);
  transition-delay: 0.15s;
  overflow-y: hidden;
}

.sub__menu::-webkit-scrollbar {
  display: none;
}

.menu__item:hover .sub__menu {
  visibility: visible;
  opacity: 1;
  top: 40px;
}

.menu__item:hover>a>svg {
  rotate: -90deg;
}

.services__item {
  width: 100%;
  display: flex;
  border-radius: 8px;
  transition: all 0.2s ease 0.08s;
}

/* Submenu animation */
.services__item {
  transform: translateY(-40px);
  opacity: 0;
  transition: all 0.6s ease 0.08s;
}

.menu__item:hover .services__item {
  transform: translateY(0);
  opacity: 1;
}

.service__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-left: 5px solid transparent;
  padding: 12px 10px;
  font-size: 15px;
  color: var(--light-black);
  transition: var(--transition-03s);
}

.service__link svg {
  color: var(--blue);
  width: 18px;
  height: 18px;
}

.services__item:hover {
  background-color: #00a2ff23;
}

.services__item:hover .service__link {
  color: var(--blue);
  transform: translateX(-4px);
}

.service__link svg {
  opacity: 0;
  width: 12px;
  fill: var(--blue);
  transform: translateX(20px);
  transition: var(--transition-03s);
}

.services__item:hover .service__link svg {
  transform: translateX(0px);
  opacity: 1;
}

/* ===========================================
   Mobile Menu
   =========================================== */
.mobile-menu {
  background: var(--white);
  width: 280px;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  right: -300px;
  height: 100vh;
  box-shadow: var(--light-shadow);
  transition: all 0.6s ease;
  z-index: 999;
}

.mobile-menu.menu-open {
  right: 0;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  /* mobile menu animation */
  transform: translateX(150px);
  transition: all 0.6s ease 0.12s;
}

/* mobile menu animation */
.menu-open .mobile-menu__header {
  transform: translateX(0);
}

.mobile-menu-header__logo {
  width: 140px;
}

.mobile-menu__btn {
  color: var(--blue);
}

.mobile-menu__btn svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-login {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
  transform: translateX(150px);
  transition: all 0.6s ease 0.2s;
}

.menu-open .mobile-menu-login {
  transform: translateX(0);
}

.mobile-menu-login__link {
  color: #0183cf;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-login__link svg {
  width: 20px;
  height: 20px;
}

.mobile-menu__list {
  transform: translateX(150px);
  transition: all 0.6s ease 0.3s;
  overflow-y: auto;
}

.menu-open .mobile-menu__list {
  transform: translateX(0);
}

/* .mobile-menu__item {
  padding: 4px;
} */

.mobile-menu__link {
  color: var(--blue);
  display: flex;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  background: var(--white);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #0183cf29;
}

.mobile-sub-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 12px;
  transform: translateY(-8px);
  transition: all .5s ease;
}

.mobile-sub-menu.show {
  opacity: 1;
  max-height: 300px;
  transform: translateY(0);
}

.mobile-chevron-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition-03s);
  transition: all 0.2s ease;
}

.mobile-chevron-icon.rotate {
  transform: rotate(-90deg);
}

.mobile-sub-menu__item {
  height: 40px;
  display: flex;
  align-items: center;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.5s ease 0.05s;
}

.show>.mobile-sub-menu__item {
  opacity: 1;
  transform: translateY(0);
}


.mobile-sub-menu__link {
  align-items: center;
  color: var(--gray);
  transition: var(--transition-03s);
}



/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000092;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: 0.55s ease;
}

.overlay.enable-overlay {
  opacity: 1;
  visibility: visible;
}

/* ===========================================
   Main Section
   =========================================== */
.main-margin {
  margin-top: 100px;
}

/* ===========================================
   Modern Slider
   =========================================== */
.modern-slider {
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--blue-gradient);
  position: relative;
}

.slider-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 600ms ease;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  transform: translateY(0px);
}

.slide-content {
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.slide-text {
  flex: 1;
  color: #fff;
}

.slide-text h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.slide-text p {
  text-align: center;
  font-size: 18px;
  background: #ffffff22;
  padding: 12px 32px;
  border-radius: 12px;
  width: 80%;
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.slide-image img {
  width: 380px;
  max-width: 100%;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff77;
  cursor: pointer;
  transition: 0.4s;
}

.slider-dots .active-dot {
  width: 40px;
  border-radius: 10px;
  background: var(--white);
}

/* ===========================================
   Domain Search Section
   =========================================== */
.domain {
  background: var(--white);
}

.domain-box {
  background: var(--white);
  margin: 20px auto;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  box-shadow: var(--light-shadow);
  border: 1px solid #E6F0FF;
}

/* .domain__title {
  font-size: 24px;
  color: #003d61ff;
  margin-top: 20px;
} */

.domain__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 8px;
}

.domain__right {
  width: 100%;
  padding: 4px;
}

.domain__name-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 60px;
}

.domain__name-card {
  width: 60px;
  border-radius: 8px;
  color: var(--blue);
  background-color: var(--pale-blue);
  font-weight: bold;
  font-size: 18px;
}

/* ===========================================
   Products Section
   =========================================== */
.products {
  padding: 12px;
  width: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 134, 255, 0.24) 36%, rgba(0, 134, 255, 0.24) 60%, rgba(252, 252, 252, 1) 100%);
}

/* .product__title {
  color: #003d61ff;
  margin: 20px auto 20px;
  text-align: center;
}

.product__title::after {
  content: "";
  display: block;
  width: 220px;
  height: 2px;
  background: var(--yellow);
  margin: 10px auto;
  border-radius: 8px;
} */

.product__text {
  text-align: center;
  position: relative;
  color: var(--light-black);
  margin-bottom: 60px;
}

.product__cards-container {
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 20px;
}

.product__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  background: var(--white);
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 0px 20px 0px #00000000;
  margin-bottom: 40px;
  transition: var(--transition-03s);
  padding: 10px;
}

.product__card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 20px 20px 0px #0000001f;
}

.product-card__info {
  width: 100%;
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  background: var(--blue-gradient);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card__img {
  margin-top: -70px;
  width: 100px;
  fill: var(--yellow);
}

.product-card__title {
  background: #ffffff22;
  border-radius: 20px;
  padding: 8px;
  color: var(--white);
  margin: 8px auto 0 auto;
}

.product-card__text {
  color: var(--white);
  margin: 12px;
  font-size: 12px;
}

.product-card__price {
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.product-card__feature {
  background: #0000000f;
  width: 100%;
  margin: 10px auto;
  padding: 8px;
  border-radius: 8px;
}

.feature__container {
  display: flex;
  align-items: center;
  margin-top: 4px;
  font-weight: 300;
  gap: 10px;
  color: var(--light-black);
}

.feature__container svg {
  color: var(--blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.suggested-feature svg {
  color: var(--yellow);
}


.feature__container i {
  color: var(--yellow);
  font-size: 22px;
}

.suggested__card .feature__container i {
  color: var(--blue);
}

.product-card__link {
  display: block;
  width: 100%;
  height: 45px;
  background: var(--blue);
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  color: var(--white);
  transition: var(--transition-03s);
}

.product-card__link:hover {
  background: #00659f;
  transform: scale(0.99);
}

.suggested-card-info {
  background: var(--yellow);
}

.suggested-card__link {
  background: #ffaf2f;
}

.suggested-card__link:hover {
  background: var(--yellow);
}

.suggested__card .product-card__link:hover {
  background: #00659f;
}

/* ===========================================
   Domain Page - Hero Section
   =========================================== */
.hero {
  z-index: 1;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C1000,0 800,50 500,50C200,50 0,0 0,0Z" fill="%231E3A8A" opacity="0.2"/></svg>');
  background-size: 100% 100px;
  background-repeat: no-repeat;
  background-position: bottom;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__icon {
  margin-top: 12px;
  user-select: none;
}

.hero__title {
  margin-top: 10px;
  font-size: 36px;
  color: var(--white);
}

.hero__text {
  margin: 24px 0;
  font-size: 18px;
  text-align: center;
  background: #ffffff22;
  padding: 12px 32px;
  border-radius: 12px;
  width: 90%;
  color: var(--white);
}

/* ===========================================
   Tips Section
   =========================================== */
.tips {
  padding: 8px;
}

.tips-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 350px;
  margin: 20px 0;
  box-shadow: var(--light-shadow);
  padding: 10px 62px;
  border-radius: 16px;
}

.tips__title {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--blue);
}

.tips__list {
  padding: 12px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}

.tips__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.tips__item svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.tips__item p {
  color: var(--gray);
}

/* ===========================================
   Domain Registration Section
   =========================================== */
.domain-register {
  padding: 20px;
}

.domain-register__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-radius: 16px;
}

.domain-search__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 790px;
  padding: 20px;
  margin-bottom: 50px;
  border-radius: 16px;
}

.search-box__title {
  color: #003d61;
  font-size: 22px;
  margin: 0 0 20px 0;
}

.search-input__form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 4px;
  border-radius: 54px;
  border: 2px solid #E6F0FF;
  transition: all 0.9s ease;
}

.search-input__form:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 12px #00a2ff3a;
}

.domain-search__input {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  text-align: center;
  direction: ltr;
  padding: 2px 22px;
  font-size: 18px;
}

.domain-search__btn {
  padding: 12px;
  height: 100%;
  border-radius: inherit;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 18px;
  transition: var(--transition-03s);
}

.domain-search__btn:hover {
  cursor: pointer;
  background: #003d61;
}

.domain-search__btn svg {
  width: 20px;
}

.domain-cards__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.domain-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 220px;
  background: var(--white);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.049);
  transition: var(--transition-03s);
}

.domain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(207, 124, 0, 0.1);
}

.card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gray);
  font-size: 12px;
}

.domain-icon {
  margin-bottom: 10px;
}

.price__lable {
  color: var(--light-black);
  margin-right: 5px;
}

.domain-price {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
}

.price__bottom {
  width: 100%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  background: #fe9d0210;
}

.price__value {
  color: var(--yellow);
  font-family: "Dana_bold";
  font-size: 14px;
}

.card__link {
  text-align: center;
  display: block;
  width: 54px;
  height: 100%;
  background: var(--yellow);
  color: var(--white);
  border-radius: 6px;
  transition: var(--transition-03s);
}

.card__link:hover {
  background: #fe7c02;
}

/* ===========================================
   Host Page - Plans
   =========================================== */
.plans {
  position: relative;
  padding: 1px;
  background-color: rgb(248, 249, 250);
}

.plans-title {
  color: var(--title-color);
  margin: 20px auto 20px;
  text-align: center;
}

.plans-title::after {
  content: "";
  display: block;
  width: 220px;
  height: 2px;
  background: var(--yellow);
  margin: 10px auto;
  border-radius: 8px;
}

.plans__sub-title {
  text-align: center;
  color: var(--light-black);
  margin-bottom: 40px;
}

.plans__wrapper-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  padding: 12px;
}

.plan__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: white;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 0 30px #00000012;
  border-bottom: 4px solid transparent;
  transition: var(--transition-03s);
}

.plan__card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.plan__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: var(--blue-gradient);
  border-radius: 10px;
}

.plan__title {
  direction: ltr;
  color: var(--white);
  background: #ffffff22;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.big {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: "Dana_bold";
  font-size: 30px;
}

.small {
  font-size: 16px;
}

.plan__features {
  width: 100%;
  padding: 10px;
  border: 1px solid #0185cf42;
  border-radius: 10px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}

.feature__item strong span:first-child {
  color: #2E2F2E;
}

.feature__item strong span:last-child {
  color: var(--blue);
}

.feature__item svg {
  color: #bfbfbf;
  width: 20px;
  height: 20px;
}

.buy-plan__link {
  background: #0093e9;
  display: block;
  width: 100%;
  text-align: center;
  color: var(--white);
  padding: 12px;
  border-radius: 10px;
  transition: var(--transition-03s);
}

.buy-plan__link:hover {
  background: #0077ff;
}

/* Special Card */
.special__card {
  position: relative;
}

.special__card::after {
  content: "پیشنهاد ما";
  color: var(--white);
  display: block;
  --f: .5em;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.8;
  padding-inline: 1lh;
  padding-bottom: var(--f);
  border-image: conic-gradient(#0008 0 0) 51%/var(--f);
  clip-path: polygon(100% calc(100% - var(--f)), 100% 100%, calc(100% - var(--f)) calc(100% - var(--f)), var(--f) calc(100% - var(--f)), 0 100%, 0 calc(100% - var(--f)), 999px calc(100% - var(--f) - 999px), calc(100% - 999px) calc(100% - var(--f) - 999px));
  transform: translate(calc((cos(45deg) - 1)*100%), -100%) rotate(-45deg);
  transform-origin: 100% 100%;
  background-color: var(--yellow);
  font-family: 'Dana_Bold';
}

.special__card .plan__info {
  background: var(--yellow);
}

.special__card .plan__features {
  border: 1px solid #ff980042;
}

.special__card:hover {
  border-color: var(--yellow);
}

.special__card strong span:last-child {
  color: var(--yellow);
}

.special__card .buy-plan__link {
  background: #ffaf2f;
}

.special__card .buy-plan__link:hover {
  background: var(--yellow);
}

/* ===========================================
   Server Page
   =========================================== */
.location-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.location__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  background: #c4ccdc70;
  color: var(--light-black);
  border: 1px solid #c4ccdca4;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-03s);
}

.location__btn img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.location__btn:hover:not(.active) {
  transform: translateY(-2px);
  /* box-shadow: 0 10px 20px rgba(0, 130, 207, 0.15); */
}

.location__btn.active {
  background: var(--blue);
  color: var(--white);
}

.location__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.plans__wrapper {
  display: none;
  animation: fadeIn 0.8s ease forwards;
}

.plans__wrapper.active {
  display: block;
}

.plans__list {
  margin-top: 30px;
  transition: opacity 0.3s ease;
  min-height: 300px;
  position: relative;
}

.server-plan__title {
  text-align: center;
  color: var(--title-color);
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pale-blue);
}

.server-plan__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--light-shadow);
  margin-bottom: 20px;
}

.plan-card__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan__name {
  display: block;
  color: var(--blue);
  font-size: 24px;
}

.server-feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 12px 50px;
}

.server-feature__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.server-feature__item h6 {
  font-size: 16px;
  color: #303030;
}

.server-feature__item span:last-child {
  color: #637487;
}

.direction-ltr {
  direction: ltr;
}

.server-feature__item svg {
  color: #8a8a8a;
  width: 20px;
  height: 20px;
}

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

.plan-price {
  text-align: center;
  color: #293542;
}

.plan-price span:first-child {
  font-family: "Dana_Bold";
  font-size: 20px;
  margin-left: 4px;
}

.plan-install__price {
  color: #293542;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  font-size: 14px;
}

.order-plan__link {
  display: block;
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 26px;
  width: 180px;
  text-align: center;
  transition: var(--transition-03s);
}

.order-plan__link:hover {
  background: #003d61;
  transform: translateY(-4px);
}

/* Plans Loading */
.plans-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  border-radius: 16px;
}

.plans-loading.active {
  display: flex;
}

.loading-text {
  color: var(--title-color);
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.loading-dot {
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.6;
  animation: bounce 1.4s infinite ease-in-out;
}

.loading-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dot:nth-child(2) {
  animation-delay: -0.16s;
}

/* ===========================================
   GPU Server Page Overrides
   =========================================== */
.gpu-tips__title {
  color: var(--yellow);
}

.gpu-loading-dot {
  background: var(--yellow);
}

.gpu-time__btns {
  position: relative;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
}

.gpu-time__btns::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background: #fe7c023e;
}

.gpu-time__btn {
  display: flex;
  justify-content: center;
  position: relative;
  font-size: 18px;
  padding: 0;
  width: 100%;
  height: 50px;
  border-radius: 0;
  background: none;
  border: none;
  color: #fe7c027b;
  transition: all 0.5s ease;
}

.gpu-time__btn::after {
  position: absolute;
  bottom: 0;
  border-radius: 4px;
  content: "";
  opacity: 0;
  display: block;
  transform: scaleX(0);
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transition: all 0.5s ease;
}

.gpu-time__btn.active {
  background: none;
  color: var(--yellow);
}

.gpu-time__btn.active::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ===========================================
   Features Section
   =========================================== */
.sections__title {
  text-align: center;
  color: #003d61;
  margin: 20px auto;
  width: fit-content;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
}

.features__text {
  text-align: center;
  color: var(--light-black);
  margin-top: 20px;
}

.features__card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  justify-items: center;
  padding: 4px;
  margin-top: 30px;
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 270px;
  padding: 12px;
  transition: var(--transition-03s);
}

/* .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px 0px #008cff34;
} */

.feature__img {
  width: 78px;
  margin-bottom: 20px;
}

.feature__title {
  color: #003d61;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--yellow);
}

.feature-text {
  color: var(--gray);
  margin-bottom: 10px;
}

/* ===========================================
   404 Error Page
   =========================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 134, 255, 0.08) 36%, rgba(0, 134, 255, 0.08) 60%, rgba(252, 252, 252, 1) 100%);
}

.error-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.error-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

.error-text-section {
  flex: 1;
  animation: slideIn 1s ease-out;
}

.error-image-section {
  flex: 1;
  text-align: center;
  animation: fadeIn 1.2s ease-out;
}

.error-number {
  font-size: 140px;
  font-weight: bold;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 20px;
  font-family: 'Dana_Bold';
}

.error-title {
  color: var(--title-color);
  font-size: 36px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.error-title::after {
  content: "";
  display: block;
  width: 180px;
  height: 3px;
  background: var(--yellow);
  margin-top: 10px;
  border-radius: 8px;
}

.error-description {
  color: var(--light-black);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 90%;
}

.error-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition-03s);
  text-decoration: none;
  gap: 10px;
  min-width: 180px;
  font-family: 'Dana_Medium';
}

.error-btn.primary {
  background: var(--blue-gradient);
  color: var(--white);
  box-shadow: var(--light-shadow);
}

.error-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 130, 207, 0.2);
}

.error-btn.secondary {
  background-color: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: var(--light-shadow);
}

.error-btn.secondary:hover {
  background-color: var(--pale-blue);
  transform: translateY(-4px);
}

.error-image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.floating {
  animation: float 5s ease-in-out infinite;
}

/* ===========================================
   Blog Page
   =========================================== */
.blog-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.blog-main {
  flex: 3;
}

.blog-sidebar {
  flex: 1;
  min-width: 300px;
}

/* Featured Post */
.featured-post {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--light-shadow);
  margin-bottom: 40px;
}

.featured-post__image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.featured-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-post:hover .featured-post__image img {
  transform: scale(1.05);
}

.featured-post__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.featured-post__content {
  padding: 30px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  color: var(--gray);
  font-size: 14px;
}

.post-meta svg {
  width: 20px;
  height: 20px;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-category {
  fill: none;
}

.featured-post__title {
  font-size: 28px;
  color: var(--title-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.featured-post__excerpt {
  color: var(--light-black);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.featured-post__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 500;
  transition: var(--transition-03s);
}


.featured-post__link:hover {
  color: var(--yellow);
}

/* Section Title */
.section-title {
  font-size: 24px;
  color: var(--title-color);
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pale-blue);
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.blog-post {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--light-shadow);
  transition: var(--transition-03s);
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 130, 207, 0.15);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-content {
  padding: 20px;
}

.post-title {
  font-size: 18px;
  color: var(--title-color);
  margin: 10px 0;
  line-height: 1.5;
}

.post-excerpt {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-read-more {
  display: inline-block;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-03s);
}

.post-read-more:hover {
  color: var(--yellow);
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font-weight: 500;
  transition: var(--transition-03s);
  border: 1px solid #E6F0FF;
}

.pagination-btn:hover,
.pagination-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.pagination-btn.next {
  width: auto;
  padding: 0 20px;
  gap: 8px;
}

.pagination-btn svg {
  width: 20px;
  height: 20px;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: var(--light-shadow);
}

.widget-title {
  font-size: 18px;
  color: var(--title-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pale-blue);
}

/* Search Widget */
.search-widget {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 2px solid #E6F0FF;
  border-radius: 25px;
  font-size: 14px;
  transition: var(--transition-03s);
}

.search-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(1, 131, 207, 0.1);
}

.search-btn {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue);
  color: var(--white);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-03s);
}

.search-btn svg {
  width: 16px;
  height: 16px;
}

.search-btn:hover {
  background: var(--yellow);
}

/* Categories Widget */
.categories-list {
  list-style: none;
}

.categories-list li {
  margin-bottom: 10px;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--light-black);
  padding: 10px;
  border-radius: 8px;
  transition: var(--transition-03s);
}


.categories-list a:hover {
  background: var(--pale-blue);
  color: var(--blue);
  padding-right: 15px;
}

.categories-list svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  fill: transparent;
  transition: var(--transition-03s);
}

.categories-list a:hover .category-icon {
  fill: var(--blue);
}

.category-count {
  background: var(--pale-blue);
  color: var(--blue);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

/* Popular/Related Posts Widget */
.popular-posts,
.related-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-post,
.related-post {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E6F0FF;
}

.popular-post:last-child,
.related-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-post__image,
.related-post__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.popular-post__image img,
.related-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-post__content h4,
.related-post__content h4 {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.popular-post__content h4 a,
.related-post__content h4 a {
  color: var(--title-color);
  transition: var(--transition-03s);
}

.popular-post__content h4 a:hover,
.related-post__content h4 a:hover {
  color: var(--blue);
}

.popular-post__date,
.related-post__date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gray);
}

.popular-post__date svg,
.related-post__date svg {
  width: 18px;
  height: 18px;
}


/* Newsletter Widget */
.newsletter-text {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #E6F0FF;
  border-radius: 8px;
  font-size: 14px;
  transition: var(--transition-03s);
}

.newsletter-input:focus {
  border-color: var(--blue);
}

.newsletter-btn {
  width: 100%;
  padding: 12px 20px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-03s);
  font-weight: 500;
}

.newsletter-btn:hover {
  background: var(--yellow);
}

/* Tags Widget */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--pale-blue);
  color: var(--blue);
  border-radius: 20px;
  font-size: 12px;
  transition: var(--transition-03s);
}

.tag:hover {
  background: var(--blue);
  color: var(--white);
}

/* ===========================================
   Blog Post Page
   =========================================== */
.blog-post-hero {
  background: var(--blue-gradient);
  padding: 40px 0;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--white);
  opacity: 0.9;
  transition: var(--transition-03s);
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb .current {
  color: var(--white);
  font-weight: 500;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
}

.blog-post-title {
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-meta-large {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 16px;
}

.author-title {
  font-size: 12px;
  opacity: 0.9;
}

.post-meta-stats {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.meta-item svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}

.featured-image {
  position: relative;
  width: 100%;
  margin: 20px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid #ffffff5c;
  object-fit: cover;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: #00000020;
  backdrop-filter: blur(8px);
  padding: 15px;
  color: var(--white);
  font-size: 14px;
  text-align: center;
  font-style: italic;
}

/* Blog Post Content */
.blog-post-content {
  padding: 60px 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 134, 255, 0.04) 36%, rgba(0, 134, 255, 0.04) 60%, rgba(252, 252, 252, 1) 100%);
}

.post-content-layout {
  display: flex;
  gap: 40px;
}

.post-main-content {
  flex: 3;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--light-shadow);
}

.post-sidebar {
  flex: 1;
  min-width: 300px;
}

.post-intro .lead-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--title-color);
  margin-bottom: 30px;
  padding: 20px;
  background: var(--pale-blue);
  border-right: 4px solid var(--blue);
  border-radius: 8px;
}

.table-of-contents {
  background: var(--white);
  border: 2px solid #E6F0FF;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
}

.list-icon {
  color: var(--blue);
  width: 28px;
  stroke-width: 2.7px;
}

.table-of-contents h3 {
  color: var(--title-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-of-contents h3 svg {
  color: var(--yellow);
  width: 28px;
  height: 28px;
}

.table-of-contents ul {
  list-style: none;
  padding-right: 0;
}

.table-of-contents li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E6F0FF;
}

.table-of-contents li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.table-of-contents a {
  color: var(--light-black);
  transition: var(--transition-03s);
  display: block;
  padding: 5px 0;
}

.table-of-contents a:hover {
  color: var(--blue);
  padding-right: 10px;
}

/* Post Sections */
.post-section {
  margin-bottom: 50px;
}

.post-section h2 {
  font-size: 24px;
  color: var(--title-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pale-blue);
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-section p {
  line-height: 1.8;
  color: var(--light-black);
  margin-bottom: 15px;
  text-align: justify;
}

/* Info Box */
.info-box {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--pale-blue);
  border-radius: 12px;
  margin: 25px 0;
  border-right: 4px solid var(--blue);
}

.info-box-content h4 {
  color: var(--title-color);
  margin-bottom: 10px;
}

/* Comparison Table */
.comparison-table {
  margin: 30px 0;
  overflow-x: auto;
}

.comparison-table h4 {
  color: var(--title-color);
  margin-bottom: 15px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  background: var(--blue);
  color: var(--white);
  padding: 15px;
  text-align: center;
  font-weight: 500;
}

.comparison-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #E6F0FF;
  color: var(--light-black);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background: var(--pale-blue);
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.pros,
.cons {
  padding: 20px;
  border-radius: 12px;
}

.pros {
  background: rgba(0, 227, 150, 0.1);
  border-right: 4px solid #00e396;
}

.cons {
  background: rgba(255, 77, 77, 0.1);
  border-right: 4px solid #ff4d4d;
}

.pros h4,
.cons h4 {
  display: flex;
  align-items: center;
  color: var(--light-black);
  gap: 10px;
  margin-bottom: 15px;
}

.pros ul,
.cons ul {
  list-style: none;
  padding-right: 0;
}

.pros li,
.cons li {
  margin-bottom: 10px;
  padding-right: 25px;
  position: relative;
}

.pros li:before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #00e396;
  font-weight: bold;
}

.cons li:before {
  content: "✗";
  position: absolute;
  right: 0;
  color: #ff4d4d;
  font-weight: bold;
}

/* Code Example */
.code-example {
  margin: 30px 0;
}

.code-example h4 {
  color: var(--title-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.code-example pre {
  background: #2d2d2d;
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  direction: ltr;
}

.code-example code {
  color: #fff;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 14px;
}

/* Stats Box */
.stats-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--light-shadow);
  transition: var(--transition-03s);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 130, 207, 0.15);
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 5px;
  font-family: 'Dana_Bold';
}

.stat-label {
  color: var(--light-black);
  font-size: 14px;
}

/* Tips List */
.tips-list {
  margin: 30px 0;
}

.tip-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #E6F0FF;
}

.tip-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tip-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.tip-content h4 {
  color: var(--title-color);
  margin-bottom: 10px;
}

/* FAQ Accordion */
.faq-accordion {
  margin: 30px 0;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #E6F0FF;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 200ms ease;
}

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

.faq-question h4 {
  color: var(--title-color);
  margin: 0;
  font-size: 16px;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  transition: transform 200ms ease;
}

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--light-black);
  line-height: 1.6;
  margin: 0;
}

/* Post Conclusion */
.post-conclusion {
  padding: 30px;
  background: var(--pale-blue);
  border-radius: 12px;
  margin: 40px 0;
  border-right: 4px solid var(--blue);
}

.post-conclusion h3 {
  color: var(--title-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Post Tags */
.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #E6F0FF;
}

.tags-label {
  color: var(--title-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-tags .tag {
  padding: 8px 16px;
  background: var(--pale-blue);
  color: var(--blue);
  border-radius: 20px;
  font-size: 14px;
  transition: var(--transition-03s);
}

.post-tags .tag:hover {
  background: var(--blue);
  color: var(--white);
}

/* Share Buttons */
.share-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #E6F0FF;
}

.share-label {
  color: var(--title-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-btn {
  padding: 12px 12px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-03s);
}

.share-btn svg {
  width: 24px;
  height: 24px;
}

.share-btn.telegram {
  background: #0088cc;
  color: white;
}

.share-btn.whatsapp {
  background: #25D366;
  color: white;
}

.share-btn.twitter {
  background: #1DA1F2;
  color: white;
}

.share-btn.linkedin {
  background: #0077B5;
  color: white;
}

.share-btn.copy-link {
  background: var(--pale-blue);
  color: var(--blue);
}

.share-btn:hover {
  background-color: var(--yellow);
  color: var(--white);
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  margin: 40px 0;
  border: 1px solid #E6F0FF;
}

.author-bio__image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.author-bio__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--blue);
}

.author-bio__content h4 {
  color: var(--title-color);
  margin-bottom: 10px;
}

.author-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.author-social a {
  width: 40px;
  height: 40px;
  background: var(--pale-blue);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: var(--transition-03s);
}

.author-social svg {
  width: 20px;
  height: 20px;
}

.author-social a:hover {
  background: var(--blue);
  color: var(--white);
}


/* Post Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  gap: 20px;
}

.prev-post,
.next-post,
.all-posts {
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid #E6F0FF;
  transition: var(--transition-03s);
  display: flex;
  align-items: center;
  gap: 15px;
}

.prev-post:hover,
.next-post:hover,
.all-posts:hover {
  background: var(--pale-blue);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.prev-post {
  text-align: right;
}

.next-post {
  text-align: left;
}

.all-posts {
  flex: 0;
  min-width: 150px;
  justify-content: center;
}

.nav-label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 5px;
}

.nav-content h4 {
  color: var(--title-color);
  font-size: 16px;
  margin: 0;
}

/* Comments Section */
.comments-section {
  margin-top: 40px;
}

.comments-section h3 {
  color: var(--title-color);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comments-section svg {
  width: 28px;
  height: 28px;
}

.comment-form {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: var(--light-shadow);
}

.comment-form h4 {
  color: var(--title-color);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #E6F0FF;
  border-radius: 8px;
  font-size: 14px;
  transition: var(--transition-03s);
  font-family: 'Dana_regular';
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(1, 131, 207, 0.1);
  outline: none;
}

.submit-comment {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-03s);
}

.submit-comment:hover {
  background: #00659f;
  transform: translateY(-2px);
}

/* Comments List */
.comments-list {
  margin-top: 30px;
}

.comment {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #E6F0FF;
}

.comment.reply {
  margin-right: 40px;
  background: var(--pale-blue);
}

.comment-avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.comment-header h5 {
  color: var(--title-color);
  margin: 0;
  font-size: 16px;
}

.comment-date {
  font-size: 12px;
  color: var(--gray);
}

.comment-content p {
  color: var(--light-black);
  line-height: 1.6;
  margin-bottom: 10px;
}

.reply-btn {
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-03s);
}

.reply-btn:hover {
  color: var(--yellow);
}

/* About Widget */
.about-widget .about-logo {
  width: 150px;
  margin: 0 auto 20px;
  display: block;
}

.about-widget p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 500;
  transition: var(--transition-03s);
}

.about-link svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  transition: var(--transition-03s);
}

.about-link:hover {
  color: var(--yellow);
}

.about-link:hover svg {
  color: var(--yellow);
  transform: translateX(-6px);
}

/* CTA Widget */
.cta-widget {
  background: var(--blue-gradient);
  color: var(--white);
  text-align: center;
}

.cta-widget .widget-title {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-widget p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.cta-btn {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  background: var(--white);
  color: var(--blue);
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition-03s);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cta-btn:hover {
  background: var(--yellow);
  color: var(--white);
}

.cta-btn svg {
  fill: var(--white);
  width: 20px;
  height: 20px;
  transition: var(--transition-03s);
}

.cta-btn:hover .cta-btn svg {
  fill: var(--blue);
}


.cta-btn-telegram-icon {
  width: 40px;
  fill: #0183f1;
  transition: var(--transition-03s);
}

.cta-btn:hover .cta-btn-telegram-icon {
  fill: var(--white);
}

/* ===========================================
   Contact Us Page
   =========================================== */
.contact-content {
  margin: 40px auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 134, 255, 0.04) 36%, rgba(0, 134, 255, 0.04) 60%, rgba(252, 252, 252, 1) 100%);
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--light-shadow);
  text-align: center;
  transition: var(--transition-03s);
  border-top: 4px solid var(--blue);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 130, 207, 0.15);
}

.contact-card__icon {
  width: 70px;
  height: 70px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card__icon svg {
  width: 40px;
  height: 40px;
}

.contact-card__title {
  color: var(--title-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.contact-card__text {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-card__info {
  text-align: right;
  padding-top: 15px;
  border-top: 1px solid #E6F0FF;
}

.contact-card__info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--light-black);
}

.contact-card__info svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

/* Contact Main */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  /* margin-bottom: 60px; */
}

.section-subtitle {
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--light-shadow);
}

.contact-form .form-row {
  grid-template-columns: 1fr 1fr;
}

.form-group label {
  display: flex;
  margin-bottom: 8px;
  color: var(--title-color);
  font-weight: 500;
}

.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #E6F0FF;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Dana_regular';
  transition: var(--transition-03s);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230183cf' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 15px center;
  padding-left: 40px;
}

.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(1, 131, 207, 0.1);
  outline: none;
}

/* Character Counter */
.char-counter {
  text-align: left;
  font-size: 12px;
  color: var(--gray);
  margin-top: 5px;
}

.char-counter span {
  color: var(--blue);
  font-weight: bold;
}

/* Checkboxes */
.checkbox-group {
  margin-top: 30px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
  color: var(--light-black);
  font-size: 14px;
}

.checkbox-label input {
  display: none;
}

.checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #E6F0FF;
  border-radius: 4px;
  margin-left: 10px;
  position: relative;
  flex-shrink: 0;
}

.checkbox-label input:checked+.checkmark {
  background: var(--blue);
  border-color: var(--blue);
}

.checkbox-label input:checked+.checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
}

.terms-link {
  color: var(--blue);
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

/* Submit Button */
.submit-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 18px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-03s);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.submit-btn:hover:not(:disabled) {
  background: #00659f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 130, 207, 0.2);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loading {
  display: flex;
}

/* Form Success Message */
.form-success {
  background: rgba(0, 227, 150, 0.1);
  border: 2px solid #00e396;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
  display: none;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.form-success i {
  font-size: 48px;
  color: #00e396;
  margin-bottom: 15px;
  display: block;
}

.form-success h4 {
  color: var(--title-color);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--light-black);
  line-height: 1.6;
}

.form-success strong {
  color: var(--blue);
}

/* Contact Info Section */
.contact-details {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--light-shadow);
  margin-bottom: 30px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E6F0FF;
}

.contact-detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--blue-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  ;
}

.contact-detail-icon svg {
  width: 26px;
  height: 26px;
}

.contact-detail-content h4 {
  color: var(--title-color);
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-detail-content p {
  color: var(--light-black);
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-detail-content strong {
  color: var(--title-color);
}

/* Phone Numbers */
.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--pale-blue);
  border-radius: 8px;
}

.phone-label {
  color: var(--light-black);
  font-size: 14px;
}

.phone-number {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-03s);
}

.phone-number:hover {
  color: var(--yellow);
}

/* Email Addresses */
.email-addresses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-address {
  font-family: "dana_bold";
  display: flex; 
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--pale-blue);
  color: var(--blue);
  text-decoration: none;
  transition: all 200ms ease;
}

.email-address svg {
  width: 16px;
  height: 16px;
}

.email-address:hover {
  color: var(--yellow);
}

.email-address i {
  color: var(--blue);
  font-size: 18px;
}

.email-address:hover i {
  color: var(--white);
}

/* Social Media */
.contact-social {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--light-shadow);
}

.social-title {
  color: var(--title-color);
  margin-bottom: 25px;
  font-size: 22px;
  text-align: center;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-03s);
  background: var(--pale-blue);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
}

.social-icon span {
  font-size: 12px;
  font-weight: 500;
}


.social-icon.telegram {
  color: #0088cc;
  fill: var(--blue);
  background: rgba(0, 136, 204, 0.1);
}

.social-icon.telegram:hover {
  background: #0088cc;
}

.social-icon.instagram {
  color: #E1306C;
  background: rgba(225, 48, 108, 0.1);
}

.social-icon.instagram:hover {
  background-color: #E1306C;
}


.social-icon.linkedin {
  color: #0077B5;
  background: rgba(0, 119, 181, 0.1);
}

.social-icon.linkedin:hover {
  background: #0077B5;
}

.social-icon:hover {
  color: var(--white);
}

/* Contact FAQ */
.contact-faq {
  margin-top: 30px;
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--light-shadow);
}

.faq-title {
  text-align: center;
  color: var(--title-color);
  margin-bottom: 40px;
  font-size: 28px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Support Teams */
.support-teams {
  margin: 60px 0;
}

.teams-title {
  text-align: center;
  color: var(--title-color);
  margin-bottom: 40px;
  font-size: 28px;
}

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

.team-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--light-shadow);
  text-align: center;
  transition: var(--transition-03s);
  border-top: 4px solid var(--blue);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 130, 207, 0.15);
}

.team-icon {
  width: 70px;
  height: 70px;
  background: var(--blue-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.team-name {
  color: var(--title-color);
  margin-bottom: 10px;
  font-size: 18px;
}

.team-desc {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 14px;
}

.team-contact {
  text-align: right;
  padding-top: 15px;
  border-top: 1px solid #E6F0FF;
}

.team-contact span,
.team-contact a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--light-black);
  text-decoration: none;
}

.team-contact i {
  color: var(--blue);
  margin-left: 8px;
}

.team-contact a:hover {
  color: var(--blue);
}

/* Utility Classes */
.shake {
  animation: shake 0.5s ease;
}

/* ===========================================
   Footer
   =========================================== */

.footer {
  background-color: #101828;
  max-width: 98% !important;
  border-radius: 16px;
  margin-bottom: 30px;
  margin: 30px auto;
  padding: 38px 32px 32px 32px;
}

.footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 36px;
}

.footer-columns {
  width: 100%;
}

.footer-columns:nth-child(2) {
  margin-right: 30px;
}

.columns__title {
  font-family: "Dana_Bold";
  color: var(--white);
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-columns p {
  color: #D4D4D8;
  text-align: justify;
  line-height: 28px;
  max-width: 320px;
}

.footer-columns ul {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}


.footer__link {
  color: #D4D4D8;
  transition: var(--transition-03s);
}

.footer__link:hover {
  color: var(--blue);
}

.contact__list {
  display: flex;
  flex-direction: column;
}

.contact__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 4px;
  color: #D4D4D8;
  text-wrap: nowrap;
  transition: color 0.3s ease;

}

.contact__list li:nth-child(2) {
  margin-bottom: 12px;

}

.social-media__links {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.social-media__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  background-color: #030712;
  color: var(--white);
  border-radius: 10px;
  transition: var(--transition-03s);
}

.social-media__link:hover {
  color: var(--blue);
}

.instagram__link:hover {
  color: #cc2366;
}

.social-media__link svg {
  width: 24px;
  height: 24px;

}

.license__links {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.license__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #030712;
  color: var(--white);
  border-radius: 10px;
  padding: 8px;
  transition: var(--transition-03s);
}

.license__link:hover {
  color: var(--blue);

}

.license__link:hover {
  color: var(--blue);

}

.zarrin-pal__link:hover {
  color: var(--yellow);
}

.license__link svg {
  width: 72px;
  height: 72px;

}

.copyright__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  border-radius: 12px;
  background-color: #030712;
  padding: 14px;
}

.copyright__right {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 14px;
  color: #D4D4D8;
}

.copyright__right a {
  color: var(--blue);
}

.copyright__right svg {
  width: 20px;
  height: 20px;
}

.copyright__logo {
  width: 100px;
}

/* ==================================== */
/* =========== Trust Page============== */
/* ==================================== */
.trust-hero {
  background: var(--blue-gradient);
  padding: 60px 0 40px;
  text-align: center;
  color: var(--white);
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
}

.trust-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.trust-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.trust-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: var(--light-shadow);
  text-align: center;
  transition: var(--transition-03s);
  border-top: 4px solid var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 280px;
}

.trust-card .badge-wrapper {
  background: #f8faff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-card .badge-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.trust-card .badge-wrapper iframe,
.trust-card .badge-wrapper a {
  display: block;
  width: 100%;
}

.trust-card h3 {
  color: var(--title-color);
  margin: 15px 0 10px;
  font-size: 22px;
}

.trust-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.enamad-card {
  border-top-color: #00a651;
}

.zarinpal-card {
  border-top-color: #f9b31c;
}

.info-card svg {
  width: 80px;
  height: 80px;
  color: var(--blue);
  margin-bottom: 10px;
}

.info-card ul {
  text-align: right;
  width: 100%;
  padding-right: 0;
  margin-top: 10px;
}

.info-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f4ff;
  font-size: 14px;
  color: var(--light-black);
}

.info-card ul li svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 500;
  margin: 30px 0;
  transition: var(--transition-03s);
}

.back-link:hover {
  color: var(--yellow);
}

.back-link svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-03s);
}

.back-link:hover svg {
  transform: translateX(-6px);
}

@media (max-width: 768px) {
  .trust-hero h1 {
    font-size: 28px;
  }

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

  .trust-card {
    min-height: auto;
    padding: 20px;
  }
}