/* Contact Page Styles */

.t1-contact-page {
    padding: 120px 0 80px; /* Adjust top padding for fixed navbar */
    min-height: 80vh;
    display: flex;
    justify-content: center;
}

.t1-contact-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 40px;
    text-align: left;
    color: var(--t1-color-black);
}

.t1-contact-form {
    max-width: 800px;
    width: 100%;
}

.t1-form-grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 15px;
    margin-bottom: 25px;
}

.t1-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.t1-form-group-full {
    grid-column: 1 / -1; /* Although current grid is inside a div, if we move message inside grid it will span. Currently message is outside grid div, so this class is for spacing logic if structure changes, or just general full width styling */
    width: 100%;
    margin-bottom: 25px;
}

.t1-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--t1-color-dark);
}

.t1-contact-input,
.t1-contact-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--t1-border-color);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--t1-color-black);
    background-color: var(--t1-color-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.t1-contact-input:focus,
.t1-contact-textarea:focus {
    border-color: var(--t1-color-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.t1-contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.t1-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #000;
    cursor: pointer;
    width: auto; /* Overriding previous full width if set, spec implies inline-flex sizing */
    justify-content: center; /* Ensure text is centered if width expands */
}

.t1-contact-btn:hover {
    background: none;
    color: rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
    transform: none; /* Removing previous transform */
    box-shadow: none; /* Removing previous box-shadow */
}

.t1-contact-btn:active {
    transform: none;
}

/* Form Error Styles */
.t1-form-error {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 4px;
}

.t1-form-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .t1-contact-page {
        padding: 100px 0 60px;
    }
    
    .t1-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .t1-contact-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Map Section */
/* Map Section */
.t1-map-section {
    width: 100%;
    max-width: var(--t1-container-width);
    margin: 0 auto;
    padding: 0 20px;
    /* margin-top: 0; */
    margin-bottom: 80px;
    line-height: 0; /* Remove potential bottom gap from inline-block iframe */
}

.t1-map-section iframe {
    width: 100%;
    display: block;
    filter: grayscale(0%); /* Optional: grayscale(100%) for black/white theme, keeping color per image */
    border-radius: 12px;
}
