/* ================================================
   CONTACT US PAGE - HERO SECTION
   ================================================ */

#contact-hero {
    height: 100vh; /* Make it full screen */
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    overflow: hidden;
    /* Remove the top margin caused by the fixed header */
    margin-top: calc(-1 * var(--header-height));
}

#contact-hero .hero-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

#contact-hero .hero-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#contact-hero .hero-image-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

#contact-hero .container {
    position: relative;
    z-index: 2;
}

#contact-hero .hero-content {
    text-align: left;
}

#contact-hero .hero-content h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 400;
    color: var(--cream-color);
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

#contact-hero .contact-button {
    background-color: transparent;
    border: 2px solid var(--cream-color);
    color: var(--cream-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

#contact-hero .contact-button:hover {
    background-color: var(--cream-color);
    color: var(--primary-color);
}

/* ================================================
   CONTACT US PAGE - FORM SECTION 
   ================================================ */

#contact-form-section {
    padding: 6rem 0;
    background-color: var(--secondary-color); /* Light cream background */
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header .section-top-line {
    border: none;
    height: 2px;
    background-color: var(--primary-color);
    width: 250px; /* --- FIX 3: EXPANDED THE LINE --- */
    margin: 0 auto 2rem auto;
}

.contact-header h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--primary-color);
    max-width: 400px;
    margin: 0 auto 2rem auto;
}

/* --- FIX 2: REMOVED UNDERLINE FROM SOCIAL ICONS --- */
.contact-header .social-icons a {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none; 
}

.contact-header .social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    text-align: left;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white-color);
    color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}
.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}
.checkbox-group label {
    margin-bottom: 0;
}

.send-button {
    width: 100%; /* This makes it match the width of the message box */
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-button:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}


/* --- Responsive Styles --- */
@media (max-width: 600px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
}


/* ================================================
   SCROLL ANIMATION STYLES
   ================================================ */

.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-item.visible {
    opacity: 1;
    transform: translateY(0);
}