﻿.contact-section {
    padding-top: 120px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f4f4f4;
    min-height: 80vh;
    text-align: center;
}

.contact-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase;
    color: #333;
}

.intro-text {
    color: #777;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    text-align: left;
}

.contact-info, .contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 300px;
}

.contact-info h3, .contact-form h3 {
    margin-top: 0;
    color: #cda45e;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.contact-info p, .info-item {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.fake-address-note {
    font-size: 11px;
    color: #999;
    font-style: italic;
    margin-top: 2px;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #555;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #cda45e;
    background-color: #fff;
}

.btn-send {
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
}
.btn-send:hover {
    background-color: #cda45e;
    color: #000;
}
