:root {
    --primary-color: #0056b3;
    --secondary-color: #003366;
    --accent-color: #ff9800;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--dark-color);
}

.page-header {
    background: var(--primary-color);
    padding: 40px 0;
    margin-bottom: 50px;
    color: white;
    background-image: linear-gradient(to right, rgba(0, 86, 179, 0.9), rgba(0, 51, 102, 0.8)),
    url('{{ asset('images/transfer-bg.jpg') }}');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    border-radius: 50% 50% 0 0;
}

.page-header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-header {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 30px 20px;
}

.card-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.card-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.card-body {
    padding: 40px;
    background: white;
}

.form-floating {
    margin-bottom: 20px;
}

.form-floating .form-control {
    height: 60px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 20px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.form-floating textarea.form-control {
    height: 150px;
    padding-top: 25px;
}

.form-floating label {
    padding: 15px;
    color: #6c757d;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.info-panel {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-info-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.contact-info-text h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.contact-info-text p {
    margin: 5px 0 0;
    color: #6c757d;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    flex: 1;
    min-width: calc(50% - 15px);
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
}

.card-footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.language-btn:hover, .language-btn.active {
    background: white;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .card-body {
        padding: 30px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .card-body {
        padding: 25px;
    }
    .page-header {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    .form-floating .form-control {
        height: 55px;
    }
    .feature-item {
        min-width: 100%;
    }
}

@media (max-width: 575px) {
    .card-body {
        padding: 20px;
    }
    .page-header h1 {
        font-size: 1.75rem;
    }
    .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
    .service-features {
        flex-direction: column;
    }
}