/* Contact Page Styles */

/* Map Styles */
.map-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(197, 162, 104, 0.2);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(197, 162, 104, 0.15);
    transform: translateY(-2px);
}

.map-iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 8px;
    filter: grayscale(20%) brightness(0.95);
    transition: all 0.4s ease;
}

.map-iframe:hover {
    filter: grayscale(0%) brightness(1);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    background: rgba(197, 162, 104, 0.1);
    border: 1px solid rgba(197, 162, 104, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.map-link:hover {
    background: rgba(197, 162, 104, 0.2);
    border-color: var(--gold);
    transform: translateX(5px);
    color: #fff;
}

.map-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.map-link:hover svg {
    transform: translateX(3px);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(197, 162, 104, 0.1);
}

/* Inquiry Form Container */
.inquiry-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(197, 162, 104, 0.2);
}

.inquiry-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(197, 162, 104, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(197, 162, 104, 0.1);
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(197, 162, 104, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.dropdown-selected:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.custom-dropdown.active .dropdown-selected {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(197, 162, 104, 0.1);
}

.selected-text {
    flex: 1;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.custom-dropdown.has-value .selected-text {
    color: var(--text-light);
    font-weight: 500;
}

.dropdown-arrow {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    max-height: 300px;
    overflow-y: auto;
}

.custom-dropdown.active .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2a2a2a;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-option:hover {
    background: linear-gradient(90deg, rgba(197, 162, 104, 0.15) 0%, rgba(197, 162, 104, 0.05) 100%);
    color: #1a1a1a;
    padding-left: 24px;
}

.dropdown-option:hover::before {
    transform: scaleY(1);
}

.dropdown-option.selected {
    background: linear-gradient(90deg, rgba(197, 162, 104, 0.2) 0%, rgba(197, 162, 104, 0.08) 100%);
    color: #1a1a1a;
    font-weight: 600;
}

.dropdown-option.selected::before {
    transform: scaleY(1);
}

.option-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    filter: grayscale(80%) brightness(0.7);
    transition: all 0.3s ease;
}

.dropdown-option:hover .option-icon,
.dropdown-option.selected .option-icon {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.option-text {
    flex: 1;
}

/* Custom Scrollbar for Dropdown */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: rgba(197, 162, 104, 0.1);
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #d4a574;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.form-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--gold) 0%, #d4a574 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(197, 162, 104, 0.3);
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 162, 104, 0.5);
    background: linear-gradient(135deg, #d4a574 0%, var(--gold) 100%);
}

.form-button:active {
    transform: translateY(-1px);
}

.button-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.form-button:hover .button-icon {
    transform: translateX(5px);
}

/* Success/Error Message */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
}

/* Responsive Design */

/* 1024px */
@media (max-width: 1024px) {
    .inquiry-form-container {
        padding: 35px;
    }
    
    .map-iframe {
        height: 320px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .inquiry-form-container {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .form-button {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .map-wrapper {
        padding: 15px;
    }

    .map-iframe {
        height: 280px;
    }

    .map-link {
        width: 100%;
        justify-content: center;
    }

    .hours-list {
        padding: 15px;
    }

    .dropdown-options {
        max-height: 250px;
    }

    .dropdown-option {
        padding: 12px 16px;
    }
}

/* 500px */
@media (max-width: 500px) {
    .inquiry-form-container {
        padding: 25px 20px;
        border-radius: 8px;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 13px 16px;
        font-size: 0.95rem;
    }
    
    .form-button {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
}

/* 426px */
@media (max-width: 426px) {
    .inquiry-form-container {
        padding: 22px 18px;
    }
    
    .form-label {
        font-size: 0.88rem;
        margin-bottom: 8px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 0.93rem;
    }
    
    .form-textarea {
        min-height: 130px;
    }
    
    .form-button {
        padding: 14px 28px;
        font-size: 0.92rem;
    }
    
    .map-iframe {
        height: 260px;
    }
    
    .hours-row {
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .hours-label,
    .hours-time {
        font-size: 0.88rem;
    }
}

/* 383px */
@media (max-width: 383px) {
    .inquiry-form-container {
        padding: 20px 16px;
    }
    
    .form-label {
        font-size: 0.86rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 11px 14px;
        font-size: 0.9rem;
    }
    
    .form-button {
        padding: 13px 25px;
        font-size: 0.9rem;
        letter-spacing: 0.8px;
    }
    
    .dropdown-selected {
        padding: 11px 14px;
        font-size: 0.9rem;
    }
    
    .dropdown-option {
        padding: 11px 14px;
        font-size: 0.88rem;
    }
    
    .map-iframe {
        height: 240px;
    }
    
    .map-link {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* 320px */
@media (max-width: 320px) {
    .inquiry-form-container {
        padding: 18px 14px;
        border-radius: 6px;
    }
    
    .form-row {
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .form-label {
        font-size: 0.84rem;
        margin-bottom: 7px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 0.88rem;
        border-radius: 6px;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .form-button {
        padding: 12px 22px;
        font-size: 0.87rem;
        letter-spacing: 0.6px;
    }
    
    .dropdown-selected {
        padding: 10px 12px;
        font-size: 0.88rem;
    }
    
    .dropdown-arrow {
        width: 18px;
        height: 18px;
    }
    
    .dropdown-option {
        padding: 10px 12px;
        font-size: 0.86rem;
    }
    
    .map-wrapper {
        padding: 12px;
    }
    
    .map-iframe {
        height: 220px;
        border-radius: 6px;
    }
    
    .map-link {
        padding: 9px 18px;
        font-size: 0.82rem;
    }
    
    .map-link svg {
        width: 16px;
        height: 16px;
    }
    
    .hours-list {
        padding: 12px;
        gap: 12px;
    }
    
    .hours-row {
        padding: 9px 0;
    }
    
    .hours-label,
    .hours-time {
        font-size: 0.84rem;
    }
}

/* Footer Contact Icons - Minimal */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item:hover {
    color: var(--gold);
}

.footer-icon {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-contact-item:hover .footer-icon {
    opacity: 1;
}

.footer-contact-item div {
    font-size: 0.85rem;
    line-height: 1.6;
}
