/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-heading {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.info-text {
    color: #666;
}

.info-text a {
    color: #C19852;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: #C19852;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    border-radius: 8px;
}

.map-placeholder p {
    color: #999;
    font-size: 1.1rem;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 500;
    color: #C19852;
    background-color: #fff;
    border: none;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s;
    justify-content: space-between;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #C19852;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C19852'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C19852'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
}

.accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.7;
    background-color: #fff;
}


/* Responsive */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-title,
    .faq-title {
        font-size: 2rem;
    }
    
    .map-container {
        height: 350px;
    }
}
