/* Customer Club Page Styles */
.customer-club-page {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

    .customer-club-page .page-body {
        padding: 0;
    }

/* Hero Section */
.customer-club-hero {
    background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
    padding: 80px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: right;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-image {
    text-align: center;
    position: relative;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    }

.btn-register {
    display: inline-block;
    padding: 14px 32px;
    background-color: #10B981;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

    .btn-register:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 60px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.membership-benefits .section-title {
    color: white;
}

.membership-benefits .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Membership Benefits Section */
.membership-benefits {
    background-color: #1E293B;
    padding: 80px 20px;
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #4F46E5;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0;
}

    .benefit-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

        .benefit-icon img[src$=".svg"] {
            width: 100%;
            height: 100%;
        }

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* Required Information Section */
.required-info {
    padding: 80px 20px;
    background-color: #F8FAFC;
}

    .required-info .section-title {
        color: #1E293B;
    }

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .info-card:hover {
        transform: translateY(-5px);
    }

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .info-icon.personal {
        background-color: #ECFDF5;
    }

    .info-icon.bank {
        background-color: #FEF3C7;
    }

    .info-icon.other {
        background-color: #ECFDF5;
    }

    .info-icon img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

        .info-icon img[src$=".svg"] {
            width: 100%;
            height: 100%;
        }

.hero-image img[src$=".svg"] {
    max-width: 100%;
    height: auto;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 15px;
}

.info-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

.register-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Slider Section */
.customer-club-slider {
    padding: 60px 20px;
    background-color: white;
}

    .customer-club-slider .section-title {
        color: #1E293B;
    }

.slider-wrapper {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .customer-club-hero {
        padding: 40px 20px;
    }

    section {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .benefit-card,
    .info-card {
        padding: 20px 15px;
    }
}




a.btn-register {
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
    text-decoration: inherit;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
    display: flex;
    height: 3rem;
    cursor: pointer;
    user-select: none;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: .75rem;
    background-color: rgb(72 199 244/var(--tw-bg-opacity,1));
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255);
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4875rem;
    width: 14.5rem;
}

section.customer-club-hero {
    background: none;
    color: #4d4d4f !important;
    padding-top: 0;
}

h1.hero-title {
    color: #4d4d4f !important;
}

.hero-text p, .hero-text h1, .hero-text span {
    color: #4d4d4f !important;
}



section.membership-benefits {
    background-color: #3b3b52;
}

    section.membership-benefits * {
        color: white !important;
        /* font-size: medium; */
    }

.benefit-card {
    background: #48c7f4;
}

.benefit-icon {
    background: #48c7f4;
}

.benefits-grid {
    --toast-icon-margin-start: 4px;
    --toast-icon-margin-end: -3px;
    --toast-svg-margin-start: 0px;
    --toast-svg-margin-end: -1px;
    --toast-button-margin-start: 0;
    --toast-button-margin-end: auto;
    --toast-close-button-start: unset;
    --toast-close-button-end: 0;
    --toast-close-button-transform: translate(35%, -35%);
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--font-poppins),var(--font-iran-yekan),ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
    --header-height-desktop: 5rem;
    --header-height-mobile: 3.75rem;
    --footer-outside-rounded: 3.75rem;
    --menu-mobile-height: 3.5rem;
    --font-poppins: "Poppins";
    --font-iran-yekan: "iranYekan";
    line-height: inherit;
    --tw-text-opacity: 1;
    color: rgb(77 77 79/var(--tw-text-opacity,1));
    --tw-scroll-snap-strictness: proximity;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59,130,246,.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
    margin-bottom: -2.5rem;
    overflow-y: hidden;
    margin-right: 0;
    margin-top: 8rem;
    display: grid;
    width: 60%;
    max-width: 100%;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1.5rem;
    overflow-x: hidden; /* min-width: 750px; */
}

section.membership-benefits .section-title, section.membership-benefits .section-subtitle {
    float: right;
    clear: right;
}

section.membership-benefits .section-title {
    font-size: 21pt;
    clear: both;
}

section.membership-benefits .section-subtitle {
    font-size: 15px;
    margin-left: 90px;
}

.master-wrapper-content {
    padding: 0 !important;
}

.master-column-wrapper {
    max-width: 100%;
}

.container {
    max-width: 1500px;
}

.info-card {
    background: white;
}

.required-info {
    background: #ededed;
}

.agent-club-hero {
    background: none;
    padding-top: 0 !important;
}

.hero-content {
    max-width: 1500px;
}

.benefit-icon {
    margin: 0 auto;
}

.benefit-card {
    padding: 25px;
    border: none;
}

.register-button-wrapper a.btn-register {
    float: none;
    margin: auto;
}

section.cta-section {
    background: #fff;
}

.cta-section .container {
    background: url(/Plugins/Nop.Plugin.Rahkaran/Content/images/Club-Register-bg.png);
    background-size: cover;
    min-height: 250px;
    padding-top: 40px;
    border-radius: 15px;
    padding-bottom: 10px;
}

.cta-section a.btn-register {
    background: #fff;
    color: black;
    margin: auto;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
}

.cta-title {
    font-size: 2.1rem;
}
