
/* Amplop Digital Section */
#amplop-digital {
    background-color: var(--color-main);
    padding: 5rem 0;
    color: #ffffff;
}

#amplop-digital .section-title {
    margin-bottom: 2.5rem;
}

#amplop-digital .section-title {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: "FogtwoNo5", cursive;
    letter-spacing: 1px;
}

#amplop-digital .lead p {
    font-size: 14px;
    color: var(--color-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
}

#toggleAmplop i {
    margin-right: 8px;
}

#amplopContent {
    display: none;
    color: #333;
    font-family: "Nunito Sans", sans-serif;
}

#amplopContent.show {
    display: flex;
    opacity: 1;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.bank-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: "Nunito Sans", sans-serif;
}

.bank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.bank-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-logo img {
    max-height: 20px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gift-icon {
    text-align: center;
    margin: 20px 0;
    color: var(--color-dark);
}

.account-info {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.account-info:hover {
    background: #f1f3f5;
    transform: translateY(-2px);
}

.account-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.5px;
}

.copy-btn {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    background: white;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background-color: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.copy-btn i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.delivery-address {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 3rem auto 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.delivery-address:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.delivery-address .icon {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.delivery-address h4 {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.delivery-address .address-details {
    text-align: left;
    color: #555;
    line-height: 1.8;
}

.delivery-address .address-details p {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.8rem;
}

.delivery-address .address-details p:before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 991px) {
    #amplop-digital {
        padding: 4rem 0;
    }
    
    .bank-card {
        margin-bottom: 2rem;
    }
    
    .delivery-address {
        padding: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    #amplop-digital .section-title h2 {
        font-size: 2rem;
    }
    
    .delivery-address {
        padding: 1.5rem;
    }
    
    .bank-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    #amplop-digital {
        padding: 3rem 0;
    }
    
    #amplop-digital .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .delivery-address {
        padding: 1.2rem;
    }
    
    .account-number {
        font-size: 1rem;
    }
}

#charCount {
    font-size: 10px;
    font-kerning: normal;
  }