/* ==========================================
   CONTACT HERO
========================================== */

.contact-hero {
    position: relative;
    min-height: 70vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url("../assets/contact-hero.webp") center / cover no-repeat;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 700px;
    color: #fff;
}

.contact-hero h1 {
    margin: 20px 0;
    font-size: 4rem;
}

.contact-hero h1 span {
    color: var(--secondary);
}

.contact-hero p {
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.breadcrumb a {
    color: #20c997;
}

.breadcrumb span {
    color: #fff;
}

/* ==========================================
   CONTACT INFO
========================================== */

.contact-info {
    padding: 100px 0;
    background: #fff;
    font-weight: 700;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.contact-card {
    display: block;
    padding: 40px 30px;
    border-top: 4px solid var(--secondary);
    border-radius: 24px;
    background: #fff;
    color: inherit;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-top-color 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-12px);
    border-top-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(32, 201, 151, 0.12);
    color: var(--secondary);
    font-size: 30px;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--secondary);
    color: #fff;
    transform: rotate(8deg) scale(1.08);
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 22px;
}

.contact-card p {
    color: var(--text);
    line-height: 1.8;
}

/* ==========================================
   CONTACT FORM
========================================== */

.contact-section {
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url("../assets/contact_us.webp") center / cover no-repeat;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-box {
    padding: 50px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
    margin: 15px 0;
    font-size: 42px;
}

.contact-form-box p {
    margin-bottom: 35px;
    color: var(--text);
    line-height: 1.8;
}

.contact-form .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 160px;
    height: 50px;
    padding: 0 26px;

    border: 1px solid #168c61;
    border-radius: 30px;

    background: #168c61;
    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #0f704d;
    border-color: #0f704d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 140, 97, 0.2);
}
.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 22px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font: inherit;
    font-size: 16px;
    accent-color: var(--secondary);
    box-sizing: border-box;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(32, 201, 151, 0.15);
}

.contact-form textarea {
    resize: none;
    margin-bottom: 30px;
}

.contact-form select {
    appearance: none;
    cursor: pointer;
    background:
        #fff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
        right 18px center / 16px no-repeat;
}

.contact-form option {
    background: #fff;
    color: var(--dark);
}

/* Contact details */

.contact-details-box {
    position: sticky;
    top: 120px;
    padding: 50px 40px;
    border-radius: 30px;
    background: #0f172a;
    color: #fff;
}

.contact-details-box h2 {
    margin: 15px 0;
    font-size: 34px;
}

.contact-details-box > p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.detail-item {
    margin-bottom: 30px;
    color: #fff;
}

.detail-item h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #fff;
}

.detail-item h4 i {
    width: 22px;
    color: #fff;
    font-size: 18px;
}

.detail-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.detail-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: #20c997;
}

/* ==========================================
   GOOGLE MAP
========================================== */

.map-section {
    padding: 120px 0;
    background: #fff;
}

.map-wrapper {
    margin-top: 60px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}