.mcs-section {
    --mcs-primary: #1a237e;
    --mcs-btn-bg: #1a237e;
    --mcs-btn-text: #ffffff;
    --mcs-icon-color: #1a237e;
    --mcs-icon-hover: #303f9f;
}

/* Grid: form | info | map – one row */
.mcs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 20px;
    min-height: 480px;
}

/* Form – left column */
.mcs-form-wrap {
    padding: 32px 28px;
    background: #f5f5f5;
    border-radius: 6px;
}

/* Company Info – middle column */
.mcs-info-wrap {
    padding: 32px 28px;
    background: #f5f5f5;
    border-radius: 6px;
}

/* Form */
.mcs-form-title,
.mcs-info-title {
    color: var(--mcs-primary);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 24px;
}

.mcs-label {
    display: block;
    color: var(--mcs-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.mcs-input,
.mcs-textarea {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.mcs-input.mcs-input-error,
.mcs-textarea.mcs-input-error {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.mcs-input:focus,
.mcs-textarea:focus {
    outline: none;
    border-color: var(--mcs-primary);
}

.mcs-textarea {
    resize: vertical;
    min-height: 80px;
}

.mcs-submit {
    display: inline-block;
    background: var(--mcs-btn-bg);
    color: var(--mcs-btn-text);
    border: none;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 4px;
}

.mcs-submit:hover {
    opacity: 0.88;
}

.mcs-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.mcs-form-status {
    margin-top: 12px;
    font-size: 14px;
}

.mcs-form-status.mcs-success {
    color: #2e7d32;
}

.mcs-form-status.mcs-error {
    color: #c62828;
}

/* Company Info */
.mcs-logo {
    margin-bottom: 20px;
}

.mcs-logo img {
    max-width: 180px;
    height: auto;
}

.mcs-info-list {
    margin-bottom: 24px;
}

.mcs-info-row {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.mcs-info-row strong {
    color: var(--mcs-primary);
    display: block;
    font-size: 14px;
}

.mcs-info-row a {
    color: var(--mcs-primary);
    text-decoration: none;
}

.mcs-info-row a:hover {
    text-decoration: underline;
}

/* Social Icons */
.mcs-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.mcs-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--mcs-icon-color);
    border: 2px solid var(--mcs-icon-color);
    transition: all 0.25s;
    text-decoration: none;
}

.mcs-social-icon svg {
    width: 22px;
    height: 22px;
}

.mcs-social-icon:hover {
    color: #fff;
    background: var(--mcs-icon-hover);
    border-color: var(--mcs-icon-hover);
}

.mcs-social-icon.mcs-social-whatsapp {
    color: #25D366;
    border-color: #25D366;
}

.mcs-social-icon.mcs-social-whatsapp:hover {
    color: #fff;
    background: #25D366;
    border-color: #25D366;
}

/* Map – right column, fill full height */
.mcs-map {
    width: 100%;
    height: 100%;
    min-height: 480px;
    line-height: 0;
    border-radius: 6px;
    overflow: hidden;
}

.mcs-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive – tablet */
@media (max-width: 1024px) {
    .mcs-grid {
        grid-template-columns: 260px 1fr;
        grid-template-rows: auto auto;
    }

    .mcs-map {
        grid-column: 1 / -1;
        min-height: 300px;
    }
}

/* Responsive – mobile */
@media (max-width: 768px) {
    .mcs-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mcs-form-wrap,
    .mcs-info-wrap {
        padding: 24px;
    }

    .mcs-map {
        grid-column: auto;
        min-height: 280px;
    }
}
