/* =====================================================
   CONTACT PAGE STYLES
   File: assets/css/contact.css
===================================================== */

/* =============================
   GLOBAL
============================= */
* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================
   HERO
============================= */
.contact-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: url("../img/13.jpeg") center center / cover no-repeat;
    text-align: center;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 61, 46, 0.88),
        rgba(17, 24, 39, 0.72)
    );
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    color: #ffffff;
}

.contact-hero h1 {
    margin: 0 0 16px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.contact-hero p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d1fae5;
}

/* =============================
   INTRO
============================= */
.contact-intro {
    padding: 60px 0 30px;
    text-align: center;
}

.contact-intro p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.85;
    color: #4b5563;
}

/* =============================
   CONTACT SECTION
============================= */
.contact-section {
    padding: 40px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: start;
}

/* =============================
   CONTACT INFO
============================= */
.contact-info {
    padding-right: 10px;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: #ecfdf5;
    color: #0b3d2e;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-info h2 {
    margin: 0 0 18px;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.contact-info > p {
    margin: 0 0 32px;
    font-size: 1rem;
    line-height: 1.85;
    color: #4b5563;
}

.contact-details {
    display: grid;
    gap: 20px;
}

.contact-item {
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: #0b3d2e;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.contact-item h4 {
    margin: 0 0 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.contact-item p,
.contact-item a {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    text-decoration: none;
}

.contact-item a:hover {
    color: #0b3d2e;
}

/* =============================
   FORM
============================= */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.contact-form h3 {
    margin: 0 0 24px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font: inherit;
    color: #111827;
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0b3d2e;
    box-shadow: 0 0 0 3px rgba(11, 61, 46, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    background: #0b3d2e;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.submit-btn:hover {
    background: #145c46;
    transform: translateY(-1px);
}

/* =============================
   CTA
============================= */
.contact-cta {
    padding: 80px 20px;
    background: #111827;
    text-align: center;
}

.contact-cta h2 {
    max-width: 850px;
    margin: 0 auto 14px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.contact-cta p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding: 110px 20px 70px;
    }

    .contact-hero h1 {
        font-size: 2.25rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }

    .contact-cta {
        padding: 70px 20px;
    }

    .contact-cta h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .contact-intro {
        padding: 50px 0 20px;
    }

    .contact-section {
        padding: 30px 0 60px;
    }

    .contact-hero h1 {
        font-size: 1.9rem;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }

    .contact-form h3 {
        font-size: 1.25rem;
    }

    .contact-item,
    .contact-form-wrapper {
        padding: 22px 20px;
    }
}