

.contact-container {
    padding: 80px 0;
    min-height: 100vh;
    /* background-color: #f8f9fa; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 60px;
}

.contact-info {
    padding-right: 40px;
}

.contact-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.address-text {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.contact-item .phone-number {
    color: #6c757d;
}

.email-link {
    color: #142044;
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    color: #323e61;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: white;
}

.social-icon.facebook { background-color: #142044; }
.social-icon.instagram { background-color: #142044; }
.social-icon.linkedin { background-color: #142044; }
.social-icon.whatsapp { background-color: #142044; }

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    border: none;
    border-bottom: 2px solid #e9ecef;
    border-radius: 0;
    padding: 15px 0;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #142044;
    box-shadow: none;
    background: transparent;
}

.form-control::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.form-control.message-input {
    min-height: 120px;
    resize: vertical;
}

.send-btn {
    background-color: #142044;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
}

.send-btn:hover {
    background-color: #323e61;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 40px 0;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .social-icons {
        justify-content: center;
    }
}