/* ----------- GLOBAL ----------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #fffaf3;
    color: #333;
}

/* ----------- NAVBAR ----------- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #8B4513;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #b05a1c;
}

.button {
    padding: 8px 18px;
    background-color: #8B4513;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.button:hover {
    background-color: #a34e11;
    transform: translateY(-2px);
}

/* ----------- CONTACT SECTION ----------- */
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 70px 8%;
    flex-wrap: wrap;
}

/* ----------- LEFT INFO ----------- */
.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h1 {
    font-size: 36px;
    color: #8B4513;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-box {
    background: white;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box h3 {
    margin-bottom: 8px;
    color: #ae5510;
}

/* ----------- FORM SECTION ----------- */
.contact-form {
    flex: 1;
    min-width: 320px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #8B4513;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8B4513;
    outline: none;
    box-shadow: 0 0 5px rgba(214,40,40,0.3);
}
.map {
     width: 100%;
    max-width: 500px;   /* controls map width */
    margin: 20px auto;

}

.map iframe {
    
    width: 100%;
    height: 250px;      /* reduce height */
    border: 0;
    border-radius: 10px;
}

/* ----------- SUBMIT BUTTON ----------- */
.btn-submit {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #8B4513;
    color: white;
    font-size: 15px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background-color: #a85113;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ----------- MAP ----------- */
.map-container iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 40px 5%;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}