
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info-card h2 {
    color: var(--main-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-info-card > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    background: #f0f4f8;
    transform: translateX(-5px);
}

.contact-method i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1d2750 0%, #0066cc 50%, #1d2750 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method.whatsapp i {
    background: #25d366;
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-text span {
    font-size: 0.85rem;
    color: #666;
}

.method-text strong {
    font-size: 1rem;
    color: var(--main-color);
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-card h3 {
    color: var(--main-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-form-card > p {
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--main-color);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(4,138,227,0.15);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1d2750 0%, #0066cc 50%, #1d2750 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(4,138,227,0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(4,138,227,0.4);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
}