﻿.contact-section {
    margin-top: 5px;
    background-color: #f4f6f9;
}

/* HERO */
.contact-hero {
    background: #f4f6f9;
    padding: 100px 20px 80px;
    text-align: center;
}

    .contact-hero h1 {
        font-size: 42px;
        font-weight: 700;
    }

    .contact-hero p {
        max-width: 700px;
        margin: auto;
        font-size: 16px;
        color: #555;
    }

/* CONTENT */
.contact-container {
    padding: 80px 15px;
}

.contact-details p {
    font-size: 15px;
    line-height: 1.7;
}

.contact-details a {
    color: #c98127;
    text-decoration: none;
}

    .contact-details a:hover {
        text-decoration: underline;
    }

/* FORM */
.contact-form label {
    font-weight: 500;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 10px 14px;
}

    .contact-form .form-control:focus {
        border-color: #c98127;
        box-shadow: 0 0 0 0.15rem rgba(201, 129, 39, 0.2);
    }

.btn-submit {
    background: linear-gradient(135deg, #0b1e3c 0%, #132f63 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    padding: 10px 28px;
    float: right;
}

    .btn-submit:hover {
        background: linear-gradient(135deg, #b98f45, #8d6b3a);
    }

/* Responsive */
@media (max-width: 991px) {
    .contact-container {
        padding: 60px 15px;
    }
}

@media (max-width:768px) {
    .contact-hero {
        padding: 80px 15px;
    }

        .contact-hero h1 {
            font-size: 32px;
        }

        .contact-hero p {
            font-size: 14px;
        }

    .btn-submit {
        float: none;
        width: 100%;
    }
}

@media (max-width:480px) {
    .contact-hero h1 {
        font-size: 26px;
    }
}
