/* Agency Partnership Page */
.page--agency {
    background: #fff;
}

/* Hero/About Section */
.agency-hero {
    padding: 60px 20px 50px;
    background: #fff;
}

.agency-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.agency-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.agency-hero__info {
    padding-right: 20px;
}

.agency-info__title {
    font-size: 16px;
    font-weight: 700;
    color: #e91b5b;
    margin: 0 0 12px;
}

.agency-hero__info p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 20px;
}

.agency-info__highlight {
    color: #0891b2 !important;
    font-weight: 500;
}

/* Stats Grid */
.agency-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #e91b5b;
    box-shadow: 0 4px 20px rgba(233, 27, 91, 0.1);
}

.stat-box__number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #e91b5b;
    letter-spacing: -0.02em;
}

.stat-box__label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

/* CTA Button */
.agency-hero__cta {
    text-align: center;
    margin-top: 50px;
}

.agency-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: linear-gradient(135deg, #e91b5b 0%, #ff1e62 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(233, 27, 91, 0.3);
    border: none;
    cursor: pointer;
}

.agency-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 27, 91, 0.4);
}

/* Benefits Section */
.agency-benefits {
    padding: 80px 20px;
    background: #f8fafc;
}

.agency-benefits__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.agency-benefits__title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 50px;
    text-align: center;
}

.agency-benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.agency-benefits__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #0f172a;
}

.benefit-item i {
    color: #e91b5b;
    font-size: 14px;
    flex-shrink: 0;
}

/* World Map */
.agency-benefits__map {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-map {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.map-land {
    fill: #cbd5e1;
    stroke: #94a3b8;
    stroke-width: 1;
}

.map-pin {
    animation: pulse 2s ease-in-out infinite;
}

.map-pin:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Partner Types Section */
.agency-partners {
    padding: 60px 20px 80px;
    background: #fff;
}

.agency-partners__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.agency-partners__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
}

.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.partner-card:hover img {
    transform: scale(1.05);
}

.partner-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.partner-card__overlay h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* For You Section */
.agency-foryou {
    padding: 80px 20px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.agency-foryou__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.agency-foryou__title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.agency-foryou__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.foryou-card {
    text-align: center;
}

.foryou-card__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 20px;
}

.foryou-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foryou-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 40px 16px 16px;
}

.foryou-card__desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #f8fafc;
}

.faq__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.faq__title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 50px;
    text-align: center;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
}

.faq__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e91b5b;
    box-shadow: 0 4px 16px rgba(233, 27, 91, 0.08);
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-item__question {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}

.faq-item__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    background: #e91b5b;
    transition: transform 0.3s ease;
}

.faq-item__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-item__icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item__trigger[aria-expanded="true"] + .faq-item__content {
    grid-template-rows: 1fr;
}

.faq-item__body {
    overflow: hidden;
    padding: 0 24px;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    opacity: 0;
    transition: opacity 0.3s ease, padding 0.3s ease;
}

.faq-item__trigger[aria-expanded="true"] + .faq-item__content .faq-item__body {
    padding: 0 24px 20px;
    opacity: 1;
}

/* Back Section */
.agency-back {
    padding: 40px 20px 60px;
    background: #fff;
}

.agency-back__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #e91b5b 0%, #ff1e62 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(233, 27, 91, 0.3);
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 27, 91, 0.4);
}

.btn-back i {
    transition: transform 0.2s ease;
}

