
.agent-club-page {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

    .agent-club-page .page-body {
        padding: 0;
    }

/* Hero Section */

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    text-align: right;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    text-align: center;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

.btn-register {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .btn-register:hover {
        background-color: #45a049;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(76, 175, 80, 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: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

/* Membership Benefits Section */
.membership-benefits {
    background-color: #ffffff;
    padding: 80px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-5px);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f9ff;
    border-radius: 50%;
}

    .benefit-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Required Information Section */
.required-info {
    padding: 80px 20px;
    background-color: white;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

    .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: #e3f2fd;
    }

    .info-icon.store {
        background-color: #f3e5f5;
    }

    .info-icon.bank {
        background-color: #fff3e0;
    }

    .info-icon.other {
        background-color: #e8f5e9;
    }

    .info-icon img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.info-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.register-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Sold Refrigerators Section */
.sold-refrigerators-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.sold-refrigerators-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.registration-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

.form-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-align: right;
}

.form-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    text-align: right;
}

.form-image-wrapper {
    margin-bottom: 30px;
    text-align: center;
}

    .form-image-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-field label {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        text-align: right;
    }

    .form-field input {
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        direction: rtl;
    }

        .form-field input:focus {
            outline: none;
            border-color: #2196F3;
            box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
        }

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-cancel {
    padding: 12px 30px;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-cancel:hover {
        background-color: #e0e0e0;
    }

.btn-submit {
    padding: 12px 30px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background-color: #1976D2;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
    }

.sold-refrigerators-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

.sold-refrigerators-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: right;
}

.sold-refrigerators-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    text-align: right;
}

.slider-wrapper {
    margin-top: 30px;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.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: 1200px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@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;
    }

    .sold-refrigerators-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .agent-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;
    }

    .registration-form-card,
    .sold-refrigerators-info {
        padding: 25px 20px;
    }

    .form-title,
    .sold-refrigerators-title {
        font-size: 1.5rem;
    }
}

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;
}

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-bg-opacity: 1;
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:;
    --tw-pan-y:;
    --tw-pinch-zoom:;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:;
    --tw-gradient-via-position:;
    --tw-gradient-to-position:;
    --tw-ordinal:;
    --tw-slashed-zero:;
    --tw-numeric-figure:;
    --tw-numeric-spacing:;
    --tw-numeric-fraction:;
    --tw-ring-inset:;
    --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;
    --tw-blur:;
    --tw-brightness:;
    --tw-contrast:;
    --tw-grayscale:;
    --tw-hue-rotate:;
    --tw-invert:;
    --tw-saturate:;
    --tw-sepia:;
    --tw-drop-shadow:;
    --tw-backdrop-blur:;
    --tw-backdrop-brightness:;
    --tw-backdrop-contrast:;
    --tw-backdrop-grayscale:;
    --tw-backdrop-hue-rotate:;
    --tw-backdrop-invert:;
    --tw-backdrop-opacity:;
    --tw-backdrop-saturate:;
    --tw-backdrop-sepia:;
    --tw-contain-size:;
    --tw-contain-layout:;
    --tw-contain-paint:;
    --tw-contain-style:;
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
    margin-bottom: -2.5rem;
    overflow-y: hidden;
    margin-right: 0;
    margin-top: 8rem;
    display: grid;
    width: 50%;
    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;
}

.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;
}

.benefit-icon {
    margin: 0 auto;
}

.benefit-card {
    padding: 25px;
    border: none;
}