﻿
/*body {
    font-family: 'Sarabun', sans-serif;
    background-color: #f8f9fa;
}*/
.quote-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.quote-form {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
.quote-image {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.submit-btn {
    background-color: #f708ad;
    border-color: #f708ad;
    color: #fadef7;
    padding: 0.75rem;
    font-weight: 500;
}
.submit-btn:hover {
    background-color: #fadef7;
    border-color: #fadef7;
    color: #f708ad;
}
.submit-btn:active, 
.submit-btn:focus,
.submit-btn.active {
    background-color: #fadef7 !important;
    border-color: #fadef7 !important;
    color: #f708ad !important;
    box-shadow: 0 0 0 0.25rem rgba(247, 8, 173, 0.25) !important;
}
h1 {
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.form-label {
    font-weight: 500;
}
.required::after {
    content: " *";
    color: red;
}
@media (max-width: 768px) {
    .quote-image {
        margin-top: 2rem;
        height: 300px;
    }
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-panel {
    background-color: white;
    padding: 20px;
    /*box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
    /*border-radius: 10px;*/
    /*margin-top: -50px;*/
    position: relative;
    z-index: 10;
}
.company-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.icon-container {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}
.line-icon {
    background-color: #06C755;
}
.fb-icon {
    background-color: #1877F2;
}