.btn-back:hover i {
    transform: translateX(-3px);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for FAQ items */
.faq__column:first-child .faq-item.reveal:nth-child(1) { transition-delay: 0s; }
.faq__column:first-child .faq-item.reveal:nth-child(2) { transition-delay: 0.1s; }
.faq__column:first-child .faq-item.reveal:nth-child(3) { transition-delay: 0.2s; }
.faq__column:first-child .faq-item.reveal:nth-child(4) { transition-delay: 0.3s; }
.faq__column:first-child .faq-item.reveal:nth-child(5) { transition-delay: 0.4s; }
.faq__column:last-child .faq-item.reveal:nth-child(1) { transition-delay: 0.05s; }
.faq__column:last-child .faq-item.reveal:nth-child(2) { transition-delay: 0.15s; }
.faq__column:last-child .faq-item.reveal:nth-child(3) { transition-delay: 0.25s; }
.faq__column:last-child .faq-item.reveal:nth-child(4) { transition-delay: 0.35s; }
.faq__column:last-child .faq-item.reveal:nth-child(5) { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 1024px) {
    .agency-hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .agency-hero__info {
        padding-right: 0;
    }

    .agency-hero__stats {
        max-width: 500px;
        margin: 0 auto;
    }

    .agency-benefits__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .agency-benefits__map {
        order: -1;
    }

    .agency-partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agency-foryou__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .agency-hero {
        padding: 40px 20px;
    }

    .agency-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box__number {
        font-size: 26px;
    }

    .agency-benefits {
        padding: 60px 20px;
    }

    .agency-benefits__title {
        font-size: 26px;
    }

    .agency-partners {
        padding: 40px 20px 60px;
    }

    .agency-partners__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .agency-foryou {
        padding: 60px 20px;
    }

    .agency-foryou__title {
        font-size: 22px;
    }

    .agency-foryou__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .faq {
        padding: 60px 20px;
    }

    .faq__title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .faq__grid {
        grid-template-columns: 1fr;
    }

    .faq-item__trigger {
        padding: 16px 20px;
    }

    .faq-item__question {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .agency-hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-box {
        padding: 20px 16px;
    }

    .stat-box__number {
        font-size: 24px;
    }

    .agency-cta-btn {
        width: 100%;
    }

    .btn-back {
        width: 100%;
        justify-content: center;
    }
}

/* Agency Registration Modal */
.register-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.register-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.register-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.register-modal__container {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 24px 32px;
    max-width: 680px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.25s ease;
}

.register-modal.is-open .register-modal__container {
    transform: scale(1) translateY(0);
}

.register-modal__title {
    font-size: 22px;
    font-weight: 700;
    color: #e91b5b;
    margin: 0 0 16px;
    text-align: center;
}

.register-modal__form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.register-modal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.register-modal__group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.register-modal__label {
    font-size: 12px;
    font-weight: 500;
    color: #475569;
}

.register-modal__input {
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.2s ease;
    background: #fff;
}

.register-modal__input:focus {
    outline: none;
    border-color: #e91b5b;
    box-shadow: 0 0 0 3px rgba(233, 27, 91, 0.1);
}

.register-modal__input--error {
    border-color: #ef4444;
    background: #fef2f2;
}

.register-modal__input--error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.register-modal__error {
    font-size: 11px;
    color: #ef4444;
    min-height: 14px;
}

.register-modal__terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.register-modal__recaptcha {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.register-modal__terms input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: #e91b5b;
}

.register-modal__terms-text {
    font-size: 12px;
    color: #64748b;
}

.register-modal__terms-link {
    color: #e91b5b;
    text-decoration: underline;
}

.register-modal__message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.register-modal__message:not(:empty) {
    display: block;
}

.register-modal__message--success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.register-modal__message--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.register-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 12px;
}

.register-modal__btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.register-modal__btn--cancel {
    background: transparent;
    border: 1px solid #e91b5b;
    color: #e91b5b;
}

.register-modal__btn--cancel:hover {
    background: linear-gradient(135deg, #e91b5b 0%, #ff1e62 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 27, 91, 0.4);
}

.register-modal__btn--submit {
    background: transparent;
    border: 1px solid #e91b5b;
    color: #e91b5b;
}

.register-modal__btn--submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #e91b5b 0%, #ff1e62 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 27, 91, 0.4);
}

.register-modal__btn--submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .register-modal__container {
        padding: 24px 20px;
        width: 95%;
    }

    .register-modal__row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .register-modal__group[style*="max-width"] {
        max-width: 100% !important;
    }

    .register-modal__actions {
        flex-direction: column-reverse;
    }

    .register-modal__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.success-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.success-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.success-modal__container {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.25s ease;
}

.success-modal.is-open .success-modal__container {
    transform: scale(1) translateY(0);
}

.success-modal__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.success-modal__icon i {
    font-size: 40px;
    color: #fff;
}

.success-modal__title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
}

.success-modal__text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 32px;
}

.success-modal__actions {
    display: flex;
    justify-content: center;
}

.success-modal__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #e91b5b 0%, #ff1e62 100%);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(233, 27, 91, 0.3);
}

.success-modal__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 27, 91, 0.4);
}

.success-modal__btn i {
    font-size: 16px;
}

@media (max-width: 480px) {
    .success-modal__container {
        padding: 40px 24px;
    }
    
    .success-modal__icon {
        width: 70px;
        height: 70px;
    }
    
    .success-modal__icon i {
        font-size: 32px;
    }
    
    .success-modal__title {
        font-size: 22px;
    }
    
    .success-modal__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Login Modal */
.login-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.login-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.login-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.login-modal__container {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.25s ease;
}

.login-modal.is-open .login-modal__container {
    transform: scale(1) translateY(0);
}

.login-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.login-modal__close:hover {
    background: #e2e8f0;
}

.login-modal__close i {
    font-size: 16px;
    color: #64748b;
}

.login-modal__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-modal__icon i {
    font-size: 28px;
    color: #e91b5b;
}

.login-modal__title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
}

.login-modal__subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 28px;
}

.login-modal__form {
    text-align: left;
}

.login-modal__group {
    margin-bottom: 20px;
}

.login-modal__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.login-modal__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-modal__input-wrapper > i:first-child {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 15px;
}

.login-modal__input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #fff;
}

.login-modal__input:focus {
    outline: none;
    border-color: #e91b5b;
    box-shadow: 0 0 0 3px rgba(233, 27, 91, 0.1);
}

.login-modal__toggle-password {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.login-modal__toggle-password:hover {
    color: #64748b;
}

.login-modal__message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 16px;
    display: none;
}

.login-modal__message:not(:empty) {
    display: block;
}

.login-modal__message--success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.login-modal__message--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.login-modal__btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #e91b5b 0%, #ff1e62 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(233, 27, 91, 0.3);
}

.login-modal__btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 27, 91, 0.4);
}

.login-modal__btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-modal__forgot {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    color: #e91b5b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.login-modal__forgot:hover {
    color: #be185d;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-modal__container {
        padding: 32px 24px;
    }
    
    .login-modal__icon {
        width: 60px;
        height: 60px;
    }
    
    .login-modal__icon i {
        font-size: 24px;
    }
    
    .login-modal__title {
        font-size: 20px;
    }
}

