/* Header Section */
.contact-header {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.contact-header img.contact-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-header h1 {
    font-size: 35px;
    font-weight: bold;
    margin: 0 6%;
    color: #fff;
    z-index: 2;
    position: relative;
}

/* Wrapper */
.two-column-wrapper {
    margin: 50px 6%;
}

.section-heading {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

.section-heading::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: green;
    margin-top: 10px;
    border-radius: 2px;
}

/* Main Grid Layout */
.two-column-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Columns */
.form-column,
.map-column,
.address-column,
.sales-column {
    min-width: 300px;
}

/* Form */
.form-column p {
    font-size: 16px;
    margin-bottom: 7%;
    font-family: Garamond, 'Times New Roman', serif;
}

.interest-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interest-form input,
.interest-form textarea,
.interest-form select {
    color: #777777;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.interest-form textarea {
    min-height: 120px;
}

.interest-form button {
    padding: 12px;
    background-color: #006605;
    color: white;
    border: none;
    width: 25%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.btn-text{
    color: #FFFFFF;
}

.interest-form button:hover {
    background-color: #006605cf;
}

/* Map Styling */
.map_style iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 0;
}

/* Grid Boxes */
.dual-box {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.grid-box {
    padding: 10px 0;
    text-align: left;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    box-sizing: border-box;
}

.grid-title {
    color: #333333;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.grid-subtitle {
    font-size: 16px;
}

.grid-content {
      font-size: 16px;
      line-height: 1.6;
}

.grid-content a {
    color: #006605;
    text-decoration: none;
}

.grid-content a:hover {
    text-decoration: underline;
}

.highlight-green {
    color: green;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .dual-box {
        flex-direction: column;
        gap: 0;
    }
    
    .form-column,
    .map-column,
    .address-column{
        padding: 10px 0;
    }
    
    .interest-form button {
        width: 100%;
    }
}

.map_style {
    height: 100%;
}

.sales_office{
    color: #333333;
}

.btn-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #fff;
    border-top: 2px solid #999;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}