.map-container {
    height: 300px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #333;
    margin-top: 15px;
}

.map-container iframe,
.map-container div {
    width: 100%;
    height: 100%;
}

.contact-location {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-location h3 {
    color: #333;
    margin-bottom: 15px;
}

.contact-location p {
    margin-bottom: 10px;
    color: #666;
}


/* 첫 번째 섹션: 한국 주소 - 데스크톱에서 좌우 배치 */
.korea-section {
    margin-bottom: 40px;
}

.korea-section .address-content {
    /* padding: 20px; */
    /* background: var(--bs-gray-100); */
    /* border-radius: 8px; */
    margin-bottom: 20px;
    color: var(--bs-gray-600);
}

.korea-section .address-content h5, .korea-section .address-content address, .korea-section .address-content .bus-stop {
    color: #000;
}

@media (min-width: 768px) {
    .korea-section .address-content {
        margin-bottom: 0;
    }
    
    .korea-section .map-container {
        margin-top: 0;
    }
}

/* 두 번째 섹션: 해외 지사 - 데스크톱에서 2컬럼 */
.overseas-section {
    margin-top: 80px;
}

.overseas-office {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.overseas-office .office-info {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--bs-gray-600);
}

.overseas-office address {
    margin-bottom: 0;
}

.overseas-office .map-container {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .overseas-office {
        margin-bottom: 20px;
    }
}


.form-group {
    margin-bottom: 1rem;
}

/* Request Quotation Page Additional Styles */

/* Airport pickup fields visibility toggle */
.airport-pickup-fields {
    display: none;
}

.airport-pickup-fields.show {
    display: block;
}

/* Additional form styling for request-quotation specific elements */
.form-group .text-muted {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Form check styling enhancement */
.form-check-input:checked {
    background-color: var(--bs-red, #dc3545);
    border-color: var(--bs-red, #dc3545);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Loading State - inquiry-form과 일관성 유지 */
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-loading .spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Legacy loading state (혹시 다른 곳에서 사용할 경우) */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* intl-tel-input Styles */
.iti {
    width: 100%;
}

.iti__tel-input {
    width: 100% !important;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

.iti__tel-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.iti__tel-input.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
}

.iti__tel-input.is-invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.iti__country-list {
    z-index: 1060; /* Bootstrap modal보다 높게 설정 */
}

/* 국가 선택 버튼 높이 문제 해결 */
.iti__selected-country {
    height: calc(1.5em + 0.75rem + 2px) !important; /* Bootstrap form-control 높이와 일치 */
    display: flex !important;
    align-items: center !important;
    padding: 0.375rem 0.75rem !important;
    min-height: calc(1.5em + 0.75rem + 2px) !important;
    max-height: calc(1.5em + 0.75rem + 2px) !important;
}

.iti__selected-country .iti__arrow {
    margin-left: 6px;
    margin-top: 0 !important;
}

/* 국가 선택 버튼이 활성화되었을 때도 높이 유지 */
.iti__selected-country:hover,
.iti__selected-country:focus,
.iti__selected-country:active {
    height: calc(1.5em + 0.75rem + 2px) !important;
    min-height: calc(1.5em + 0.75rem + 2px) !important;
    max-height: calc(1.5em + 0.75rem + 2px) !important;
}



.privacy-policy {
    background-color: var(--bs-gray-100);
    padding: 0.5rem;
    border-radius: 0.375rem;;
}