/* Contact Page Specific Styles */

/* Contact Hero */
.contact-hero {
    margin-top: 80px;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.contact-hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

/* Contact Content Section */
.contact-content-section {
    background: #f4e4c1;
    padding: 60px 0 80px;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.breadcrumb a {
    color: #2c3e50;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #4a8c5e;
}

.breadcrumb span {
    color: #2c3e50;
}

.contact-content-section h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 40px;
}

/* Contact Info Column */
.contact-info-column {
    color: #2c3e50;
}

.address-block {
    margin-bottom: 25px;
}

.address-block p {
    margin: 5px 0;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-details p {
    margin: 8px 0;
    line-height: 1.6;
}

.contact-details a {
    color: #2c3e50;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #4a8c5e;
}

.additional-info {
    margin-bottom: 25px;
}

.additional-info p {
    margin: 12px 0;
    line-height: 1.6;
}

.additional-info a {
    color: #2c3e50;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.additional-info a:hover {
    color: #4a8c5e;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4a8c5e;
}

/* Contact Form Column */
.contact-form-column {
    background: transparent;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group .sub-label {
    font-size: 13px;
    font-weight: 400;
    color: #5a6c7d;
    margin-top: 3px;
    margin-bottom: 5px;
}

.form-group .hidden-label {
    visibility: hidden;
    height: 0;
    margin: 0;
}

.required {
    font-weight: 400;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #c0b8a3;
    background: white;
    color: #2c3e50;
    font-size: 15px;
    font-family: inherit;
    border-radius: 3px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a8c5e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #3d5266;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
    background: #e5e5e5;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-hero {
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    .contact-hero img {
        max-height: 300px;
    }

    .contact-content-section h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-section {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-content-section {
        padding: 40px 0 60px;
    }

    .contact-content-section h1 {
        font-size: 1.8rem;
    }

    .contact-hero img {
        max-height: 250px;
    }

    .map-section {
        height: 300px;
    }
}


