﻿
/* Hero Section */
.page-hero {
    background: url(/lib/images/contact-hero.jpg) top / cover no-repeat;
    
    color: black;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
    max-width: 600px;
    margin: auto;
}

/* Contact Page Section */
.contact-page {
    padding: 60px 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* Contact Form */
.contact-form {
    flex: 1 1 500px;
}

    .contact-form h2 {
        margin-bottom: 20px;
    }

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

button[type="submit"] {
    background-color: #ff5a5f;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e0484f;
}

/* Contact Info */
.contact-info {
    flex: 1 1 300px;
}

    .contact-info h2 {
        margin-bottom: 20px;
    }

    .contact-info p {
        margin: 10px 0;
    }

    .contact-info a {
        
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

.contact-map {
    width: 100%;
}

/* Responsive layout */
@media (max-width: 768px) {
    .contact-main {
        flex-direction: column;
    }

    .row-addresses .icon-box,
    .row-contact .icon-box {
        flex: 1 1 100%;
    }

    .contact-map {
        width: 100%;
    }
}
