.remittance-header,
.service-card {
    position: relative;
    overflow: hidden;
}

.features-section,
.intro-card,
.service-card {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.remittance-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0, #fff 100%);
}

.remittance-header {
    background: linear-gradient(135deg, var(--secondary-color) 0, #1a2540 100%);
    padding: 15px 0;
    margin-bottom: 40px;
}

.remittance-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: url('assets/images/shape/shape-17.png') center/contain no-repeat;
    opacity: .05;
    transform: rotate(15deg);
}

.remittance-header h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
}

.remittance-header p {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    max-width: 800px;
}

.intro-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    border-left: 5px solid var(--theme-color);
}

.intro-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
    text-align: justify;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keeps content aligned to the top */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(180deg, var(--theme-color) 0, var(--secondary-color) 100%);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, .12);
}

.service-card:hover::before {
    width: 100%;
    opacity: .05;
}

/* Wrapper for Icon + Title */
.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    width: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-color) 0, #c41e21 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0; /* Removed old margin */
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0; /* Removed old margin */
    color: var(--title-color);
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: justify;
    /* IMPORTANT: Do NOT add flex: 1 here, otherwise it pushes the tags down */
}

.currency-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0; /* Removed margin-top: auto to prevent pushing to bottom */
}

.currency-tag {
    background: linear-gradient(135deg, var(--secondary-color) 0, #1a2540 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
}

.features-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
}

.features-section h3 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: var(--title-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--title-color);
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width:768px) {
    .remittance-header h1 {
        font-size: 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .features-section,
    .intro-card,
    .service-card {
        padding: 25px;
    }
    .service-header {
        gap: 12px;
    }
    .service-icon {
        width: 50px;
        height: 50px;
    }
    .service-icon i {
        font-size: 24px;
    }
    .service-card h3 {
        font-size: 20px;
    }
}
/* === Forms Page Title Backgrounds === */
#tf-page-title .bg-layer {
    background-image: url(../images/background/innerbanner07.webp);
}
#tf-page-title .pattern-1 {
    background-image: url(../images/shape/shape-18.png);
}
#tf-page-title .pattern-2 {
    background-image: url(../images/shape/shape-17.png);
}