/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Contact Section Styling */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--blast-bgcolor, #ec5313);
    font-size: 1.2rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px; /* Add spacing between form columns */
    align-items: flex-end; /* Align items at the bottom */
    margin-bottom: 15px; /* Add spacing between rows */
}

.form-column {
    position: relative;
    width: 100%;
    flex: 1; /* Ensure each column takes equal space */
}

.form-column label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-column input[type="text"],
.form-column input[type="email"],
.form-column input[type="tel"],
.form-column select,
.message-field textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid var(--blast-bgcolor, #ec5313); /* Orange bottom border */
    outline: none;
    transition: border-color 0.2s ease-in-out;
    height: 48px; /* Explicitly set height for consistency */
}

.form-column input[type="text"]:focus,
.form-column input[type="email"]:focus,
.form-column input[type="tel"]:focus,
.form-column select:focus,
.message-field textarea:focus {
    border-bottom-color: var(--blast-bgcolor, #ec5313); /* Highlight on focus */
}

.message-field textarea {
    resize: none; /* Disable resizing */
    overflow-y: hidden; /* Hide scrollbar since resizing is disabled */
}

.submit-button {
    flex-shrink: 0; /* Prevent the button from shrinking */
    text-align: right; /* Align the submit button to the right */
}

.submit-button input[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--blast-bgcolor, #ec5313);
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    min-height: 40px;
}

.submit-button input[type="submit"]:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        gap: 10px; /* Reduce spacing on smaller screens */
    }

    .form-column {
        flex: 1 1 100%; /* Ensure full width on smaller screens */
    }

    .submit-button {
        text-align: center; /* Center the submit button */
    }
}