.contact-top-info {
    padding: 40px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    background: #3a3a3c;
    padding: 35px;
    border-radius: 20px;
}

.info-box {
    color: #fff;
}

.info-box i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 700;
}



.contact-form-section {
    padding: 60px 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-form-box {
    background: #f2f9f0;
    padding: 40px;
    border-radius: 20px;
}

.contact-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-title span {
    color: #1cab3e;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

input, textarea, select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 16px;
    outline: none;
}

.multi-select-wrapper {
    margin-bottom: 20px;
}

.multi-select-wrapper label {
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.multi-select {
    height: 120px;
}

.select-note {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    color: #777;
}

textarea {
    margin-bottom: 20px;
}

.send-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.send-message-btn {
    background: #3a3a3c;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.send-icon {
    width: 45px;
    height: 45px;
    background: #073b4c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}



.contact-img-box {
    width: 100%;
    height: 650px; 
    border-radius: 20px;
    position: relative;
}

.contact-img-box iframe {
    width: 100%;
    height: 100%;
   
     border-radius: 20px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 28px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }
}



/* ===== SERVICE SELECT (CUSTOM) ===== */
/* ===== SERVICE SELECT ===== */

.service-select-wrapper {
    position: relative;
    margin-bottom: 22px;
}

.service-label {
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.service-select {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.service-select i {
    margin-left: auto;
    transition: transform 0.3s;
}

.service-select.active i {
    transform: rotate(180deg);
}

.service-placeholder {
    color: #888;
}

.service-tags span {
    background: #1cab3e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
}

/* ===== DROPDOWN ===== */

.service-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    padding: 14px;
    display: none;
    z-index: 999;
}

/* ===== OPTIONS ===== */

.service-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.25s;
}

.service-option:hover {
    background: #f2f9f0;
}

.service-option input {
    display: none;
}

/* Custom checkbox */
.checkmark {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-option input:checked + .checkmark {
    background: #1cab3e;
    border-color: #1cab3e;
}

.service-option input:checked + .checkmark::after {
    content: "✓";
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.service-option .text {
    font-size: 16px;
    line-height: 1.4;
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .service-option {
        padding: 12px;
    }

    .service-option .text {
        font-size: 15px;
    }
}
