/* RESET */

/* HERO SECTION */
.contact-hero {
    height: 60vh;
    background: url("../assets/images/contact-bg.png") no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DARK OVERLAY */
.hero-overlay {
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* HERO TEXT */
.hero-overlay h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 18px;
    max-width: 700px;
    line-height: 1.6;
}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 20px;
    background: #f5f7fa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TITLE */
.contact-section h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #1e2a38;
}

/* FORM */
#contactForm {
    width: 100%;
    max-width: 600px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* INPUTS */
#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

/* FOCUS EFFECT */
#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #2c5364;
    box-shadow: 0 0 6px rgba(44, 83, 100, 0.3);
}

/* TEXTAREA */
#contactForm textarea {
    height: 140px;
    resize: none;
}

/* BUTTON */
#contactForm button {
    width: 100%;
    padding: 14px;
    border: none;
    background: #2c5364;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

/* BUTTON HOVER */
#contactForm button:hover {
    background: #1b2f3a;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 35px;
    }

    .hero-overlay p {
        font-size: 15px;
    }

    #contactForm {
        padding: 25px;
    }
}