@import url('https://fonts.googleapis.com/css2?family=Leckerli+One&display=swap');
@font-face {
  font-family: 'LBC';
  src: url('../fonts/lbc-regular-.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(-135deg, #DADADA 43%, #6E6E6E 100%);
  font-family: 'LBC', sans-serif;
}

.top-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(100deg,#297470 ,#59C5C0);
  border-bottom-left-radius: 70% 100%;
  border-bottom-right-radius: 70% 100%;
  z-index: -1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo-container {
  display: flex;
  justify-content: center; 
  margin-top: 50px;       
  position: relative;
  z-index: 1;
}

.logo-text {
  font-size: 40px;
  color: #e0e0e0;
  font-family: 'Leckerli One', cursive;
text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.title-wrapper {
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.sub-text {
  font-size: 24px;
  color: #000000;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  margin: 0;
}

.details {
  font-size: 16px;
  color: #000000;
  margin: 0;
}

.divider {
  width: 260px;
  height: 5px;
  background-color: #297470;
  box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.5);
  margin: 0 10px;
}

.subscription-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.plan-card {
  background-color: #ffffff;
  color: #000000;
  border-radius: 30px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
  width: 400px;
  height: 90px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.plan-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.plan-card:hover {
  background-color: #9DD5D2;
  color: #000000;
  transform: scale(1.1);
}

.plan-card:hover .btn-icon {
  background-color: #A8A8A8;
  color: #ffffff;
  transform: scale(1.1);
}

.plan-header {
  font-size: 18px;
  margin-left: 10px;
}

.plan-price {
  font-size: 14px;
  opacity: 0.8;
}

.btn-icon {
  background-color: #9DD5D2;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  margin-left: 5px;
  margin-right: 30px;
}

.plan-card.selected {
 background-color: #9DD5D2;
  color: #000000;
  transform: scale(1.02);
}

.plan-card.selected .btn-icon {
 background-color: #A8A8A8;
  color: #ffffff;
  transform: scale(1.01);
}

.continue-button {
  background-color: #F6F6F6;
  color: #6E6E6E;
  border: 1px solid #DEDEDE;
  width: 240px;
  height: 45px;
  border-radius: 25px;
  padding: 15px 15px;
  font-size: 18px;
  cursor: default;
  opacity: 0.6;
  transition: all 0.3s ease;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.continue-button.enabled {
  background-color: #686868;
  color: #ffffff;
  border: 1px solid #929292;
  cursor: pointer;
  opacity: 1;
}
.continue-button.enabled:hover {
    transform: scale(1.03);
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; 
}

.wrapper .icon {
  margin: 0 15px;
  margin-top: 40px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon span {
  display: block;
  height: 50px;
  width: 50px;
  color: #ffffff;
  background: #e4e4e4;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon span i {
  line-height: 50px;
  font-size: 20px; 
}
.wrapper .icon .tooltip {
  position: absolute;
  top: 0;
  z-index: 1;
  background: #fff;
  font-family: 'ADLaM Display', cursive;
  color: #fff;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover .tooltip {
  top: -60px;
  opacity: 1;
  pointer-events: auto;
}
.icon .tooltip:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: inherit;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
}
.wrapper .icon:hover span {
  color: #ffffff;
}
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}
.wrapper .Telegram span,
.wrapper .Telegram:hover .tooltip {
  background: #0088CC;
}

.wrapper .tiktok span,
.wrapper .tiktok:hover .tooltip {
  background: #000000;
}
.wrapper .Whatsapp span,
.wrapper .Whatsapp:hover:hover .tooltip {
  background: #25D366;
}
.wrapper .instagram span {
 background: radial-gradient(circle at 30% 107%,#FFDD55 0%, #FFDD55 10%,
                             #FF543E 50%, #C837AB 100%);
}
.wrapper .instagram:hover .tooltip {
  background: #C837AB;
}
.wrapper .youtube span,
.wrapper .youtube:hover .tooltip {
  background: #DE463B;
}
.wrapper .icon:hover span {
  transform: scale(1.1); /* ← يكبر الدائرة */
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}

.confirm-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.445);
  justify-content: center;
  align-items: center;
  direction: rtl;
}

.modal-content {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: right;
}

.modal-content h4 {
  margin-bottom: 10px;
  color: #000000;
}
.selectedPlanText {
    padding-right: 10px;
    color: #000000;
    font-size: 16px;
}
.modal-content ul {
  padding-right: 20px;
  font-size: 16px;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.btn-success{
  background-color: #38A29D;
  color: #ffffff;
  border: 1px solid #8C8C8C;
  width: 175px;
  height: 40px;
  border-radius: 25px;
  padding: 15px 15px;
  font-size: 18px;
  margin-top: 15px;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn-secondary{
  background-color: #BDBDBD;
  color: #ffffff;
  border: 1px solid #8C8C8C;
  width: 140px;
  height: 40px;
  border-radius: 25px;
  padding: 15px 15px;
  font-size: 18px;
  margin-top: 15px;
  margin-left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn-success:hover{
    background-color: #2B817C;
    transform: scale(1.01);
}

.btn-secondary:hover{
    background-color: #8C8C8C;
    transform: scale(1.01);
}

footer {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #000000;
  text-align: center;
}

@media (max-width: 768px) {
  .top-circle {
  border-bottom-left-radius: 80% 100%;
  border-bottom-right-radius: 80% 100%;
}

  .sub-text{
    font-size: 20px;
  }

  .plan-card {
    width: 350px;
  }
  .wrapper .icon {
  margin: 0 10px;
  }

  .wrapper .icon span {
  margin-top: 30px;
  height: 48px;
  width: 48px;
  }
  .wrapper .icon .tooltip {
      font-family: 'Leckerli One', cursive;
  }
.wrapper .icon:hover .tooltip {
  top: -30px;
}
  .btn-success{
   width: 120px;
}
.btn-secondary{
  margin-left: 15px;
   width: 100px;
}
}