.ad-card {

    height: 100%;

    background: rgba(12,12,12,.85);

    border: 1px solid rgba(210,243,65,.12);

    border-radius: 20px;

    overflow: hidden;

    backdrop-filter: blur(16px);

    transition: .3s;
}

.ad-card:hover {

    transform: translateY(-5px);

    border-color: rgba(210,243,65,.25);

    box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        0 0 20px rgba(210,243,65,.06);
}

/* تصویر */

.ad-card__image {

    position: relative;

    display: block;

    height: 140px;

    overflow: hidden;
}

.ad-card__image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .35s;
}

.ad-card:hover .ad-card__image img {

    transform: scale(1.05);
}

.ad-card__zoom {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(0,0,0,.45);

    opacity: 0;

    transition: .25s;
}

.ad-card:hover .ad-card__zoom {

    opacity: 1;
}

.ad-card__zoom i {

    color: white;

    font-size: 22px;
}

/* محتوا */

.ad-card__content {

    padding: 18px;
}

.ad-card__badge {

    display: inline-flex;

    align-items: center;

    padding: 5px 12px;

    border-radius: 999px;

    background: rgba(210,243,65,.08);

    border: 1px solid rgba(210,243,65,.15);

    color: #d2f341;

    font-size: 11px;

    font-weight: 700;
}

.ad-card__title {

    color: #fff;

    font-size: 20px;

    font-weight: 800;

    margin-top: 12px;

    margin-bottom: 14px;
}

/* متا */

.ad-card__meta {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 15px;
}

.ad-card__meta span {

    padding: 6px 10px;

    border-radius: 999px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.06);

    color: #d2f341;

    font-size: 11px;

    font-weight: 700;
}

/* توضیح */

.ad-card__desc {

    color: #bdbdbd;

    line-height: 1.8;

    font-size: 13px;

    margin-bottom: 15px;
}

/* ویژگی ها */

.ad-card__features {

    list-style: none;

    padding: 0;

    margin: 0 0 18px;
}

.ad-card__features li {

    color: #ddd;

    font-size: 13px;

    margin-bottom: 8px;

    padding-right: 16px;

    position: relative;
}

.ad-card__features li::before {

    content: '';

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #d2f341;

    position: absolute;

    right: 0;

    top: 8px;
}

/* دکمه */

.ad-card__btn {

    width: 100%;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #d2f341;

    color: #111;

    font-weight: 800;

    text-decoration: none;

    transition: .25s;
}

.ad-card__btn:hover {

    color: #111;

    transform: translateY(-2px);

    box-shadow:
        0 0 18px rgba(210,243,65,.25);
}

/* موبایل */

@media (max-width: 768px) {

    .ad-card__title {

        font-size: 18px;
    }

    .ad-card__image {

        height: 160px;
    }
}
.ad-request-card {

    max-width: 750px;

    margin: 0 auto;

    padding: 35px;

    border-radius: 24px;

    background: rgba(12,12,12,.88);

    border: 1px solid rgba(210,243,65,.12);

    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 35px rgba(0,0,0,.25),
        0 0 25px rgba(210,243,65,.04);
}

/* Header */

.ad-request-card__header {

    text-align: center;

    margin-bottom: 30px;
}

.ad-request-card__badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 6px 14px;

    border-radius: 999px;

    background: rgba(210,243,65,.08);

    border: 1px solid rgba(210,243,65,.15);

    color: #d2f341;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 15px;
}

.ad-request-card__header h3 {

    color: #fff;

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 10px;
}

.ad-request-card__header p {

    color: #9d9d9d;

    line-height: 2;

    margin: 0;
}

/* Form */

.ad-form-group {

    position: relative;

    margin-bottom: 22px;
}

.ad-form-group label {

    display: block;

    color: #ddd;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 10px;
}

.ad-form-control {

    width: 100%;

    height: 56px;

    border-radius: 14px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    color: #fff;

    padding: 0 18px;

    transition: .25s;

    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;
}

.ad-form-control:focus {

    outline: none;

    border-color: rgba(210,243,65,.35);

    box-shadow:
        0 0 0 4px rgba(210,243,65,.05);
}

/* Dropdown Options */

.ad-form-control option {

    background: #111111;

    color: #ffffff;
}

/* Select Arrow */

.ad-form-group select {

    padding-left: 45px;

    cursor: pointer;
}

.ad-form-group:has(select)::after {

    content: '\f078';

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    left: 18px;

    top: 48px;

    color: #d2f341;

    font-size: 12px;

    pointer-events: none;
}

/* Textarea */

