/* =============== BANK TRANSFER PAGE =============== */

/* Hero Section */
.bank-transfer-hero {
    background: linear-gradient(135deg, #2E3192 0%, #29B6E6 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.bank-transfer-hero__wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.bank-transfer-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.bank-transfer-hero__underline {
    display: block;
    width: 80px;
    height: 4px;
    background: #fff;
    margin: 20px auto 0;
}

/* Main Content Section */
.bank-transfer-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.bank-transfer-intro {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 50px;
}

/* Country Section */
.country-section {
    margin-bottom: 50px;
}

.country-title {
    font-size: 24px;
    font-weight: 700;
    color: #2E3192;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #2E3192;
    text-transform: uppercase;
}

/* Bank Cards */
.bank-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.bank-card {
    background: #fff;
    border: 2px solid #29B6E6;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: auto;
}

.bank-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Bank Card Header (Button) */
.bank-card__header {
    width: 100%;
    padding: 20px 24px;
    background: #29B6E6;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    text-align: left;
}

.bank-card__header:hover {
    background: #1fa3cc;
}

.bank-card__header.active {
    background: #1fa3cc;
}

.bank-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.bank-card__icon {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.bank-card__header.active .bank-card__icon {
    transform: rotate(45deg);
}

/* Bank Card Content (Collapsible) */
.bank-card__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.bank-card__content>* {
    padding: 24px;
}

.bank-card__subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 0 24px;
    padding-top: 20px;
}

/* Bank Details */
.bank-details {
    padding: 0 24px 24px;
}

.bank-details p {
    margin: 8px 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.bank-details strong {
    font-weight: 700;
    color: #2E3192;
}

/* Footer Section */
.bank-transfer-footer {
    margin-top: 60px;
    padding: 50px 80px;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border-top: 2px solid #2E3192;
    border-bottom: 2px solid #2E3192;
}

.bank-transfer-footer p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.thank-you-text {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px !important;
    text-align: center;
}

.memorial-text {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #2E3192;
    text-align: center;
    font-size: 16px;
    color: #333;
}

/* Email Section */
.email-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #2E3192;
}

.email-section p {
    text-align: center;
    margin-bottom: 20px;
}

.email-section p strong {
    font-size: 16px;
    color: #000;
    font-weight: 700;
}

.email-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.email-list li {
    padding: 0;
}

.email-list a {
    color: #29B6E6;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-block;
}

.email-list a:hover {
    color: #1fa3cc;
    text-decoration: underline;
}

.email-list a::before {
    content: "✉ ";
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bank-transfer-hero {
        padding: 60px 0;
    }

    .bank-transfer-hero__title {
        font-size: 32px;
    }

    .bank-transfer-content {
        padding: 40px 0;
    }

    .bank-transfer-intro {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .country-title {
        font-size: 20px;
    }

    .bank-cards {
        grid-template-columns: 1fr;
    }

    .bank-card__header {
        padding: 16px 20px;
    }

    .bank-card__title {
        font-size: 14px;
    }

    .bank-card__icon {
        font-size: 24px;
        min-width: 24px;
    }

    .bank-details p {
        font-size: 14px;
    }

    .bank-transfer-footer {
        padding: 40px 30px;
    }

    .thank-you-text {
        font-size: 18px;
    }

    .bank-transfer-footer p {
        font-size: 15px;
    }

    .email-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bank-transfer-hero__title {
        font-size: 28px;
    }

    .bank-transfer-intro {
        font-size: 16px;
    }

    .country-title {
        font-size: 18px;
    }

    .bank-card__header {
        padding: 14px 16px;
    }

    .bank-card__title {
        font-size: 13px;
    }

    .bank-card__subtitle,
    .bank-details p {
        font-size: 13px;
    }

    .bank-transfer-footer {
        padding: 30px 20px;
    }

    .thank-you-text {
        font-size: 16px;
    }

    .bank-transfer-footer p {
        font-size: 14px;
    }
}