@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Tajawal:wght@400;700&display=swap');

:root {
    --primaryColor: #FEA958;
    --middleColor: #393E46;
    --helperColor: #400B50;
    --lightHelper: #B60C52;
    --hrColor: #F8F5FF;
    --transparentColor: rgba(0, 0, 0, 0.699);
    --shadow: rgba(189, 188, 188, 0.514);
    /* --------------------------------- */
    --whatsappColor: #25D366;
    --white: #ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray: #f8f8f8;
    --container-width: 1340px;
    --header-height: 200px;
    /* 👈 غيّر الرقم حسب الارتفاع اللي تحبه */

}


body::-webkit-scrollbar {
    width: 8px
}

body::-webkit-scrollbar-track {
    background-color: transparent
}

body::-webkit-scrollbar-thumb {
    background-color: var(--lightHelper);
    background-image: linear-gradient(0deg, var(--lightHelper) 0%, var(--helperColor) 100%);
    border-radius: 5px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.5s;

}

ul {
    list-style: none;
}

.pricing-section {
    position: relative;
}

.pricing-section svg {
    position: absolute;
    right: 0;
    left: 0;
    height: 20px;
    width: 100%;
}
.pricing-container {
    max-width:1140px;
    margin:0 auto;
    padding:60px 20px;
  }
  .pricing-section-header {
    text-align:center;
    margin-bottom:40px;
  }
  .pricing-section-title {
      display: inline-block;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 30px;
      color: var(--helperColor);
      position: relative;
  }
  
  .pricing-section-title::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 5px;
      border-radius: 25px;
      bottom: -10%;
      left: 0;
      background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--primaryColor) 100%);
  
  }
  
  .pricing-section-title::before {
      content: "";
      position: absolute;
      width: 90%;
      height: 5px;
      border-radius: 25px;
      bottom: -25%;
      right: 0;
      background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--primaryColor) 100%);
  
  }
  
/* ===================================== */
.packageHolder {
    width: 33.33%;
    margin: 0 auto;
}
.package {
    border-radius: 15px;
    background-color: #F8F5FF;
    margin: 0 10px;
    box-shadow: 0 3px 6px rgba(0 0 0 / 20%);
    height: 100%;
    display: flex
;
    flex-direction: column;
    text-align: center !important;

}

.packageHeading {
    background-color: var(--primaryColor);
    border-radius: 15px 15px 0 0;
    color: var(--helperColor);
    padding: 20px 0 5px;
    margin-bottom: 15px
}


.packageHeading .title {
    font-size: 22px;
    font-weight: 600;
    padding: 0 15px;
    margin-bottom: 10px
}
.packageHeading .desc {
    padding: 0 15px
}

.package .priceHolder {
    padding: 20px 15px;
    background-color: var(--helperColor);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -10px 5px;
    position: relative;
    background-image: url(../images/pricing-bg.png);
    background-size: cover;
    background-position: center;
    border-radius: 5px 5px 0 0
}

.package .priceHolder:before,.package .priceHolder:after {
    content: '';
    bottom: -5px;
    width: 10px;
    height: 5px;
    position: absolute;
    background-color: var(--helperColor);
    z-index: 0
}

.package .priceHolder:before {
    left: 0;
    clip-path: polygon(0 0,100% 100%,100% 0)
}

.package .priceHolder:after {
    right: 0;
    clip-path: polygon(0 0,0 100%,100% 0)
}
.package .mainPrice {
    color: var(--white)
}

.package .salePrice {
    font-size: 22px
}

.package .period {
    color: var(--primaryColor);
    font-size: 13px
}

.packageFeatures {
    padding: 0 20px;
    margin-bottom: 15px;
    list-style: none;
    text-align: start;
    flex-grow: 1
}

.packageFeatures .feature {
    padding: 10px 0;
    border-bottom: 1px dashed var(--lightHelper);
    list-style: none;
    font-weight: 500;
    color: var(--helperColor)
}
.packageFeatures .feature:last-of-type {
    border-bottom: 0
}
.package .subscribe {
    display: block;
    text-align: center;
    padding: 10px 15px;
    background-color: var(--lightHelper);
    color: var(--white);
    border-radius: 0 0 15px 15px;
    font-weight: 500
}

  /* ===== بطاقات الأسعار ===== */
  .pricing-grid {
    display:flex;
    gap:10px;
  }


/* Phones */
@media (max-width: 576px) {
    .pricing-grid {
        display: flex;
        flex-direction: column;
    }
    .packageHolder {
        width: 100%;
    }
}
 