.contact-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/section1-img2.png') center center / cover no-repeat;
    filter: blur(8px);
    /* Control blur here */
    transform: scale(1.05);
    /* Prevent edge clipping */
    z-index: -1;
}

/* Blur overlay covers the bottom half area */
.contact-blur-overlay {
    width: 100%;
    padding: 30px 30px;
    background: #F7F7EEAB;
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.contact-content {
    max-width: 1100px;
    text-align: center;
}

.contact-heading {
    font-size: 42px;
    font-family: "PP Woodland Ultralight";
    color: #434B34;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-heading span {
    color: #434B34;
    font-size: 42px;
    font-weight: 700;
    font-family: "PP Woodland";
}

.contact-subtext {
    font-size: 20px;
    color: #2f4f2f;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* contact form */
.form-section {
    background-color: #0c1a40;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.contact-full-section {
    display: flex;
    height: 90vh;
    width: 90%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    font-family: "PP Woodland Ultralight", sans-serif;
    /* Bright white glow effect */
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.6);
}

/* Left: Form */
.contact-left {
    flex: 1;
    background: #f9f9f1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.contact-left h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #434b34;
    font-weight: 700;
    font-family: "PP Woodland Ultralight";
}

.contact-left h2 span {
    font-family: "PP Woodland";
    font-weight: 700;
    color: #434b34;
}

.contact-left form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-left input,
.contact-left textarea {
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #888;
    background: transparent;
    outline: none;
    font-size: 14px;
    font-family: inherit;
}

.contact-left textarea {
    resize: none;
}

.privacy-text {
    font-size: 11px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #333;
    line-height: 1.4;
}

.privacy-text input[type="checkbox"] {
    margin-top: 4px;
}

.contact-left button {
    background: #f6b733;
    padding: 8px 25px;
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
}

/* Right: Images */
.contact-right {
    flex: 1;
    /* background: #f6b733;
    backdrop-filter: blur(8px); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* padding: 30px 20px; */
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    /* gap: 20px; */
}

.contact-right img {
    width: 100%;
    height: 36%;
    max-height: 50%;
    object-fit: cover;
    border-radius: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}