/* 연락처 및 위치 정보 섹션 */
.contact-info {
    padding: 80px 0;
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item i {
    font-size: 2.5em;
    color: #5C6E38;
    margin-bottom: 20px;
}

.info-item h3 {
    color: #5C6E38;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* 지도 섹션 */
.map-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.directions {
    max-width: 800px;
    margin: 0 auto;
}

.directions h2 {
    color: #5C6E38;
    text-align: center;
    margin-bottom: 30px;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.transport-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.transport-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.transport-item i {
    font-size: 2em;
    color: #5C6E38;
    margin-bottom: 15px;
}

.transport-item h3 {
    color: #5C6E38;
    margin-bottom: 10px;
}

.transport-item p {
    color: #666;
    line-height: 1.6;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .transport-info {
        grid-template-columns: 1fr;
    }

    .map-container {
        margin: 0 -20px 40px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .map-section {
        padding: 40px 0;
    }

    .info-item,
    .transport-item {
        padding: 20px;
    }
}

/* 문의하기 폼 */
.contact-form {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-form h2 {
    color: #5C6E38;
    margin-bottom: 30px;
    text-align: center;
}

#inquiryForm {
    max-width: 600px;
    margin: 0 auto;
}

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

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #5C6E38;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #4B5B2E;
}

/* 카카오맵 커스텀 오버레이 스타일 */
.customoverlay {
    position: relative;
    bottom: 85px;
    border-radius: 6px;
    border: 1px solid #ccc;
    border-bottom: 2px solid #ddd;
    float: left;
}

.customoverlay:nth-of-type(n) {
    border: 0;
    box-shadow: 0px 1px 2px #888;
}

.customoverlay a {
    display: block;
    text-decoration: none;
    color: #000;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    background: #5C6E38;
    background: #5C6E38 url(https://t1.daumcdn.net/localimg/localimages/07/mapapidoc/arrow_white.png) no-repeat right 14px center;
}

.customoverlay .title {
    display: block;
    text-align: center;
    background: #fff;
    margin-right: 35px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
} 