:root {
    --primary: #0b6b6b;
    --light-bg: #f7f7f7;
}

/* HEADER */
.blog-header {
    background: var(--primary);
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 0;
    background: #fff;
}

/* LEFT INFO */
.info-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    background: var(--primary);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-item h6 {
    margin-bottom: 3px;
    font-weight: 600;
    font-size: 15px;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* FORM CARD */
.form-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-card h4 {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 25px;
}

.form-control,
.form-select,
textarea {
    background: var(--light-bg);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
}

.form-control::placeholder,
textarea::placeholder {
    color: #999;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: none;
}

/* SUBMIT BUTTON */
.submit-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    margin-top: 15px;
}

.submit-btn:hover {
    background: #095c5c;
}

/* Wrapper */
.select-wrapper {
    position: relative;
}

/* Remove default arrow */
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
}

/* Custom arrow */
.select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #777;
    pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .form-card {
        margin-top: 30px;
    }
}