.ad-form-control--textarea {

    height: auto;

    min-height: 140px;

    resize: vertical;

    padding: 15px 18px;
}

/* Submit Button */

.ad-request-btn {

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 14px;

    background: #d2f341;

    color: #111;

    font-weight: 800;

    font-size: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    transition: .25s;
}

.ad-request-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 0 20px rgba(210,243,65,.25);
}

/* Mobile */

@media (max-width:768px) {

    .ad-request-card {

        padding: 25px;
    }

    .ad-request-card__header h3 {

        font-size: 24px;
    }

}
.duration-discount-info {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin-top: 12px;
}

.discount-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(210,243,65,.08);

    border: 1px solid rgba(210,243,65,.15);

    color: #d2f341;

    font-size: 12px;

    font-weight: 700;
}

.discount-badge i {

    font-size: 11px;
}

.discount-badge--gold {

    background: rgba(255,193,7,.08);

    border-color: rgba(255,193,7,.15);

    color: #ffc107;
}
.faq-section-custom {

    position: relative;
}

.faq-wrapper {

    max-width: 900px;

    margin: 0 auto;
}

.faq-header {

    text-align: center;

    margin-bottom: 50px;
}

.faq-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 7px 16px;

    border-radius: 999px;

    background: rgba(210,243,65,.08);

    border: 1px solid rgba(210,243,65,.15);

    color: #d2f341;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 18px;
}

.faq-header h2 {

    color: #fff;

    font-size: 38px;

    font-weight: 800;

    margin-bottom: 15px;
}

.faq-header p {

    color: #9d9d9d;

    line-height: 2;

    max-width: 650px;

    margin: 0 auto;
}

/* FAQ List */

.faq-list {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.faq-item {

    background: rgba(12,12,12,.85);

    border: 1px solid rgba(210,243,65,.10);

    border-radius: 20px;

    overflow: hidden;

    backdrop-filter: blur(16px);

    transition: .3s;
}

.faq-item:hover {

    border-color: rgba(210,243,65,.20);
}

.faq-item.active {

    border-color: rgba(210,243,65,.25);

    box-shadow:
        0 0 25px rgba(210,243,65,.04);
}

.faq-question {

    width: 100%;

    border: none;

    background: transparent;

    padding: 22px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;
}

.faq-question__content {

    display: flex;

    align-items: center;

    gap: 15px;
}

.faq-question__content span {

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    text-align: right;
}

.faq-question__icon {

    width: 48px;

    height: 48px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(210,243,65,.08);

    border: 1px solid rgba(210,243,65,.15);

    color: #d2f341;

    font-size: 18px;
}

.faq-toggle {

    width: 38px;

    height: 38px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,.04);

    color: #d2f341;

    transition: .3s;
}

.faq-item.active .faq-toggle {

    transform: rotate(45deg);

    background: rgba(210,243,65,.08);
}

/* Answer */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: all .35s ease;
}

.faq-item.active .faq-answer {

    max-height: 250px;
}

.faq-answer p {

    padding: 0 22px 22px 85px;

    margin: 0;

    color: #bdbdbd;

    line-height: 2;

    font-size: 14px;
}

/* Mobile */

@media (max-width:768px){

    .faq-header h2 {

        font-size: 28px;
    }

    .faq-question {

        padding: 18px;
    }

    .faq-question__icon {

        width: 42px;

        height: 42px;
    }

    .faq-question__content span {

        font-size: 14px;
    }

    .faq-answer p {

        padding: 0 18px 18px 18px;
    }

}

.ads-login-state {

    text-align: center;

    padding: 25px 0 10px;
}

.ads-login-state__icon {

    width: 75px;

    height: 75px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: rgba(210,243,65,.08);

    border: 1px solid rgba(210,243,65,.15);

    color: #d2f341;

    font-size: 28px;
}

.ads-login-state h4 {

    color: #fff;

    font-size: 26px;

    font-weight: 800;

    margin-bottom: 12px;
}

.ads-login-state p {

    max-width: 550px;

    margin: 0 auto;

    color: #9f9f9f;

    line-height: 2;
}

