/* === Contact Container === */
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
    overflow-x: hidden; /* Secondary prevention for mobile */
}

.fade-element {
    opacity: 0;
    transform: translateY(20px);
}

/* === FAQ Section (Now Top) === */
.faq-section {
    margin-bottom: 60px;
    padding-bottom: 50px;
    /*border-bottom: 1px solid rgba(248, 245, 238, 0.1);*/
}

.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(248, 245, 238, 0.2);
}

.accordion-button {
    background-color: transparent !important;
    color: var(--text-light);
    /*  font-family: 'Playfair Display', serif;*/
    font-size: var(--font-size-title);
    padding: 20px 0;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        color: #f8f5ee;
        background-color: transparent;
    }

    /* White accordion arrow */
    .accordion-button::after {
        filter: invert(1) grayscale(100%) brightness(200%);
        margin-left: 5px;
    }

.accordion-body {
    color: rgba(248, 245, 238, 0.7);
    /* font-family: 'Lato', sans-serif;*/
    padding: 0 0 25px 0;
    line-height: 1.7;
    font-size: var(--font-size-1);
}

/* Left Column (Info) */
.info-block {
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #f8f5ee;
}

.info-text {
    font-family: 'Lato', sans-serif;
    color: rgba(248, 245, 238, 0.7);
    font-size: var(--font-size-1);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Address Link Styles */
.address-link {
    color: rgba(248, 245, 238, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
    text-decoration:underline;
}

    .address-link:hover {
        color: #f8f5ee;
        border-bottom: 1px solid rgba(248, 245, 238, 0.4);
    }

.social-links {
    margin-top: 15px;
}

    .social-links a {
        color: #f8f5ee;
        font-size: 1.4rem;
        margin-right: 15px;
        transition: color 0.3s ease;
    }

        .social-links a:hover {
            color: rgba(248, 245, 238, 0.5);
        }

/* Right Column (Form) */
.contact-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(248, 245, 238, 0.3);
    border-radius: 0;
    color: #f8f5ee;
    padding: 15px 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

    .contact-form .form-control:focus {
        box-shadow: none;
        border-color: #f8f5ee;
    }

    .contact-form .form-control::placeholder {
        color: rgba(248, 245, 238, 0.5);
    }

.btn-submit {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(248, 245, 238, 0.6);
    color: #f8f5ee;
    padding: 12px 35px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    margin-top: 10px;
}

    .btn-submit:hover {
        background-color: rgba(248, 245, 238, 0.15);
        border-color: #f8f5ee;
        color: #ffffff;
    }

.form-warning {
   /* font-family: 'Lato', sans-serif;*/
    font-size: var(--font-size-1);
    color: #e5b25d; /* Elegant gold/warning color */
    margin-bottom: 25px;
}
