
body {
    font-family: 'Mulish', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    overflow-x: hidden;
}

main {
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: 700;
    color: #2c3e50; 
}

p {
    color: #555;
    font-weight: 400;
}

.section-tag {
    display: inline-block;
    font-size: 0.85em;
    font-weight: 700;
    color: #007bff; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    background-color: rgba(0, 123, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    max-width: 175px;
}


.contact-hero-sleek {
    position: relative;
    height: 290px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 50, 100, 0.8)), url('assets/contact-hero-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed; 
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 60px;
}

.contact-hero-sleek::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    margin-top: 0;
}

.hero-content p {
    font-size: 1.2em;
    font-weight: 300;
    opacity: 0.9;
    color: #eee;
    margin-bottom: 0;
}


.contact-content-sleek {
    display: flex;
    flex-direction: column; 
    max-width: 1100px;
    margin: 0 auto 80px auto; 
    padding: 0 20px; 
    gap: 60px; 
}


.contact-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1; 
}

.contact-form-container h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-container .section-tag {
    text-align: center;
    display: block; 
    margin: 0 auto 15px auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 1em;
    color: #444;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    background-color: #fcfcfc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; 
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

.contact-form textarea {
    resize: vertical; 
    min-height: 120px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px 25px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.submit-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
}


.business-info-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center; 
}

.business-info-container h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
}

.business-info-container .section-tag {
    display: block; 
    margin: 0 auto 15px auto;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px; 
    max-width: 350px; 
    width: 100%; 
    text-align: left; 
}

.info-item i {
    font-size: 1.8em;
    color: #007bff;
    flex-shrink: 0; 
    width: 30px; 
    text-align: center;
}

.info-item h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #2c3e50;
}

.info-item p {
    font-size: 1em;
    color: #666;
    margin: 0;
}

.info-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    margin-top: 45px;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


@media (min-width: 900px) { 
    .contact-content-sleek {
        flex-direction: row; 
        align-items: flex-start; 
    }

    .contact-form-container h2,
    .business-info-container h2 {
        text-align: left; 
    }

    .contact-form-container .section-tag,
    .business-info-container .section-tag {
        text-align: left;
        margin-left: 0; 
    }

    .business-info-container {
        align-items: flex-start; 
        text-align: left; 
    }
}

@media (max-width: 600px) {
    .contact-hero-sleek {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .contact-form-container,
    .business-info-container {
        padding: 25px;
        margin: 0 10px; 
    }

    .contact-form-container h2,
    .business-info-container h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .info-item i {
        margin-bottom: 10px;
    }
}