.ads-login-state__actions {

    margin-top: 25px;

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.ads-login-state__btn {

    height: 50px;

    padding: 0 22px;

    border-radius: 14px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    font-weight: 700;

    transition: .25s;
}

.ads-login-state__btn--primary {

    background: #d2f341;

    color: #111;
}

.ads-login-state__btn--primary:hover {

    color: #111;

    transform: translateY(-2px);

    box-shadow: 0 0 18px rgba(210,243,65,.25);
}

.ads-login-state__btn--secondary {

    border: 1px solid rgba(210,243,65,.15);

    background: rgba(255,255,255,.03);

    color: #fff;
}

.ads-login-state__btn--secondary:hover {

    color: #d2f341;

    border-color: rgba(210,243,65,.35);

    transform: translateY(-2px);
}

@media(max-width:768px){

    .ads-login-state__actions{

        flex-direction: column;
    }

    .ads-login-state__btn{

        width: 100%;
        justify-content: center;
    }

}

.ads-benefits-section{
    position:relative;
}

.ads-benefits__badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(210,243,65,.08);
    border:1px solid rgba(210,243,65,.25);
    color:#d2f341;
    font-size:14px;
    margin-bottom:18px;
}

.ads-benefits-section h2{
    color:#fff;
    font-size:54px;
    margin-bottom:15px;
}

.ads-benefits-section p{
    color:#bdbdbd;
}

.ads-benefit-card{
    position:relative;
    height:100%;
    overflow:hidden;
    padding:35px 25px;
    border-radius:24px;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.02),
        rgba(210,243,65,.03)
    );

    border:1px solid rgba(210,243,65,.15);

    transition:.4s;
}

.ads-benefit-card::before{
    content:'';
    position:absolute;
    top:-120%;
    left:-40%;
    width:60%;
    height:300%;

    background:linear-gradient(
        transparent,
        rgba(210,243,65,.08),
        transparent
    );

    transform:rotate(25deg);

    transition:.8s;
}

.ads-benefit-card:hover::before{
    left:120%;
}

.ads-benefit-card:hover{
    transform:translateY(-10px);
    border-color:#d2f341;
    box-shadow:
    0 15px 40px rgba(210,243,65,.12);
}

.ads-benefit-card__icon{
    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:rgba(210,243,65,.08);

    margin-bottom:25px;

    font-size:32px;

    color:#d2f341;

    transition:.4s;
}

.ads-benefit-card:hover .ads-benefit-card__icon{
    transform:scale(1.08);
    box-shadow:0 0 25px rgba(210,243,65,.25);
}

.ads-benefit-card h4{
    color:#fff;
    margin-bottom:14px;
    font-size:24px;
}

.ads-benefit-card p{
    color:#bdbdbd;
    line-height:2;
    margin:0;
}

@media(max-width:991px){

    .ads-benefits-section h2{
        font-size:38px;
    }

}

@media(max-width:576px){

    .ads-benefits-section h2{
        font-size:30px;
    }

    .ads-benefit-card{
        padding:25px 20px;
    }

}

.ads-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.ads-section-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    background: rgba(210, 243, 65, 0.08);

    border: 1px solid rgba(210, 243, 65, 0.25);

    border-radius: 999px;

    color: #d2f341;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 20px;

    backdrop-filter: blur(10px);
}

.ads-section-header__badge i {
    font-size: 13px;
}

.ads-section-header__title {
    font-size: clamp(32px, 5vw, 56px);

    font-weight: 900;

    line-height: 1.3;

    color: #fff;

    margin-bottom: 18px;
}

.ads-section-header__description {
    font-size: 16px;

    line-height: 2;

    color: rgba(255,255,255,.72);

    max-width: 750px;

    margin: 0 auto;
}

/*==========================
    Empty Advertisement Plans
==========================*/

.empty-plan-box{

    position:relative;

    overflow:hidden;

    padding:45px 35px;

    text-align:center;

    border-radius:22px;

    background:linear-gradient(145deg,#131d10,#1d2918);

    border:1px solid rgba(210,243,65,.18);

    box-shadow:
    0 15px 35px rgba(0,0,0,.30);

}

.empty-plan-box::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:rgba(210,243,65,.05);

    border-radius:50%;

    top:-120px;
    left:-120px;

}

.empty-plan-icon{

    width:78px;
    height:78px;

    margin:0 auto 22px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#d2f341,#b7dc22);

    color:#172100;

    font-size:30px;

    box-shadow:
    0 10px 25px rgba(210,243,65,.25);

}

.empty-plan-box h3{

    color:#ffffff;

    font-size:24px;

    font-weight:800;

    margin-bottom:14px;

}

.empty-plan-box p{

    max-width:520px;

    margin:auto;

    color:#bfc8b5;

    line-height:2;

    font-size:15px;

}

/*==========================
    Responsive
==========================*/

@media(max-width:768px){

.empty-plan-box{

    padding:35px 22px;

}

.empty-plan-icon{

    width:65px;
    height:65px;

    font-size:24px;

}

.empty-plan-box h3{

    font-size:20px;

}

.empty-plan-box p{

    font-size:14px;

    line-height:1.9;

}

}