.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-form {
    background: var(--hoppa-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--hoppa-green);
    box-shadow: none;
}

.btn-contact {
    background: var(--hoppa-green);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    box-shadow: 0 6px 14px rgba(255, 54, 4, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-contact:hover {
    background: var(--brand-orange-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(255, 54, 4, 0.3);
}

.btn-contact:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(255, 54, 4, 0.2);
}

.contact-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.contact-info h2 {
    margin-bottom: 40px;
    color: var(--hoppa-green);
    font-weight: 600;
}

.contact-info .row {
    width: 100%;
    max-width: 600px;
}

.contact-info-item {
    margin-bottom: 40px;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.contact-info-item i {
    color: var(--hoppa-green);
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.contact-info-item h5 {
    color: var(--hoppa-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
} 