/* 
 * Vertical Arabic Banner Component
 * للبانر العمودي العربي - تحميل الخطة الدراسية
 */

.vertical-banner {
  position: fixed;
  top: 35%;
  right: 15px;
  transform: translateY(-50%);
  width: 40px;
  height: 160px;
  background: linear-gradient(180deg, #e6b54a 0%, #d4a843 100%);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(230, 181, 74, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 99;
  text-decoration: none;
}

.vertical-banner.psychometric {
  top: 65%;
  background: linear-gradient(180deg, #3498db 0%, #2980b9 100%);
  box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.vertical-banner:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.vertical-banner:active {
  transform: translateY(-50%) translateX(-3px) scale(0.98);
}

/* Individual banners retain default transform when not compact */
.vertical-banners-container .vertical-banner:hover,
.vertical-banners-container .vertical-banner:active {
  transform: none; /* Will be overridden by compact specific styles */
}

.vertical-banner-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  font-family: "Cairo", sans-serif;
}

.vertical-text-line {
  display: block;
  margin: 6px 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.vertical-text-line:first-child {
  font-weight: 700;
}

.vertical-text-line:last-child {
  font-weight: 700;
  font-size: 11px;
}

/* Styles for the combined vertical banners container */
.vertical-banners-container {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
}

/* Right-side banners (default) */
.vertical-banners-container.right-banners {
  right: 15px;
}

/* Left-side banners */
.vertical-banners-container.left-banners {
  left: 15px;
}

/* Compact style for banners when in the container */
.vertical-banner.compact {
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  width: 35px;
  height: 120px;
  margin: 0;
}

.vertical-banner.compact:hover {
  transform: scale(1.05);
}

.vertical-banner.compact:active {
  transform: translateX(-3px) scale(0.98);
}

/* Reset positioning for the banners inside the container */
.vertical-banner.psychometric,
.vertical-banner.initiative-program {
  top: auto;
}

/* Payment banner styles - KSA */
.vertical-banner.pay-ksa {
  background: linear-gradient(180deg, #006c35 0%, #00401f 100%);
  box-shadow: 0 2px 10px rgba(0, 108, 53, 0.3);
}

/* Payment banner styles - UAE */
.vertical-banner.pay-uae {
  background: linear-gradient(180deg, #009adf 0%, #00568c 100%);
  box-shadow: 0 2px 10px rgba(0, 154, 223, 0.3);
}



/* Responsive adjustments */
@media (max-width: 991.98px) {
  .vertical-banner {
    right: 15px;
    width: 40px;
    height: 180px;
  }

  .vertical-banner-text {
    font-size: 11px;
  }

  .vertical-text-line:last-child {
    font-size: 10px;
  }

  .vertical-banners-container.right-banners {
    right: 10px;
  }

  .vertical-banners-container.left-banners {
    left: 10px;
  }

  .vertical-banners-container {
    gap: 8px;
  }

  .vertical-banner.compact {
    width: 32px;
    height: 100px;
  }

  .vertical-banner.pay-ksa::after,
  .vertical-banner.pay-uae::after {
    width: 18px;
    height: 10px;
    bottom: 8px;
  }
}

@media (max-width: 767.98px) {
  .vertical-banner {
    right: 10px;
    width: 38px;
    height: 160px;
  }

  .vertical-banner-text {
    font-size: 10px;
  }

  .vertical-text-line {
    margin: 5px 0;
  }

  .vertical-text-line:last-child {
    font-size: 9px;
  }

  .vertical-banner.compact {
    width: 30px;
    height: 90px;
  }

  .vertical-banner.pay-ksa::after,
  .vertical-banner.pay-uae::after {
    width: 16px;
    height: 9px;
    bottom: 6px;
  }
}

@media (max-width: 575.98px) {
  .vertical-banner {
    right: 5px;
    width: 35px;
    height: 140px;
  }

  .vertical-banner-text {
    font-size: 9px;
  }

  .vertical-text-line {
    margin: 4px 0;
  }

  .vertical-text-line:last-child {
    font-size: 8px;
  }

  .vertical-banners-container.right-banners {
    right: 5px;
  }

  .vertical-banners-container.left-banners {
    left: 5px;
  }

  .vertical-banners-container {
    gap: 5px;
  }

  .vertical-banner.compact {
    width: 28px;
    height: 80px;
  }

  .vertical-banner.pay-ksa::after,
  .vertical-banner.pay-uae::after {
    width: 14px;
    height: 8px;
    bottom: 5px;
  }
}
