.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between icon and text */
}

.contact-details .fas {
    font-size: 1.5rem; /* Icon size */
    color: var(--accent-color);
}

/* Contact Page Specific Styles */
.contact-page-section {
    min-height: calc(100vh - var(--header-height)); /* Ensure it takes up most of the viewport height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 8%;
    background-image: url('background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-content {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.contact-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-content p:last-of-type {
    margin-bottom: 0;
}

/* Animated Hero for Contact Page */
.animated-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem; /* Space between lines and text */
    margin-bottom: 3rem;
}

.animated-hero .line {
    width: 1.5px;
    background-color: #b99756;
    height: 70px;
    opacity: 0;
    filter: blur(5px);
    animation: dream-reveal 1.8s ease-in-out forwards;
    box-shadow: 0 0 8px 0px #b99756;
}

.animated-hero .reveal-text {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    text-transform: none;
    opacity: 0;
    filter: blur(5px);
    animation: dream-reveal 1.8s ease-in-out forwards;
    animation-delay: 0.5s;
}

.animated-hero .bottom-line {
    animation-delay: 1s;
}

@keyframes dream-reveal {
    to {
        opacity: 1;
        filter: blur(0);
    }
}